Commit 246dbac3 authored by Vincent Pelletier's avatar Vincent Pelletier

Do not use objectIds to count the number of subobjects: it's very inefficient with btreefolders.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@19380 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c063f552
......@@ -4524,7 +4524,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
# always created a trash bin because we may to save object already present
# but not in a previous business templates apart at creation of a new site
if trash_tool is not None and (len(object_to_update) > 0 or len(self.portal_templates.objectIds()) > 1):
if trash_tool is not None and (len(object_to_update) > 0 or len(self.portal_templates) > 1):
trashbin = trash_tool.newTrashBin(self.getTitle(), self)
else:
trashbin = None
......@@ -4579,7 +4579,7 @@ Business Template is a set of definitions, such as skins, portal types and categ
# remove trashbin if empty
if trashbin is not None:
if len(trashbin.objectIds()) == 0:
if len(trashbin) == 0:
trash_tool.manage_delObjects([trashbin.getId(),])
if update_catalog:
......
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