Commit d2dedca3 authored by Jérome Perrin's avatar Jérome Perrin

core: remove useless log in Base_callDialogMethod

There's nothing wrong in having more than one listbox in a dialog
parent 3c0c9da6
Pipeline #10296 passed with stage
in 0 seconds
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
Generic method called when submitting a form in dialog mode. Generic method called when submitting a form in dialog mode.
Responsible for validating form data and redirecting to the form action. Responsible for validating form data and redirecting to the form action.
""" """
from erp5.component.module.Log import log
# XXX We should not use meta_type properly, # XXX We should not use meta_type properly,
# XXX We need to discuss this problem.(yusei) # XXX We need to discuss this problem.(yusei)
...@@ -129,10 +128,6 @@ for field in form.get_fields(): ...@@ -129,10 +128,6 @@ for field in form.get_fields():
if len(listbox_id_list): if len(listbox_id_list):
can_redirect = 0 can_redirect = 0
# Warn if there are more than one listbox in form ...
if len(listbox_id_list) > 1:
log('Base_callDialogMethod', 'There are %s listboxes in form %s.' % (len(listbox_id_list), form.id))
# ... but handle them anyway.
for listbox_id in listbox_id_list: for listbox_id in listbox_id_list:
listbox_line_list = [] listbox_line_list = []
listbox = kw[listbox_id] listbox = kw[listbox_id]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment