mirror of
https://gitlab.com/flectra-community/account-closing.git
synced 2024-11-22 13:42:06 +00:00
14 lines
435 B
Python
14 lines
435 B
Python
# Copyright 2019-2022 Akretion France (http://www.akretion.com/)
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from flectra import fields, models
|
|
|
|
|
|
class AccountCutoffLine(models.Model):
|
|
_inherit = "account.cutoff.line"
|
|
|
|
subscription_id = fields.Many2one(
|
|
"account.cutoff.accrual.subscription", ondelete="restrict", check_company=True
|
|
)
|