Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Romain Courteaud
erp5_rtl_support
Commits
0b3a5988
Commit
0b3a5988
authored
Aug 07, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Function to explicitly update template_path_list
parent
0b2a4d53
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
product/ERP5/Document/BusinessManager.py
product/ERP5/Document/BusinessManager.py
+19
-0
No files found.
product/ERP5/Document/BusinessManager.py
View file @
0b3a5988
...
...
@@ -286,6 +286,25 @@ class BusinessManager(Folder):
final_prop_map
=
prop_map
+
self
.
_properties
return
final_prop_map
def
createTemplatePathListFromItemList
(
self
):
"""
This function is to clean and create a new template_path_list from the
sub-objects (Business Item or Business Property Item).
WARNING: Shouldn't be used in general to edit. Only to be used in cases to
clear template_path_list.
"""
template_path_list
=
[]
# Get the sub-objects and construct their template path, i.e, path in format
# of <path> | <sign> | <layer>
for
item
in
self
.
objectValues
():
path
=
item
.
constructTemplatePath
()
template_path_list
.
append
(
path
)
# Add the updated template_path_list in the BM
self
.
setProperty
(
'template_path_list'
,
template_path_list
)
def
export
(
self
,
path
=
None
,
**
kw
):
"""
Export the object as zexp file
...
...
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