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
060b985b
Commit
060b985b
authored
Jun 11, 2015
by
wenjie.zheng
Committed by
Sebastien Robin
Jul 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WorkflowTool.py: deal the case when actbox_url is an empty string.
parent
289c455b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
9 deletions
+11
-9
product/ERP5/Tool/WorkflowTool.py
product/ERP5/Tool/WorkflowTool.py
+11
-9
No files found.
product/ERP5/Tool/WorkflowTool.py
View file @
060b985b
...
...
@@ -326,7 +326,7 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
transition
.
setActboxName
(
tdef
.
actbox_name
)
# alter actbox_url to gain compatibility of erp5 workflow
compatible_url
=
tdef
.
actbox_url
if
compatible_url
is
not
None
:
if
compatible_url
is
not
''
:
index_action_id
=
compatible_url
.
find
(
tdef
.
id
)
compatible_url
=
compatible_url
[:
index_action_id
]
+
'transition_'
+
compatible_url
[
index_action_id
:]
transition
.
setActboxUrl
(
compatible_url
)
...
...
@@ -414,10 +414,11 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
state_id_list
.
append
(
state_id
)
worklist
.
setMatchedSimulationStateList
(
state_id_list
)
# alter url:
compatible_url
=
qdef
.
actbox_url
index_state_id
=
compatible_url
.
find
(
value
)
compatible_url
=
compatible_url
[:
index_state_id
]
+
'state_'
+
compatible_url
[
index_state_id
:]
worklist
.
setActboxUrl
(
compatible_url
)
if
qdef
.
actbox_url
is
not
''
:
compatible_url
=
qdef
.
actbox_url
index_state_id
=
compatible_url
.
find
(
value
)
compatible_url
=
compatible_url
[:
index_state_id
]
+
'state_'
+
compatible_url
[
index_state_id
:]
worklist
.
setActboxUrl
(
compatible_url
)
elif
key
==
'validation_state'
:
state_id_list
=
[]
for
value
in
values
:
...
...
@@ -425,10 +426,11 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
state_id_list
.
append
(
state_id
)
worklist
.
setMatchedValidationStateList
(
state_id_list
)
# alter url:
compatible_url
=
qdef
.
actbox_url
index_state_id
=
compatible_url
.
find
(
value
)
compatible_url
=
compatible_url
[:
index_state_id
]
+
'state_'
+
compatible_url
[
index_state_id
:]
worklist
.
setActboxUrl
(
compatible_url
)
if
qdef
.
actbox_url
is
not
''
:
compatible_url
=
qdef
.
actbox_url
index_state_id
=
compatible_url
.
find
(
value
)
compatible_url
=
compatible_url
[:
index_state_id
]
+
'state_'
+
compatible_url
[
index_state_id
:]
worklist
.
setActboxUrl
(
compatible_url
)
worklist
.
setActboxCategory
(
qdef
.
actbox_category
)
worklist
.
setActboxIcon
(
qdef
.
actbox_icon
)
worklist
.
setActboxName
(
qdef
.
actbox_name
)
...
...
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