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
Labels
Merge Requests
138
Merge Requests
138
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
b77bd25c
Commit
b77bd25c
authored
Nov 12, 2014
by
Klaus Wölfel
Committed by
Xiaowu Zhang
Sep 26, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Configurator: add substitution support
parent
c4889360
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
product/ERP5Configurator/Document/PathConfiguratorItem.py
product/ERP5Configurator/Document/PathConfiguratorItem.py
+4
-1
No files found.
product/ERP5Configurator/Document/PathConfiguratorItem.py
View file @
b77bd25c
...
...
@@ -59,8 +59,11 @@ class PathConfiguratorItem(ConfiguratorItemMixin, XMLObject):
def
_checkConsistency
(
self
,
fixit
=
False
,
filter
=
None
,
**
kw
):
portal
=
self
.
getPortalObject
()
business_configuration
=
self
.
getBusinessConfigurationValue
()
error_list
=
[]
for
container_path
,
transition_method
,
document_dict
in
iter
(
self
.
getConfigurationListList
()):
for
container_path
,
transition_method
,
document_dict
,
substitution_dict
in
iter
(
self
.
getConfigurationListList
()):
for
key
,
attr
in
substitution_dict
.
items
():
document_dict
[
key
]
=
business_configuration
.
getGlobalConfigurationAttr
(
attr
)
document_dict
=
document_dict
.
copy
()
document_id
=
document_dict
.
pop
(
'id'
)
portal_type
=
document_dict
.
pop
(
'portal_type'
)
...
...
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