details: https://code.tryton.org/tryton/commit/2c03e7d9a4e4
branch: default
user: Cédric Krier <[email protected]>
date: Thu Jan 22 13:54:58 2026 +0100
description:
Unpack table and clause when converting domain for payable/receivable
date
Closes #14533
diffstat:
modules/account/move.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 7a8606077f4c -r 2c03e7d9a4e4 modules/account/move.py
--- a/modules/account/move.py Mon Jan 19 16:40:01 2026 +0100
+++ b/modules/account/move.py Thu Jan 22 13:54:58 2026 +0100
@@ -786,7 +786,7 @@
None: (move, move.id == table.move),
}
else:
- move = move[None]
+ move, _ = move[None]
_, operator, operand = domain
Operator = fields.SQL_OPERATORS[operator]
date = Coalesce(table.maturity_date, move.date)