Merge pull request #20522 from rohitwaghchaure/picklist_nonetype_error

fix: unsupported operand type(s) for += 'int' and 'NoneType'
This commit is contained in:
Deepesh Garg
2020-02-05 17:44:46 +05:30
committed by GitHub

View File

@@ -74,13 +74,13 @@ class PickList(Document):
if item_map.get(key):
item_map[key].qty += item.qty
item_map[key].stock_qty += item.stock_qty
item_map[key].stock_qty += flt(item.stock_qty)
else:
item_map[key] = item
# maintain count of each item (useful to limit get query)
self.item_count_map.setdefault(item_code, 0)
self.item_count_map[item_code] += item.stock_qty
self.item_count_map[item_code] += flt(item.stock_qty)
return item_map.values()