Commit 1675e02b authored by Sebastien Robin's avatar Sebastien Robin

fixed typo error, so the parent mode is working again

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@8356 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c6dd1470
...@@ -1183,7 +1183,7 @@ class ListBoxRenderer: ...@@ -1183,7 +1183,7 @@ class ListBoxRenderer:
if base_category == 'parent': if base_category == 'parent':
for sub_obj in obj.contentValues(sort_on = sort_on): for sub_obj in obj.contentValues(sort_on = sort_on):
if getattr(aq_base(sub_obj), 'objectValues', None) is not None: if getattr(aq_base(sub_obj), 'objectValues', None) is not None:
exception_uid_list.append(sub_o.getUid()) exception_uid_list.append(sub_obj.getUid())
# Summary (open) # Summary (open)
tree_list.append(ReportTree(obj = obj, is_pure_summary = True, depth = depth, tree_list.append(ReportTree(obj = obj, is_pure_summary = True, depth = depth,
......
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