Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
12
account_move_fiscal_year/models/account_move_line.py
Executable file
12
account_move_fiscal_year/models/account_move_line.py
Executable file
@@ -0,0 +1,12 @@
|
||||
# Copyright 2017 ACSONE SA/NV
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = "account.move.line"
|
||||
|
||||
date_range_fy_id = fields.Many2one(
|
||||
related="move_id.date_range_fy_id",
|
||||
)
|
||||
Reference in New Issue
Block a user