Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5
Commits
b8ac76b8
Commit
b8ac76b8
authored
9 years ago
by
wenjie.zheng
Committed by
Sebastien Robin
9 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WorkflowTool.py: getChainsByType method return a regenerated dict to avoid scurity issue.
parent
56352017
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
product/ERP5/Tool/WorkflowTool.py
product/ERP5/Tool/WorkflowTool.py
+4
-1
No files found.
product/ERP5/Tool/WorkflowTool.py
View file @
b8ac76b8
...
...
@@ -599,7 +599,10 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
'Base_getWorklistIgnoredSecurityColumnSet'
,
lambda
:
())()
def
getChainsByType
(
self
):
return
self
.
_chains_by_type
type_workflow_dict
=
{}
for
type_id
,
workflow_id_list
in
self
.
_chains_by_type
.
iteritems
():
type_workflow_dict
.
setdefault
(
type_id
,
[]).
append
(
workflow_id_list
)
return
type_workflow_dict
def
delTypeCBT
(
self
,
pt
,
wf_id
):
self
.
_chains_by_type
[
pt
]
=
tuple
(
wf
for
wf
in
self
.
_chains_by_type
[
pt
]
if
wf
!=
wf_id
)
...
...
This diff is collapsed.
Click to expand it.
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