Commit 81120c55 authored by kmandhre's avatar kmandhre

Add Total Allocated Qty column for 166-N POINT


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93887 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d2b6363a
...@@ -437,6 +437,9 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat ...@@ -437,6 +437,9 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat
retTabSepStrBuff.append("<quantity__stduom>").append("<![CDATA[" + rs.getString("QUANTITY__STDUOM") +"]]>").append("</quantity__stduom>"); retTabSepStrBuff.append("<quantity__stduom>").append("<![CDATA[" + rs.getString("QUANTITY__STDUOM") +"]]>").append("</quantity__stduom>");
//Total allocated Qty added by kunal on 19/NOV/13
retTabSepStrBuff.append("<tot_alloc_qty>").append("<![CDATA[" + rs.getDouble(7) +"]]>").append("</tot_alloc_qty>");
//dealloc_qty //dealloc_qty
retTabSepStrBuff.append("<dealloc_qty>").append("<![CDATA[" + rs.getDouble(7) +"]]>").append("</dealloc_qty>"); retTabSepStrBuff.append("<dealloc_qty>").append("<![CDATA[" + rs.getDouble(7) +"]]>").append("</dealloc_qty>");
//ADD BY RITESH ON 10/10/13 FOR REQUEST DI3GSUN017 START //ADD BY RITESH ON 10/10/13 FOR REQUEST DI3GSUN017 START
......
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