changeset f509daee2bd1 in modules/account_budget:6.2
details:
https://hg.tryton.org/modules/account_budget?cmd=changeset&node=f509daee2bd1
description:
Call super search_current_name in search_current_name
issue11656
review443481003
(grafted from 4f2b793cd6791c374db0885a9f13b7c7302f6904)
diffstat:
account.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r c641d206726b -r f509daee2bd1 account.py
--- a/account.py Sat Jan 01 18:50:33 2022 +0100
+++ b/account.py Fri Aug 26 17:53:47 2022 +0200
@@ -500,7 +500,7 @@
@classmethod
def search_current_name(cls, name, clause):
- return super().search_rec_name(name, clause) + [
+ return super().search_current_name(name, clause) + [
('account_type.name',) + tuple(clause[1:]),
]