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
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
Amer
erp5
Commits
289c455b
Commit
289c455b
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: modify action url to gain compatiblity of erp5 workflow after conversion.
parent
4be29c82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
2 deletions
+18
-2
product/ERP5/Tool/WorkflowTool.py
product/ERP5/Tool/WorkflowTool.py
+18
-2
No files found.
product/ERP5/Tool/WorkflowTool.py
View file @
289c455b
...
...
@@ -160,6 +160,7 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
return
False
def
doActionFor
(
self
,
ob
,
action
,
wf_id
=
None
,
*
args
,
**
kw
):
LOG
(
" Call user_action '%s' "
%
action
,
WARNING
,
" in WorkflowTool.py 163"
)
workflow_list
=
self
.
getWorkflowValueListFor
(
ob
.
getPortalType
())
if
wf_id
is
None
:
if
workflow_list
==
[]:
...
...
@@ -168,6 +169,7 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
for
wf
in
workflow_list
:
if
wf
.
isActionSupported
(
ob
,
action
,
**
kw
):
found
=
1
LOG
(
" user_action is from workflow '%s'"
%
wf
.
getId
(),
WARNING
,
" in WorkflowTool.py, 172"
)
break
if
not
found
:
msg
=
_
(
u"No workflow provides the '${action_id}' action."
,
mapping
=
{
'action_id'
:
action
})
...
...
@@ -322,7 +324,12 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
transition
.
setActboxCategory
(
tdef
.
actbox_category
)
transition
.
setActboxIcon
(
tdef
.
actbox_icon
)
transition
.
setActboxName
(
tdef
.
actbox_name
)
transition
.
setActboxUrl
(
tdef
.
actbox_url
)
# alter actbox_url to gain compatibility of erp5 workflow
compatible_url
=
tdef
.
actbox_url
if
compatible_url
is
not
None
:
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
.
setDescription
(
tdef
.
description
)
if
tdef
.
after_script_name
is
not
None
:
# check after script is a Transion or a Script:
...
...
@@ -406,16 +413,25 @@ class WorkflowTool(BaseTool, OriginalWorkflowTool):
state_id
=
'state_'
+
value
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
)
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:
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
)
worklist
.
setActboxUrl
(
qdef
.
actbox_url
)
# configure guard
if
qdef
.
guard
:
worklist
.
setRoleList
(
qdef
.
guard
.
roles
)
...
...
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