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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hardik Juneja
erp5
Commits
5a421ff7
Commit
5a421ff7
authored
Jul 24, 2015
by
wenjie.zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Workflow.py: add _executeMetaTransition.
parent
e92dbdaa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
3 deletions
+72
-3
product/ERP5Workflow/Document/Workflow.py
product/ERP5Workflow/Document/Workflow.py
+72
-3
No files found.
product/ERP5Workflow/Document/Workflow.py
View file @
5a421ff7
...
...
@@ -372,9 +372,9 @@ class Workflow(IdAsReferenceMixin("", "prefix"), XMLObject):
workflow_tool
=
portal
.
portal_workflow
result
=
[]
append
=
result
.
append
if
info
.
object
.
getTypeInfo
()
is
not
None
:
for
workflow_id
in
info
.
object
.
getTypeInfo
().
getTypeWorkflowList
():
append
(
info
.
object
.
getTypeInfo
().
getId
())
for
workflow_id
in
info
.
object
.
getTypeInfo
().
getTypeWorkflowList
():
append
(
info
.
object
.
getTypeInfo
().
getId
())
return
result
portal_type_list
=
getPortalTypeListForWorkflow
(
self
.
id
)
...
...
@@ -978,6 +978,75 @@ class Workflow(IdAsReferenceMixin("", "prefix"), XMLObject):
return
etree
.
tostring
(
root
,
encoding
=
'utf-8'
,
xml_declaration
=
True
,
pretty_print
=
True
)
def
_executeMetaTransition
(
self
,
ob
,
new_state_id
):
"""
Allow jumping from state to another without triggering any hooks.
Must be used only under certain conditions.
"""
sci
=
None
econtext
=
None
tdef
=
None
kwargs
=
None
new_state_id_no_prefix
=
new_state_id
new_state_id
=
'state_'
+
new_state_id
# Figure out the old and new states.
old_sdef
=
self
.
_getWorkflowStateOf
(
ob
)
if
old_sdef
is
None
:
old_state
=
self
.
_getWorkflowStateOf
(
ob
,
id_only
=
True
)
else
:
old_state
=
old_sdef
.
getId
()
if
old_state
==
new_state_id
:
# Object is already in expected state
return
former_status
=
self
.
_getStatusOf
(
ob
)
new_sdef
=
self
.
_getOb
(
new_state_id
,
None
)
if
new_sdef
is
None
:
raise
WorkflowException
,
(
'Destination state undefined: '
+
new_state_id
)
# Update variables.
state_values
=
self
.
contentValues
(
portal_type
=
'Variable'
)
if
state_values
is
None
:
state_values
=
{}
tdef_exprs
=
{}
status
=
{}
for
id
,
vdef
in
self
.
getVariableValueList
():
if
not
vdef
.
for_status
:
continue
expr
=
None
if
state_values
.
has_key
(
id
):
value
=
state_values
[
id
]
elif
tdef_exprs
.
has_key
(
id
):
expr
=
tdef_exprs
[
id
]
elif
not
vdef
.
update_always
and
former_status
.
has_key
(
id
):
# Preserve former value
value
=
former_status
[
id
]
else
:
if
vdef
.
default_expr
is
not
None
:
expr
=
vdef
.
default_expr
else
:
value
=
vdef
.
default_value
if
expr
is
not
None
:
# Evaluate an expression.
if
econtext
is
None
:
# Lazily create the expression context.
if
sci
is
None
:
sci
=
StateChangeInfo
(
ob
,
self
,
former_status
,
tdef
,
old_sdef
,
new_sdef
,
kwargs
)
econtext
=
createExprContext
(
sci
)
value
=
expr
(
econtext
)
status
[
id
]
=
value
status
[
'comment'
]
=
'Jump from %r to %r'
%
(
old_state
,
new_state_id_no_prefix
,)
status
[
self
.
getStateVariable
()]
=
new_state_id_no_prefix
tool
=
self
.
getParent
()
tool
.
setStatusOf
(
self
.
getId
(),
ob
,
status
)
# Update role to permission assignments.
self
.
updateRoleMappingsFor
(
ob
)
return
new_sdef
def
Guard_checkWithoutRoles
(
self
,
sm
,
wf_def
,
ob
,
**
kw
):
"""Checks conditions in this guard.
This function is the same as Guard.check, but roles are not taken
...
...
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