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
alecs_myu
erp5
Commits
826c3185
Commit
826c3185
authored
Jan 17, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_prototype: Add export for business package
parent
3775faeb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+7
-3
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
826c3185
...
...
@@ -266,7 +266,7 @@ class TemplateTool (BaseTool):
return
REQUEST
.
RESPONSE
.
redirect
(
ret_url
)
security
.
declareProtected
(
'Import/Export objects'
,
'export'
)
def
export
(
self
,
business_template
,
REQUEST
=
None
,
RESPONSE
=
None
):
def
export
(
self
,
business_template
,
REQUEST
=
None
,
RESPONSE
=
None
,
isPackage
=
False
):
"""
Export the Business Template as a bt5 file and offer the user to
download it.
...
...
@@ -275,8 +275,12 @@ class TemplateTool (BaseTool):
try
:
if
RESPONSE
is
not
None
:
RESPONSE
.
setHeader
(
'Content-type'
,
'tar/x-gzip'
)
RESPONSE
.
setHeader
(
'Content-Disposition'
,
'inline;filename=%s-%s.bt5'
%
(
business_template
.
getTitle
(),
business_template
.
getVersion
()))
if
not
isPackage
:
RESPONSE
.
setHeader
(
'Content-Disposition'
,
'inline;filename=%s-%s.bt5'
%
(
business_template
.
getTitle
(),
business_template
.
getVersion
()))
else
:
RESPONSE
.
setHeader
(
'Content-Disposition'
,
'inline;filename=%s.bp5'
%
business_template
.
getTitle
())
return
export_string
.
getvalue
()
finally
:
export_string
.
close
()
...
...
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