mirror of
https://gitlab.com/flectra-community/mis-builder.git
synced 2024-11-16 11:12:07 +00:00
17 lines
485 B
Python
17 lines
485 B
Python
|
# Copyright 2017-2020 ACSONE SA/NV
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class MisBudgetByAccount(models.Model):
|
||
|
|
||
|
_name = "mis.budget.by.account"
|
||
|
_description = "MIS Budget by Account"
|
||
|
_inherit = ["mis.budget.abstract", "mail.thread"]
|
||
|
|
||
|
item_ids = fields.One2many(
|
||
|
comodel_name="mis.budget.by.account.item", inverse_name="budget_id", copy=True
|
||
|
)
|
||
|
company_id = fields.Many2one(required=True)
|