14 lines
350 B
Python
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",
|
|
)
|