Commit d334a5c4 authored by Yoshinori Okuji's avatar Yoshinori Okuji

Renamed from base_dialog.py to Base_callDialogMethod.py.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1523 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e17897a4
## Script (Python) "Base_callDialogMethod"
##bind container=container
##bind context=context
##bind namespace=
##bind script=script
##bind subpath=traverse_subpath
##parameters=form_id,cancel_url,dialog_method,selection_name,dialog_id,enable_pickle=0,**kw ##parameters=form_id,cancel_url,dialog_method,selection_name,dialog_id,enable_pickle=0,**kw
##title=
##
# Updates attributes of an Zope document # Updates attributes of an Zope document
# which is in a class inheriting from ERP5 Base # which is in a class inheriting from ERP5 Base
...@@ -11,13 +18,13 @@ from ZTUtils import make_query ...@@ -11,13 +18,13 @@ from ZTUtils import make_query
request=context.REQUEST request=context.REQUEST
#Exceptions for UI and Sort #Exceptions for UI and Sort
if dialog_method == 'base_list_ui': if dialog_method == 'Base_configureUI':
return context.base_list_ui(form_id=form_id, return context.Base_configureUI(form_id=form_id,
selection_name=selection_name, selection_name=selection_name,
field_columns=getattr(request,'field_columns'), field_columns=getattr(request,'field_columns'),
stat_columns=getattr(request,'stat_columns')) stat_columns=getattr(request,'stat_columns'))
if dialog_method == 'base_sort_on': if dialog_method == 'Base_configureSortOn':
return context.base_sort_on(form_id=form_id, return context.Base_configureSortOn(form_id=form_id,
selection_name=selection_name, selection_name=selection_name,
field_sort_on=getattr(request,'field_sort_on'), field_sort_on=getattr(request,'field_sort_on'),
field_sort_order=getattr(request,'field_sort_order')) field_sort_order=getattr(request,'field_sort_order'))
......
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