diff options
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: |
