From 712fccd87613f366a00a20f4cb3f686ead9bd1f8 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 20 Aug 2015 14:59:25 +0530 Subject: [PATCH] [fix][patch] Repost reserved qty for stock item --- erpnext/patches/v4_2/repost_reserved_qty.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/erpnext/patches/v4_2/repost_reserved_qty.py b/erpnext/patches/v4_2/repost_reserved_qty.py index f91968c2d4..4479411284 100644 --- a/erpnext/patches/v4_2/repost_reserved_qty.py +++ b/erpnext/patches/v4_2/repost_reserved_qty.py @@ -18,9 +18,11 @@ def execute(): select distinct item_code, warehouse from `tabPacked Item` where docstatus=1 and parenttype='Sales Order' ) - ) items + ) so_item + where + exists(select name from tabItem where name=so_item.item_code and ifnull(is_stock_item, 0)=1) """) - + for item_code, warehouse in repost_for: update_bin_qty(item_code, warehouse, { "reserved_qty": get_reserved_qty(item_code, warehouse)