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
8a9a9a44
Commit
8a9a9a44
authored
Oct 16, 2015
by
wenjie.zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WorkflowSecurityConfiguratorItem.py: compatibility modification.
parent
badf9e68
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
product/ERP5Configurator/Document/WorkflowSecurityConfiguratorItem.py
...Configurator/Document/WorkflowSecurityConfiguratorItem.py
+2
-2
No files found.
product/ERP5Configurator/Document/WorkflowSecurityConfiguratorItem.py
View file @
8a9a9a44
...
@@ -88,7 +88,7 @@ class WorkflowSecurityConfiguratorItem(ConfiguratorItemMixin, XMLObject):
...
@@ -88,7 +88,7 @@ class WorkflowSecurityConfiguratorItem(ConfiguratorItemMixin, XMLObject):
state_list
=
table_dict
[
'state'
]
state_list
=
table_dict
[
'state'
]
for
state_config
in
state_list
:
for
state_config
in
state_list
:
state_id
=
state_config
.
pop
(
'state'
)
state_id
=
state_config
.
pop
(
'state'
)
state
=
workflow
.
states
[
state_id
]
state
=
workflow
.
getStateValueList
()
[
state_id
]
# Clean the state matrix
# Clean the state matrix
for
permission
in
permission_list
:
for
permission
in
permission_list
:
state
.
setPermission
(
permission
,
0
,
[])
state
.
setPermission
(
permission
,
0
,
[])
...
@@ -116,7 +116,7 @@ class WorkflowSecurityConfiguratorItem(ConfiguratorItemMixin, XMLObject):
...
@@ -116,7 +116,7 @@ class WorkflowSecurityConfiguratorItem(ConfiguratorItemMixin, XMLObject):
transition_list
=
table_dict
[
'transition'
]
transition_list
=
table_dict
[
'transition'
]
for
transition_conf
in
transition_list
:
for
transition_conf
in
transition_list
:
transition_id
=
transition_conf
.
pop
(
'transition'
)
transition_id
=
transition_conf
.
pop
(
'transition'
)
transition
=
workflow
.
transitions
[
transition_id
]
transition
=
workflow
.
getTransitionValueList
()
[
transition_id
]
guard
=
transition
.
getGuard
()
guard
=
transition
.
getGuard
()
role_list
=
[
x
.
capitalize
()
for
x
in
transition_conf
.
keys
()]
role_list
=
[
x
.
capitalize
()
for
x
in
transition_conf
.
keys
()]
role_string
=
';'
.
join
(
role_list
)
role_string
=
';'
.
join
(
role_list
)
...
...
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