Skip to content

Commit

Permalink
[FIX] account_financial_report: in XLSX report, display null ending b…
Browse files Browse the repository at this point in the history
…alance (just like we display null initial balance)
  • Loading branch information
alexis-via committed Oct 23, 2024
1 parent 3901cc4 commit 55d7869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion account_financial_report/report/abstract_report_xlsx.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ def write_ending_balance_from_dict(self, my_object, name, label, report_data):
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
)
Expand Down

0 comments on commit 55d7869

Please sign in to comment.