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
e0dbedbb
Commit
e0dbedbb
authored
Sep 15, 2015
by
wenjie.zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InteractionWorkflow.py: change the way to execute script by calling them directly.
parent
244ed820
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
product/ERP5Workflow/Document/InteractionWorkflow.py
product/ERP5Workflow/Document/InteractionWorkflow.py
+4
-4
No files found.
product/ERP5Workflow/Document/InteractionWorkflow.py
View file @
e0dbedbb
...
...
@@ -271,7 +271,7 @@ class InteractionWorkflow(IdAsReferenceMixin("", "prefix"), Workflow):
if
before_script_list
!=
[]
and
tdef
.
getBeforeScriptName
()
is
not
None
:
for
script_name
in
before_script_list
:
script
=
self
.
_getOb
(
script_name
)
script
.
execute
(
sci
)
script
(
sci
)
return
filtered_transition_list
def
notifySuccess
(
self
,
ob
,
transition_list
,
result
,
args
=
None
,
kw
=
None
):
...
...
@@ -339,7 +339,7 @@ class InteractionWorkflow(IdAsReferenceMixin("", "prefix"), Workflow):
# try to get the script without calling it.
script
=
self
.
getScriptValueList
()[
script_name
]
# Pass lots of info to the script in a single parameter.
script
.
execute
(
sci
)
# May throw an exception
script
(
sci
)
# May throw an exception
# Queue the "Before Commit" scripts
sm
=
getSecurityManager
()
...
...
@@ -372,7 +372,7 @@ class InteractionWorkflow(IdAsReferenceMixin("", "prefix"), Workflow):
# between here and when the interaction was executed... So we
# need to switch to the security manager as it was back then
setSecurityManager
(
security_manager
)
self
.
_getOb
(
script_name
)
.
execute
(
sci
)
self
.
_getOb
(
script_name
)(
sci
)
finally
:
setSecurityManager
(
current_security_manager
)
...
...
@@ -382,7 +382,7 @@ class InteractionWorkflow(IdAsReferenceMixin("", "prefix"), Workflow):
tdef
=
self
.
_getOb
(
tdef_id
)
sci
=
StateChangeInfo
(
ob
,
self
,
former_status
,
tdef
,
None
,
None
,
None
)
script
.
execute
(
sci
)
script
(
sci
)
def
isActionSupported
(
self
,
document
,
action
,
**
kw
):
'''
...
...
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