changeset 04efbab05b97 in modules/account:default
details: https://hg.tryton.org/modules/account?cmd=changeset&node=04efbab05b97
description:
Use the right order of columns in the index used for
account.account.party
issue10216
review 348241002
diffstat:
move.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 0abedc0e447f -r 04efbab05b97 move.py
--- a/move.py Thu Apr 22 07:55:16 2021 +0200
+++ b/move.py Wed Apr 28 10:15:54 2021 +0200
@@ -774,7 +774,7 @@
table_h.index_action(['move', 'account'], 'add')
# Index for account.account.party
table_h.index_action(
- ['party', 'account', 'id'], 'add', where=table.party != Null)
+ ['account', 'party', 'id'], 'add', where=table.party != Null)
@classmethod
def default_date(cls):