mirror of
https://gitlab.com/flectra-community/mis-builder.git
synced 2024-11-16 19:22:04 +00:00
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
# Copyright 2017 ACSONE SA/NV
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import api, fields, models
|
|
|
|
|
|
class MisBudgetItem(models.Model):
|
|
_inherit = ["mis.budget.item.abstract", "mis.kpi.data"]
|
|
_name = "mis.budget.item"
|
|
_description = "MIS Budget Item (by KPI)"
|
|
_order = "budget_id, date_from, seq1, seq2"
|
|
|
|
budget_id = fields.Many2one(comodel_name="mis.budget")
|
|
report_id = fields.Many2one(related="budget_id.report_id", readonly=True)
|
|
kpi_expression_id = fields.Many2one(
|
|
domain=(
|
|
"[('kpi_id.report_id', '=', report_id),"
|
|
" ('kpi_id.budgetable', '=', True)]"
|
|
)
|
|
)
|
|
|
|
def _prepare_overlap_domain(self):
|
|
"""Prepare a domain to check for overlapping budget items."""
|
|
domain = super()._prepare_overlap_domain()
|
|
domain.extend([("kpi_expression_id", "=", self.kpi_expression_id.id)])
|
|
return domain
|
|
|
|
@api.constrains(
|
|
"date_range_id",
|
|
"date_from",
|
|
"date_to",
|
|
"budget_id",
|
|
"kpi_expression_id",
|
|
)
|
|
def _check_dates(self):
|
|
super()._check_dates()
|
|
return
|