Commit 10bf33e4 authored by cpatil's avatar cpatil

modify error


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93307 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cb9984d0
......@@ -270,7 +270,7 @@ public class StockAllocPrc extends ActionHandlerEJB implements StockAllocPrcLoca
*/ // commented by cpatil on 02/07/13
// added by cpatil on 02/07/13
sorditemSql = " SELECT i.ITEM_CODE,i.ITEM_CODE__ORD,i.UNIT, i.ITEM_REF ," +
" d.unit__std , d.conv__qty_stduom, d.quantity__stduom "
" d.unit__std , d.conv__qty_stduom, d.quantity__stduom " +
" FROM SORDITEM i , sorddet d " +
" WHERE i.SALE_ORDER = ? AND i.LINE_NO = ? " +
" AND i.EXP_LEV = ? " +
......@@ -410,9 +410,9 @@ public class StockAllocPrc extends ActionHandlerEJB implements StockAllocPrcLoca
//PENDING_QUANTITY
unitStd = rsTemp.getString(5); // added by cpatil on 02/07/13
//conv__qty_stduom convQtyStduom
convQtyStduom = rsTemp.getString(6); // added by cpatil on 02/07/13
convQtyStduom = rsTemp.getDouble(6); // added by cpatil on 02/07/13
// quantity__stduom quantityStduom
quantityStduom = rsTemp.getString(7); // added by cpatil on 02/07/13
quantityStduom = rsTemp.getDouble(7); // added by cpatil on 02/07/13
}
rsTemp.close(); rsTemp = null;
......
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