details: https://code.tryton.org/tryton/commit/aa44f5985cd7
branch: default
user: Cédric Krier <[email protected]>
date: Mon Jan 05 00:41:31 2026 +0100
description:
Do not always consider account with party required when reconcile
fe8ae43ad9e7 left a debug clause that skips the test.
diffstat:
modules/account/move.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 4f9c0d84b816 -r aa44f5985cd7 modules/account/move.py
--- a/modules/account/move.py Mon Jan 05 00:38:37 2026 +0100
+++ b/modules/account/move.py Mon Jan 05 00:41:31 2026 +0100
@@ -2384,7 +2384,7 @@
while True:
while not next_currency():
- if self.show.account.party_required or True:
+ if self.show.account.party_required:
while not next_party():
if not next_account():
return 'end'