Commit b3172094 authored by manohar's avatar manohar

qty_shipped set as 0 instead of qty_order


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96874 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 362a1eac
......@@ -5,6 +5,7 @@
********************************************************/
package ibase.webitm.ejb.dis;
import ibase.utility.*;
import ibase.webitm.utility.*;
import ibase.utility.CommonConstants;
import ibase.webitm.ejb.*;
......@@ -61,7 +62,7 @@ public class DissOrderDmgPrc extends ProcessEJB implements DissOrderDmgPrcLocal,
String returnString = "";
int noOfDetail = 1 ;
GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = new E12GenericUtility();
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
/*public void ejbCreate() throws RemoteException, CreateException
......@@ -123,7 +124,7 @@ public class DissOrderDmgPrc extends ProcessEJB implements DissOrderDmgPrcLocal,
String available = "";
String site = "";
String strLocCode = "";
GenericUtility genericUtility = GenericUtility.getInstance();
E12GenericUtility genericUtility = new E12GenericUtility();
Connection conn = null;
CallableStatement cstmt = null;
PreparedStatement pstmt = null ,pstmtGen=null ,pstmtInv=null,pstmtStock=null;
......@@ -973,7 +974,9 @@ public class DissOrderDmgPrc extends ProcessEJB implements DissOrderDmgPrcLocal,
pstmtDetail.setString(3,taxClass);
pstmtDetail.setDouble(4,totAmtDet);
pstmtDetail.setDouble(5,rateClgDec);
pstmtDetail.setDouble(6,shipQty);
// 28/11/14 manoharan this column will be updated when dist issue is confirmed
//pstmtDetail.setDouble(6,shipQty);
pstmtDetail.setDouble(6,0);
pstmtDetail.setString(7,remarks);
pstmtDetail.setString(8,received);
pstmtDetail.setString(9,overShipRec);
......
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