fix syntax error in aged partner balance na
This commit is contained in:
parent
564f6e0222
commit
b6d17bd3cf
1 changed files with 1 additions and 1 deletions
|
|
@ -58,7 +58,7 @@ class AgedPartnerBalanceCustomHandler(models.AbstractModel):
|
||||||
|
|
||||||
date_to = fields.Date.from_string(options['date']['date_to'])
|
date_to = fields.Date.from_string(options['date']['date_to'])
|
||||||
periods = [
|
periods = [
|
||||||
(False, minus_days(date_to, 1))
|
(False, minus_days(date_to, 1)),
|
||||||
(date_to, plus_days(date_to, 29)),
|
(date_to, plus_days(date_to, 29)),
|
||||||
(plus_days(date_to, 30), plus_days(date_to, 59)),
|
(plus_days(date_to, 30), plus_days(date_to, 59)),
|
||||||
(plus_days(date_to, 60), plus_days(date_to, 89)),
|
(plus_days(date_to, 60), plus_days(date_to, 89)),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue