Commit bcdd6881 authored by Sebastien Robin's avatar Sebastien Robin

check if the value is not None in _setItemIdList


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2679 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent f87b316f
......@@ -401,6 +401,8 @@ Une ligne tarifaire."""
Computes total_quantity of all given items and stores this total_quantity
in the quantity attribute of the cell
"""
if value is None:
return
previous_item_list = self.getAggregateValueList()
given_item_id_list = value
item_object_list = []
......
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