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
abecde7f
Commit
abecde7f
authored
Mar 01, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: search for template_format_version for Business Manager
parent
dcca0bdf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
8 deletions
+15
-8
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+15
-8
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
abecde7f
...
...
@@ -336,6 +336,10 @@ class TemplateTool (BaseTool):
bp
=
self
.
newContent
(
bt_id
,
'Business Package'
)
bp
.
importFile
(
path
)
return
bp
elif
format_version
==
3
:
bm
=
self
.
newContent
(
bt_id
,
'Business Manager'
)
bm
.
importFile
(
path
)
return
bm
bt
=
self
.
newContent
(
bt_id
,
'Business Template'
)
bt
.
importFile
(
path
)
...
...
@@ -390,15 +394,18 @@ class TemplateTool (BaseTool):
return self[self._setObject(id, bt)]
bt = self._download_url(url, id)
else:
# Check the format version for the bt
format_version_path = name+'
/
bp
/
template_format_version
'
try:
file = open(os.path.normpath(format_version_path))
format_version = int(file.read())
file.close()
except IOError:
format_version = 1
template_version_path_list = [
name+'
/
bp
/
template_format_version
',
name+'
/
bm
/
template_format_version
',
]
for path in template_version_path_list:
try:
file = open(os.path.normpath(format_version_path))
except IOError:
pass
format_version = int(file.read())
file.close()
# XXX: Download only needed in case the file is in directory
bt = self._download_local(os.path.normpath(name), id, format_version)
...
...
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