Files
Odoo-18.0-20251222/partner_statement/models/account_move_line.py
2025-07-24 11:47:55 +02:00

14 lines
350 B
Python

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",
)