15 lines
487 B
Python
15 lines
487 B
Python
"""Inherit account.move.line: track last follow-up level."""
|
|
|
|
from odoo import _, api, fields, models
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
_inherit = "account.move.line"
|
|
|
|
fusion_followup_level_id = fields.Many2one(
|
|
'fusion.followup.level', copy=False,
|
|
help="Last follow-up level at which this line was contacted.")
|
|
fusion_followup_last_run_date = fields.Datetime(
|
|
copy=False,
|
|
help="When the line was most-recently included in a follow-up.")
|