diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-11-26 10:08:16 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-11-26 10:08:16 +0700 |
| commit | 25edffb8ebf51e4b133132f4fbd49363b1426664 (patch) | |
| tree | 903a73bef338d0ddd1bed8577b276b318f37cc56 /fixco_custom/models/sale.py | |
| parent | 29d10b8de8422a7c2ced1816d7cc7df41c20b73c (diff) | |
api altama
Diffstat (limited to 'fixco_custom/models/sale.py')
| -rwxr-xr-x | fixco_custom/models/sale.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fixco_custom/models/sale.py b/fixco_custom/models/sale.py index c6e9ccb..9c4ed6b 100755 --- a/fixco_custom/models/sale.py +++ b/fixco_custom/models/sale.py @@ -15,7 +15,7 @@ class SaleOrder(models.Model): count_journals = fields.Integer('Count Payment', compute='_compute_count_journals') - remaining_down_payment = fields.Float('Remaining Down Payment', compute='_compute_remaining_down_payment') + remaining_down_payment = fields.Float('Remaining Down Payment', compute='_compute_remaining_down_payment', store=True) def _compute_remaining_down_payment(self): for order in self: |
