fix: stock entry with putaway rule not working

This commit is contained in:
Rohit Waghchaure 2021-07-06 14:24:42 +05:30
parent 2fbe41de36
commit dd1b2995a8

View File

@ -97,7 +97,7 @@ def apply_putaway_rule(doctype, items, company, sync=None, purpose=None):
at_capacity, rules = get_ordered_putaway_rules(item_code, company, source_warehouse=source_warehouse)
if not rules:
warehouse = source_warehouse or item.warehouse
warehouse = source_warehouse or item.get('warehouse')
if at_capacity:
# rules available, but no free space
items_not_accomodated.append([item_code, pending_qty])