8 lines
169 B
Python
8 lines
169 B
Python
from odoo import models
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
_inherit = 'account.move.line'
|
|
|
|
# No overrides needed - we handle everything in action_post()
|