[MIG] partner_statement: Migration to 18.0
This commit is contained in:
committed by
Miquel Raïch
parent
7899fff564
commit
b054d48e24
1
partner_statement/models/__init__.py
Normal file
1
partner_statement/models/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
from . import account_move_line
|
||||
13
partner_statement/models/account_move_line.py
Normal file
13
partner_statement/models/account_move_line.py
Normal 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",
|
||||
)
|
||||
Reference in New Issue
Block a user