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
Laurent S
erp5
Commits
869c1004
Commit
869c1004
authored
May 05, 2015
by
wenjie.zheng
Committed by
Sebastien Robin
Jul 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
patches/WorkflowTool.py: add universal methods to DCWorkflow.
parent
35444a89
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
18 deletions
+39
-18
product/ERP5Type/patches/WorkflowTool.py
product/ERP5Type/patches/WorkflowTool.py
+39
-18
No files found.
product/ERP5Type/patches/WorkflowTool.py
View file @
869c1004
...
...
@@ -99,29 +99,46 @@ DCWorkflowDefinition.notifySuccess = DCWorkflowDefinition_notifySuccess
def
method_getReference
(
self
):
return
self
.
id
def
DCWorkflowDefinition_getVariableList
(
self
):
def
DCWorkflowDefinition_getVariable
Value
List
(
self
):
if
self
.
variables
is
not
None
:
return
self
.
variables
.
objectValues
()
else
:
return
None
return
self
.
variables
return
None
def
DCWorkflowDefinition_getVariableIdList
(
self
):
if
self
.
variables
is
not
None
:
return
self
.
variables
.
objectIds
()
return
None
def
DCWorkflowDefinition_getStateList
(
self
):
def
DCWorkflowDefinition_getState
Value
List
(
self
):
if
self
.
states
is
not
None
:
return
self
.
states
.
objectValues
()
else
:
return
None
return
self
.
states
return
None
def
DCWorkflowDefinition_getTransitionList
(
self
):
def
DCWorkflowDefinition_getStateIdList
(
self
):
if
self
.
states
is
not
None
:
return
self
.
states
.
objectIds
()
return
None
def
DCWorkflowDefinition_getTransitionValueList
(
self
):
if
self
.
transitions
is
not
None
:
return
self
.
transitions
.
objectValues
()
return
self
.
transitions
else
:
return
None
def
DCWorkflowDefinition_getWorklistList
(
self
):
def
DCWorkflowDefinition_getTransitionIdList
(
self
):
if
self
.
transitions
is
not
None
:
return
self
.
transitions
.
objectIds
()
return
None
def
DCWorkflowDefinition_getWorklistValueList
(
self
):
if
self
.
worklists
is
not
None
:
return
self
.
worklists
.
objectValues
()
else
:
return
None
return
self
.
worklists
return
None
def
DCWorkflowDefinition_getWorklistIdList
(
self
):
if
self
.
worklists
is
not
None
:
return
self
.
worklists
.
objectIds
()
return
None
DCWorkflowDefinition
.
getReference
=
method_getReference
TransitionDefinition
.
getReference
=
method_getReference
...
...
@@ -129,10 +146,14 @@ StateDefinition.getReference = method_getReference
VariableDefinition
.
getReference
=
method_getReference
WorklistDefinition
.
getReference
=
method_getReference
DCWorkflowDefinition
.
getVariableList
=
DCWorkflowDefinition_getVariableList
DCWorkflowDefinition
.
getStateList
=
DCWorkflowDefinition_getStateList
DCWorkflowDefinition
.
getTransitionList
=
DCWorkflowDefinition_getTransitionList
DCWorkflowDefinition
.
getWorklistList
=
DCWorkflowDefinition_getWorklistList
DCWorkflowDefinition
.
getVariableValueList
=
DCWorkflowDefinition_getVariableValueList
DCWorkflowDefinition
.
getStateValueList
=
DCWorkflowDefinition_getStateValueList
DCWorkflowDefinition
.
getTransitionValueList
=
DCWorkflowDefinition_getTransitionValueList
DCWorkflowDefinition
.
getWorklistValueList
=
DCWorkflowDefinition_getWorklistValueList
DCWorkflowDefinition
.
getVariableIdList
=
DCWorkflowDefinition_getVariableIdList
DCWorkflowDefinition
.
getStateIdList
=
DCWorkflowDefinition_getStateIdList
DCWorkflowDefinition
.
getTransitionIdList
=
DCWorkflowDefinition_getTransitionIdList
DCWorkflowDefinition
.
getWorklistIdList
=
DCWorkflowDefinition_getWorklistIdList
WORKLIST_METADATA_KEY
=
'metadata'
SECURITY_PARAMETER_ID
=
'local_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