diff --git a/product/ERP5/MovementCollectionDiff.py b/product/ERP5/MovementCollectionDiff.py index a72d789e323c6731096eff56a9c6f9e1af7a66ee..babccd5ebceece935d36cec9e7e053d8332228de 100644 --- a/product/ERP5/MovementCollectionDiff.py +++ b/product/ERP5/MovementCollectionDiff.py @@ -153,7 +153,7 @@ def _getPropertyList(document, acquire=True): document.getPropertyIdList()])) def _getCategoryList(document, acquire=True): - bad_category_list = ['solver', 'delivery',] + bad_category_list = ['solver', ] getPropertyList = document.getPropertyList def filter_category_func(x): return len(x[1]) != 0 and x[0] not in bad_category_list and \ @@ -162,3 +162,4 @@ def _getCategoryList(document, acquire=True): return dict(filter(filter_category_func, [(x, getPropertyList(x)) for x in \ document.getBaseCategoryList()])) +