changeset c60abb47491a in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset;node=c60abb47491a
description:
Do not set slots on ShowViewStart
The model is generic and must accept that Wizard.execute set any field
on it.
issue9425
review301821003
diffstat:
trytond/ir/ui/view.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diffs (11 lines):
diff -r 02abe22c6c74 -r c60abb47491a trytond/ir/ui/view.py
--- a/trytond/ir/ui/view.py Wed Jun 24 23:02:24 2020 +0200
+++ b/trytond/ir/ui/view.py Sat Jun 27 00:52:49 2020 +0200
@@ -217,6 +217,7 @@
class ShowViewStart(ModelView):
'Show view'
__name__ = 'ir.ui.view.show.start'
+ __no_slots__ = True
class ShowView(Wizard):