[MIG] partner_statement: Migration to 18.0

This commit is contained in:
kobros-tech
2025-02-12 02:20:49 +03:00
committed by Miquel Raïch
parent 7899fff564
commit b054d48e24
9 changed files with 36 additions and 15 deletions

View File

@@ -0,0 +1 @@
from . import account_move_line

View File

@@ -0,0 +1,13 @@
from odoo import fields, models
class AccountMoveLine(models.Model):
_inherit = "account.move.line"
# === Misc Information === #
blocked = fields.Boolean(
string="No Follow-up",
default=False,
help="You can check this box to mark this journal item "
"as a litigation with the associated partner",
)