Commit 1e9459af authored by wenjie.zheng's avatar wenjie.zheng Committed by Sebastien Robin

ERP5Site.py: add erp5 workflow compatibility after merge workflow_module to portal_workflow.

parent ba2bc476
......@@ -760,6 +760,11 @@ class ERP5Site(FolderMixIn, CMFSite, CacheCookieMixin):
def getStateList(group):
state_dict = {}
for wf in self.portal_workflow.objectValues():
if wf.__class__.__name__ == 'Workflow':
for state in wf.objectValues(portal_type='State'):
if group in getattr(state, 'type_list', ()):
state_dict['_'.join(state.getId().split('_')[:-1])] = None
else:
if getattr(wf, 'states', None):
for state in wf.states.objectValues():
if group in getattr(state, 'type_list', ()):
......@@ -1283,6 +1288,14 @@ class ERP5Site(FolderMixIn, CMFSite, CacheCookieMixin):
def getStateList():
state_dict = {}
for wf in self.portal_workflow.objectValues():
if wf.__class__.__name__ == 'Workflow':
if wf.objectValues(portal_type='Variable') and \
wf.getStateVariable() == 'simulation_state':
if wf.objectValues(portal_type='State'):
for state in wf.objectValues(portal_type='State'):
if getattr(state, 'type_list', None):
state_dict['_'.join(state.getId().split('_')[:-1])] = None
else:
if getattr(wf, 'variables', None) and \
wf.variables.getStateVar() == 'simulation_state':
if getattr(wf, 'states', None):
......
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