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
141
Merge Requests
141
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
778477e6
Commit
778477e6
authored
Feb 22, 2017
by
Ayush Tiwari
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bt5_config: Try installing multiple Business Manager via template tool
parent
4c0c65a5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
1 deletion
+26
-1
product/ERP5/Tool/TemplateTool.py
product/ERP5/Tool/TemplateTool.py
+26
-1
No files found.
product/ERP5/Tool/TemplateTool.py
View file @
778477e6
...
...
@@ -1639,7 +1639,32 @@ class TemplateTool (BaseTool):
security
.
declareProtected
(
Permissions
.
ManagePortal
,
'installMultipleBusinessManager'
)
def
installMultipleBusinessManager
(
self
,
bm_list
):
pass
"""
Creates a single BM from multiple Business Manager and run installation
on all at once after reducing the final BM.
"""
# Create the final Business Manager
if
len
(
bm_list
)
==
1
:
combinedBT
=
bm_list
[
0
]
else
:
# Summation should also consider arithmetic on the Business Item(s)
# having same path and layer and combine them.
combinedBT
=
sum
(
bm_list
)
# XXX: We are missing the part of creating installed_BM for all the BM
# we have in bm_list, because this would be needed in case we build
# Business Manager again
# Reduce the final Business Manager
combinedBT
.
reduceBusinessManager
()
combinedBT
.
flattenBusinessManager
()
if
combinedBT
.
getStatus
()
==
'flattened'
:
# Run install on separate Business Item one by one
for
path_item
in
combinedBt
.
_path_item_list
:
path_item
.
install
()
else
:
raise
ValueError
,
'Business Manager not flattened, cannot install'
security
.
declareProtected
(
Permissions
.
ManagePortal
,
'getBusinessTemplateUrl'
)
...
...
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