Commit 7d3a1ead authored by Ivan Tyagov's avatar Ivan Tyagov

Add patch to get list of portal types for workflow.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@14371 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 72955552
...@@ -66,21 +66,12 @@ def DCWorkflowDefinition_listGlobalActions(self, info): ...@@ -66,21 +66,12 @@ def DCWorkflowDefinition_listGlobalActions(self, info):
''' '''
if not self.worklists: if not self.worklists:
return None # Optimization return None # Optimization
workflow_tool = getToolByName(self, 'portal_workflow')
# Prevent including this worklist if workflow = getattr(workflow_tool, self.id)
# the workflow is not used by any portal type _getPortalTypeListForWorkflow = CachingMethod(workflow.getPortalTypeListForWorkflow,
def getPortalTypeListForWorkflow(workflow_id): id='_getPortalTypeListForWorkflow',
workflow_tool = getToolByName(self, 'portal_workflow') cache_factory = 'erp5_ui_long')
result = [] portal_type_list = _getPortalTypeListForWorkflow()
for type_info in workflow_tool._listTypeInfo():
portal_type = type_info.id
if workflow_id in workflow_tool.getChainFor(portal_type):
result.append(portal_type)
return result
_getPortalTypeListForWorkflow = CachingMethod(getPortalTypeListForWorkflow,
id='_getPortalTypeListForWorkflow', cache_factory = 'erp5_ui_long')
portal_type_list = _getPortalTypeListForWorkflow(self.id)
if not portal_type_list: if not portal_type_list:
return None return None
...@@ -423,6 +414,22 @@ def updateRoleMappings(self, REQUEST=None): ...@@ -423,6 +414,22 @@ def updateRoleMappings(self, REQUEST=None):
DCWorkflowDefinition.updateRoleMappings = updateRoleMappings DCWorkflowDefinition.updateRoleMappings = updateRoleMappings
# this patch allows to get list of portal types for workflow
def getPortalTypeListForWorkflow(self):
"""
Get list of portal types for workflow.
"""
result = []
workflow_id = self.id
workflow_tool = getToolByName(self, 'portal_workflow')
for type_info in workflow_tool._listTypeInfo():
portal_type = type_info.id
if workflow_id in workflow_tool.getChainFor(portal_type):
result.append(portal_type)
return result
DCWorkflowDefinition.getPortalTypeListForWorkflow = getPortalTypeListForWorkflow
# This patch allows to use workflowmethod as an after_script # This patch allows to use workflowmethod as an after_script
# However, the right way of doing would be to have a combined state of TRIGGER_USER_ACTION and TRIGGER_WORKFLOW_METHOD # However, the right way of doing would be to have a combined state of TRIGGER_USER_ACTION and TRIGGER_WORKFLOW_METHOD
# as well as workflow inheritance. This way, different user actions and dialogs can be specified easliy # as well as workflow inheritance. This way, different user actions and dialogs can be specified easliy
......
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