Browse Source
[FIX] contract: add missing dependency in computed field
pull/434/head
Stéphane Bidoul (ACSONE)
5 years ago
No known key found for this signature in database
GPG Key ID: BCAB2555446B5B92
1 changed files with
1 additions and
0 deletions
-
contract/models/contract_line.py
|
@ -479,6 +479,7 @@ class ContractLine(models.Model): |
|
|
'recurring_rule_type', |
|
|
'recurring_rule_type', |
|
|
'recurring_interval', |
|
|
'recurring_interval', |
|
|
'date_end', |
|
|
'date_end', |
|
|
|
|
|
'recurring_next_date', |
|
|
) |
|
|
) |
|
|
def _compute_next_period_date_end(self): |
|
|
def _compute_next_period_date_end(self): |
|
|
for rec in self: |
|
|
for rec in self: |
|
|