Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_workflow
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenjie.zheng
erp5_workflow
Commits
fb7ddb19
Commit
fb7ddb19
authored
Oct 16, 2015
by
wenjie.zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WorkflowTool.py: addWorkflowToType allows to assing a tuple of workflows to type.
parent
8b423f4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
product/ERP5/Tool/WorkflowTool.py
product/ERP5/Tool/WorkflowTool.py
+11
-6
No files found.
product/ERP5/Tool/WorkflowTool.py
View file @
fb7ddb19
...
...
@@ -931,12 +931,17 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
trashbin
=
UnrestrictedMethod
(
trash_tool
.
newTrashBin
)(
dc_wf
.
id
)
trashbin
.
_setOb
(
dc_wf
.
id
,
dc_wf
)
def
addWorkflowToType
(
self
,
type_value
,
wf_id
):
# assign a workflow to a type
if
self
.
_getOb
(
wf_id
).
__class__
.
__name__
in
(
'DCWorkflowDefinition'
,
'InteractionWorkflowDefinition'
):
self
.
setChainForPortalTypes
([
type_value
.
getId
()],
(
wf_id
))
else
:
type_value
.
addTypeWorkflowList
(
wf_id
)
def
addWorkflowToType
(
self
,
type_value
,
wf_id_list
):
# assign workflow(s) to a type
dc_wf_id_list
=
[]
for
wf_id
in
wf_id_list
:
wf_value
=
self
.
_getOb
(
wf_id
)
if
self
.
_getOb
(
wf_id
).
__class__
.
__name__
in
(
'DCWorkflowDefinition'
,
'InteractionWorkflowDefinition'
):
dc_wf_id_list
.
append
(
wf_id
)
else
:
type_value
.
addTypeWorkflowList
(
wf_id
)
if
dc_wf_id_list
!=
[]:
self
.
setChainForPortalTypes
((
type_value
.
getId
(),),
tuple
(
dc_wf_id_list
))
InitializeClass
(
WorkflowTool
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment