Commit bb50ac63 authored by Jérome Perrin's avatar Jérome Perrin

don't call catalogObjectList with an empty stock_object_list


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@42335 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent d92ceba4
...@@ -477,9 +477,10 @@ class BalanceTransaction(AccountingTransaction, Inventory): ...@@ -477,9 +477,10 @@ class BalanceTransaction(AccountingTransaction, Inventory):
self.portal_catalog.catalogObjectList([self]) self.portal_catalog.catalogObjectList([self])
# Catalog differences calculated from lines # Catalog differences calculated from lines
self.portal_catalog.catalogObjectList(stock_object_list[::], if stock_object_list:
method_id_list=('z_catalog_stock_list',), self.portal_catalog.catalogObjectList(stock_object_list[::],
disable_cache=1, check_uid=0, method_id_list=('z_catalog_stock_list',),
sql_catalog_id=sql_catalog_id, disable_cache=1, check_uid=0,
disable_archive=disable_archive, sql_catalog_id=sql_catalog_id,
immediate_reindex_archive=immediate_reindex_archive) disable_archive=disable_archive,
immediate_reindex_archive=immediate_reindex_archive)
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