Commit 02a66799 authored by rbhogale's avatar rbhogale

Change by Rohan on 16-02-13 for not get quantity form pick order


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92699 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5cd840e7
......@@ -238,14 +238,7 @@ public class ReplIssConf extends ActionHandlerEJB implements ReplIssConfRemote,
// 09/02/13 manoharan actual quantity (balance quantity) is updated in multiples of number of cases so this has to be taken as the total pick quantity
//Changed by sumit sarkar on 25/07/12 getting actual value from repl_ord_det
//actualQty = rs.getInt( "ACTUAL_QTY" );
//Chnaged by Rohan on 15-02-13 for calculating actual qty from repanishment in case of stock to dock.start
System.out.println("Order Type"+orderType);
if ("D".equals(orderType) || "H".equals(orderType) || "L".equals(orderType))
{
actualQty = rs.getInt( "ACTUAL_QTY" );
System.out.println("actualQty"+actualQty);
}
//Chnaged by Rohan on 15-02-13 for calculating actual qty from repanishment in case of stock to dock.start
//Chnaged by Rohan on 15-02-13 for calculating actual qty from repanishment in case of stock to dock.start
if (!"D".equals(orderType) && !"H".equals(orderType) && !"L".equals(orderType))
{
......@@ -285,6 +278,7 @@ public class ReplIssConf extends ActionHandlerEJB implements ReplIssConfRemote,
pstmtPick = null;
actualQty = quantity - pickQty;
//Chnaged by Rohan on 15-02-13 for calculating actual qty from repanishment in case of stock to dock
}
// end 09/02/13 manoharan actual quantity (balance quantity) is updated in multiples of number of cases so this has to be taken as the total pick quantity
......@@ -423,7 +417,7 @@ public class ReplIssConf extends ActionHandlerEJB implements ReplIssConfRemote,
//Chnaged by Rohan on 15-02-13 for calculating actual qty from repanishment in case of stock to dock.end
*/
System.out.println(" Active actualQty ["+actualQty+"]");
System.out.println(" Active actualQty ["+actualQty+"]"+"quantity"+quantity);
updateRowMap.put("tran_type","ID");
updateRowMap.put("qty_stduom", ""+ (quantity - actualQty));//140
updateRowMap.put("quantity", ""+ (quantity - actualQty));
......
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