details: https://code.tryton.org/tryton/commit/e8394b1a0c0f
branch: default
user: Cédric Krier <[email protected]>
date: Thu Jun 18 14:37:36 2026 +0200
description:
Call the same super method for validate_fields of account move line
Closes #14901
diffstat:
modules/account/move.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 6c731676e722 -r e8394b1a0c0f modules/account/move.py
--- a/modules/account/move.py Thu May 21 16:13:34 2026 +0200
+++ b/modules/account/move.py Thu Jun 18 14:37:36 2026 +0200
@@ -1400,7 +1400,7 @@
@classmethod
def validate_fields(cls, lines, field_names):
- super().validate(lines)
+ super().validate_fields(lines, field_names)
cls.check_account(lines, field_names)
@classmethod