Tower: unpublish om_account_followup — remove source from 19.0 branch

This commit is contained in:
2026-05-02 11:15:05 +00:00
parent 0da904b92b
commit 7e07a27a97
44 changed files with 0 additions and 13385 deletions

View File

@@ -1,13 +0,0 @@
from odoo import api, fields, models, _
class AccountMoveLine(models.Model):
_inherit = 'account.move.line'
followup_line_id = fields.Many2one('followup.line', 'Follow-up Level')
followup_date = fields.Date('Latest Follow-up')
result = fields.Float(compute='_get_result', string="Balance Amount")
def _get_result(self):
for aml in self:
aml.result = aml.debit - aml.credit