Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Odoo CE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Comunitats Energètiques
Odoo CE
Commits
f6fdea08
Commit
f6fdea08
authored
1 year ago
by
emanuel buzey
Browse files
Options
Downloads
Plain Diff
Merge branch 'feature/add-constrain-to-spa' into 'dev'
Feature/add constrain to spa See merge request
!181
parents
a6525491
7bab1a0c
Branches
dev
Branches containing commit
No related tags found
2 merge requests
!195
[REL] 14.0.2.0.0
,
!181
Feature/add constrain to spa
Pipeline
#43723
passed
1 year ago
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
energy_selfconsumption/models/supply_point_assignation.py
+11
-2
11 additions, 2 deletions
energy_selfconsumption/models/supply_point_assignation.py
with
11 additions
and
2 deletions
energy_selfconsumption/models/supply_point_assignation.py
+
11
−
2
View file @
f6fdea08
from
odoo
import
fields
,
models
,
api
from
odoo
import
fields
,
models
,
api
,
_
from
odoo.exceptions
import
ValidationError
...
...
@@ -41,16 +41,25 @@ class SupplyPointAssignation(models.Model):
related
=
"
distribution_table_id.coefficient_is_valid
"
)
supply_point_filtered_ids
=
fields
.
One2many
(
'
energy_selfconsumption.supply_point
'
,
compute
=
_compute_supply_point_filtered_ids
,
readonly
=
True
)
company_id
=
fields
.
Many2one
(
"
res.company
"
,
default
=
lambda
self
:
self
.
env
.
company
,
readonly
=
True
)
@api.constrains
(
'
coefficient
'
)
def
constraint_coefficient
(
self
):
for
record
in
self
:
if
record
.
coefficient
<
0
:
raise
ValidationError
(
"
Coefficient can
'
t be negative.
"
)
raise
ValidationError
(
_
(
"
Coefficient can
'
t be negative.
"
))
@api.constrains
(
"
supply_point_id
"
)
def
constraint_supply_point_id
(
self
):
for
record
in
self
:
supply_points
=
record
.
distribution_table_id
.
selfconsumption_project_id
.
inscription_ids
.
mapped
(
'
partner_id.supply_ids
'
)
if
record
.
supply_point_id
.
id
not
in
supply_points
.
ids
:
raise
ValidationError
(
_
(
"
The partner of the supply point is not subscribed to the project
"
))
@api.onchange
(
'
coefficient
'
)
def
_onchange_coefficient
(
self
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment