[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
Danny Adair 2025-02-05 12:20:09 +13:00 committed by Danny W. Adair
parent 34104ba811
commit 07b5969a12
1 changed files with 1 additions and 1 deletions

View File

@ -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