Files
Odoo-18.0-20251222/account_maturity_date_default/models/account_move_line.py
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

18 lines
700 B
Python
Executable File

# Copyright 2021 Tecnativa - Víctor Martínez
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, models
class AccountMoveLine(models.Model):
_inherit = "account.move.line"
@api.model_create_multi
def create(self, vals_list):
for vals in vals_list:
if not vals.get("date_maturity"):
account = self.env["account.account"].browse(vals.get("account_id"))
if account.account_type in {"asset_receivable", "liability_payable"}:
move = self.env["account.move"].browse(vals.get("move_id"))
vals["date_maturity"] = move.date
return super().create(vals_list)