Commit b6214b3e authored by manohar's avatar manohar

split stock considered for order_type = N also


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93258 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 62c62c75
...@@ -559,7 +559,7 @@ public class InvPackAct extends ActionHandlerEJB implements InvPackActLocal, Inv ...@@ -559,7 +559,7 @@ public class InvPackAct extends ActionHandlerEJB implements InvPackActLocal, Inv
conn = connDriver.getConnectDB("DriverITM"); conn = connDriver.getConnectDB("DriverITM");
orderType = genericUtility.getColumnValue("order_type", dom1); orderType = genericUtility.getColumnValue("order_type", dom1);
System.out.println("Order Type ::"+orderType); System.out.println("Order Type ::"+orderType);
if (orderType != null && (orderType.equalsIgnoreCase("P") || orderType.equalsIgnoreCase("R"))) if (orderType != null && (orderType.equalsIgnoreCase("P") || orderType.equalsIgnoreCase("R") || orderType.equalsIgnoreCase("N")))
{ {
stmt = conn.createStatement(); stmt = conn.createStatement();
//changes by cpandey on 07/11/12 //changes by cpandey on 07/11/12
......
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