details: https://code.tryton.org/tryton/commit/0fc3d84d030c
branch: default
user: Cédric Krier <[email protected]>
date: Wed Mar 11 16:03:00 2026 +0100
description:
Order Account Parties of General Ledger by party before id by default
Closes #14669
diffstat:
modules/account/account.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r e0c9a39ae757 -r 0fc3d84d030c modules/account/account.py
--- a/modules/account/account.py Wed Mar 11 15:20:41 2026 +0100
+++ b/modules/account/account.py Wed Mar 11 16:03:00 2026 +0100
@@ -2299,7 +2299,7 @@
@classmethod
def __setup__(cls):
super().__setup__()
- cls._order.insert(2, ('party', 'ASC'))
+ cls._order.insert(1, ('party', 'ASC'))
@classmethod
def _get_account(cls):