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
ac7a9de4
Commit
ac7a9de4
authored
Nov 12, 2014
by
Klaus Wölfel
Committed by
Klaus Wölfel
Feb 12, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Configurator: add substitution support
parent
3c543eae
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 @
ac7a9de4
...
...
@@ -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