Commit 1a80f621 authored by manohar's avatar manohar

quantity - alloc_qty > 0 considered


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91690 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b59a9c7b
......@@ -229,7 +229,7 @@ public class GenStkHelpAct extends ActionHandlerEJB implements GenStkHelpActLoca
+" ( ( stock.item_code = '"+itemCode+"' ) and "
+" ( stock.site_code = '"+siteCode+"' ) ) and "
+" ( invstat.stat_type <> 'S' ) And "
+" ( stock.quantity <> 0 ) "
+" ( stock.quantity - case when stock.alloc_qty is null then 0 else stock.alloc_qty end > 0 ) "
+" ORDER BY stock.site_code, "
+" stock.item_code, stock.loc_code, "
+ "stock.lot_no, "
......
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