[FIX] account_financial_report: in XLSX report, display null ending balance (just like we display null initial balance)

pull/1241/head
Alexis de Lattre 2024-10-23 16:58:03 +02:00
parent 51a04e38f3
commit f43b481a07
1 changed files with 1 additions and 1 deletions

View File

@ -496,7 +496,7 @@ class AbstractReportXslx(models.AbstractModel):
report_data["formats"]["format_header_amount"],
)
elif cell_type == "amount_currency":
if my_object["currency_id"] and value:
if my_object["currency_id"]:
format_amt = self._get_currency_amt_format_dict(
my_object, report_data
)