diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2023-09-05 16:19:20 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2023-09-05 16:19:20 +0700 |
| commit | e07379886024a313695a56ebdd072bfd87b6626a (patch) | |
| tree | 0c242434cc35379d59d885d42784b1facb3f31ab /indoteknik_custom/models/account_move.py | |
| parent | c4bf293cd29fab412d38e7590acdc99f2456c0d8 (diff) | |
try to fix bug on odoo
Diffstat (limited to 'indoteknik_custom/models/account_move.py')
| -rw-r--r-- | indoteknik_custom/models/account_move.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indoteknik_custom/models/account_move.py b/indoteknik_custom/models/account_move.py index b2d1df39..18025b32 100644 --- a/indoteknik_custom/models/account_move.py +++ b/indoteknik_custom/models/account_move.py @@ -21,6 +21,7 @@ class AccountMove(models.Model): new_due_date = fields.Date(string='New Due') counter = fields.Integer(string="Counter", default=0) cost_centre_id = fields.Many2one('cost.centre', string='Cost Centre') + analytic_account_ids = fields.Many2many('account.analytic.account', string='Analytic Account') due_line = fields.One2many('due.extension.line', 'invoice_id', compute='_compute_due_line', string='Due Extension Lines') def _compute_due_line(self): |
