Skip to content

Commit

Permalink
[FIX]cash_daily_report: report balance != 0
Browse files Browse the repository at this point in the history
  • Loading branch information
DarioLodeiros committed Feb 6, 2025
1 parent 5c3fc86 commit 53cf898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cash_daily_report/wizard/cash_daily_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def _export(self, pms_property_id):
self.env["account.bank.statement"]
.sudo()
.search(
[("journal_id", "=", journal.id), ("balance_end", "!=", False)],
[("journal_id", "=", journal.id), ("balance_end", "!=", 0)],
limit=1,
)
)
Expand Down

0 comments on commit 53cf898

Please sign in to comment.