[FIX] partner_statement: context_today() instead of today()
The date shown on the report should be based on the client's timezone not UTC. (can be off by a day)pull/1280/head
parent
34104ba811
commit
07b5969a12
|
@ -353,7 +353,7 @@ class ReportStatementCommon(models.AbstractModel):
|
|||
aging_type = data["aging_type"]
|
||||
is_activity = data.get("is_activity")
|
||||
is_detailed = data.get("is_detailed")
|
||||
today = fields.Date.today()
|
||||
today = fields.Date.context_today(self)
|
||||
amount_field = data.get("amount_field", "amount")
|
||||
|
||||
# There should be relatively few of these, so to speed performance
|
||||
|
|
Loading…
Reference in New Issue