[FIX] account_financial_report: in XLSX report, display null ending balance (just like we display null initial balance)
parent
51a04e38f3
commit
f43b481a07
|
@ -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
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue