Commit 635c3ff4 authored by Ayush Tiwari's avatar Ayush Tiwari

bt5_config: Create temp_object while creating state based BM while updating Installation State

parent 2b4fce56
...@@ -1943,6 +1943,7 @@ class TemplateTool (BaseTool): ...@@ -1943,6 +1943,7 @@ class TemplateTool (BaseTool):
old_installation_state = self.newContent( old_installation_state = self.newContent(
portal_type='Business Manager', portal_type='Business Manager',
title='Old Installation State', title='Old Installation State',
temp_object=True,
) )
for item in combined_installed_path_item: for item in combined_installed_path_item:
...@@ -1969,6 +1970,7 @@ class TemplateTool (BaseTool): ...@@ -1969,6 +1970,7 @@ class TemplateTool (BaseTool):
new_installation_state = self.newContent( new_installation_state = self.newContent(
portal_type='Business Manager', portal_type='Business Manager',
title='New Installation State', title='New Installation State',
temp_object=True,
) )
for item in combined_new_path_item: for item in combined_new_path_item:
...@@ -1982,6 +1984,7 @@ class TemplateTool (BaseTool): ...@@ -1982,6 +1984,7 @@ class TemplateTool (BaseTool):
installation_process = self.newContent( installation_process = self.newContent(
portal_type='Business Manager', portal_type='Business Manager',
title='Installation Process', title='Installation Process',
temp_object=True,
) )
# Get path list for old and new states # Get path list for old and new states
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment