details: https://code.tryton.org/tryton/commit/f6f289200834
branch: 8.0
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
(grafted from e8394b1a0c0f3b7b3266a9bbb65d84b90a5f0e7e)
diffstat:
modules/account/move.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 1ed177c3573e -r f6f289200834 modules/account/move.py
--- a/modules/account/move.py Thu Jun 18 19:09:35 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