details:   https://code.tryton.org/tryton/commit/24b9f6f2103d
branch:    7.6
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.
        (grafted from aa44f5985cd7f33be3d73ab47898ad4d4206b561)
diffstat:

 modules/account/move.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 0998dbd8d4a3 -r 24b9f6f2103d modules/account/move.py
--- a/modules/account/move.py   Fri Jan 02 13:11:49 2026 +0100
+++ b/modules/account/move.py   Mon Jan 05 00:41:31 2026 +0100
@@ -2361,7 +2361,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'

Reply via email to