From e8b43b67c1f18d33d93f91b3a7da61bf23bc1fd9 Mon Sep 17 00:00:00 2001 From: Alexis de Lattre Date: Thu, 9 Mar 2023 23:30:13 +0100 Subject: [PATCH] account_bank_reconciliation_summary_xlsx: fix logic error in reconcile filter --- .../report/bank_reconciliation_xlsx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account_bank_reconciliation_summary_xlsx/report/bank_reconciliation_xlsx.py b/account_bank_reconciliation_summary_xlsx/report/bank_reconciliation_xlsx.py index b82f513..7dda405 100644 --- a/account_bank_reconciliation_summary_xlsx/report/bank_reconciliation_xlsx.py +++ b/account_bank_reconciliation_summary_xlsx/report/bank_reconciliation_xlsx.py @@ -46,7 +46,7 @@ class BankReconciliationXlsx(models.AbstractModel): limit_datetime = limit_datetime_utc.replace(tzinfo=None) domain += [ '|', ('full_reconcile_id', '=', False), - ('full_reconcile_id.create_date', '<=', limit_datetime)] + ('full_reconcile_id.create_date', '>', limit_datetime)] self._domain_add_move_state(wizard, domain) mlines = self.env["account.move.line"].search(domain) res = []