Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5-Boxiang
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Hamza
erp5-Boxiang
Commits
e442dde0
Commit
e442dde0
authored
Jun 12, 2015
by
wenjie.zheng
Committed by
Sebastien Robin
Jul 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WorkflowTool.py: keep the actbox_url identical after conversion.
parent
82109af6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
18 deletions
+3
-18
product/ERP5/Tool/WorkflowTool.py
product/ERP5/Tool/WorkflowTool.py
+3
-18
No files found.
product/ERP5/Tool/WorkflowTool.py
View file @
e442dde0
...
...
@@ -160,6 +160,7 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
return
False
def
doActionFor
(
self
,
ob
,
action
,
wf_id
=
None
,
*
args
,
**
kw
):
action
=
'transition_'
+
action
LOG
(
" Call user_action '%s' "
%
action
,
WARNING
,
" in WorkflowTool.py 163"
)
workflow_list
=
self
.
getWorkflowValueListFor
(
ob
.
getPortalType
())
if
wf_id
is
None
:
...
...
@@ -324,12 +325,7 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
transition
.
setActboxCategory
(
tdef
.
actbox_category
)
transition
.
setActboxIcon
(
tdef
.
actbox_icon
)
transition
.
setActboxName
(
tdef
.
actbox_name
)
# alter actbox_url to gain compatibility of erp5 workflow
compatible_url
=
tdef
.
actbox_url
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
)
transition
.
setActboxUrl
(
tdef
.
actbox_url
)
transition
.
setDescription
(
tdef
.
description
)
if
tdef
.
after_script_name
is
not
None
:
# check after script is a Transion or a Script:
...
...
@@ -413,24 +409,13 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
state_id
=
'state_'
+
value
state_id_list
.
append
(
state_id
)
worklist
.
setMatchedSimulationStateList
(
state_id_list
)
# alter 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
:
state_id
=
'state_'
+
value
state_id_list
.
append
(
state_id
)
worklist
.
setMatchedValidationStateList
(
state_id_list
)
# alter 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
.
setActboxUrl
(
qdef
.
actbox_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