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
9175ca65
Commit
9175ca65
authored
Jun 26, 2015
by
wenjie.zheng
Committed by
Sebastien Robin
Jul 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Workflow.py: add script proxy_roles in showAsXML.
parent
37409369
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
product/ERP5Workflow/Document/Workflow.py
product/ERP5Workflow/Document/Workflow.py
+7
-3
No files found.
product/ERP5Workflow/Document/Workflow.py
View file @
9175ca65
...
...
@@ -937,7 +937,7 @@ class Workflow(IdAsReferenceMixin("workflow_", "prefix"), XMLObject):
# 5. Script as XML
script_reference_list
=
[]
script_list
=
self
.
objectValues
(
portal_type
=
'Workflow Script'
)
script_prop_id_to_show
=
sorted
([
'body'
,
'parameter_signature'
])
script_prop_id_to_show
=
sorted
([
'body'
,
'parameter_signature'
,
'proxy_roles'
])
for
sdef
in
script_list
:
script_reference_list
.
append
(
sdef
.
getReference
())
scripts
=
SubElement
(
workflow
,
'scripts'
,
attrib
=
dict
(
script_list
=
str
(
script_reference_list
),
...
...
@@ -946,8 +946,12 @@ class Workflow(IdAsReferenceMixin("workflow_", "prefix"), XMLObject):
script
=
SubElement
(
scripts
,
'script'
,
attrib
=
dict
(
reference
=
sdef
.
getReference
(),
portal_type
=
sdef
.
getPortalType
()))
for
property_id
in
script_prop_id_to_show
:
property_value
=
sdef
.
getProperty
(
property_id
)
property_type
=
sdef
.
getPropertyType
(
property_id
)
if
property_id
==
'proxy_roles'
:
property_value
=
tuple
(
sdef
.
getProperty
(
'proxy_role_list'
))
property_type
=
sdef
.
getPropertyType
(
'proxy_role_list'
)
else
:
property_value
=
sdef
.
getProperty
(
property_id
)
property_type
=
sdef
.
getPropertyType
(
property_id
)
sub_object
=
SubElement
(
script
,
property_id
,
attrib
=
dict
(
type
=
property_type
))
sub_object
.
text
=
str
(
property_value
)
...
...
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