Commit a0303737 authored by kshinde's avatar kshinde

Bug fix imported RcvIBCAconf component.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@197417 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5021fc45
...@@ -13,6 +13,7 @@ import ibase.utility.E12GenericUtility; ...@@ -13,6 +13,7 @@ import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ActionHandlerEJB; import ibase.webitm.ejb.ActionHandlerEJB;
import ibase.webitm.ejb.ITMDBAccessEJB; import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.ejb.dis.DistCommon; import ibase.webitm.ejb.dis.DistCommon;
import ibase.webitm.ejb.fin.adv.RcvIbcaConf;
import ibase.webitm.utility.ITMException; import ibase.webitm.utility.ITMException;
import ibase.webitm.utility.TransIDGenerator; import ibase.webitm.utility.TransIDGenerator;
...@@ -1035,14 +1036,14 @@ public class MiscDrCrRcpConf extends ActionHandlerEJB implements MiscDrCrRcpConf ...@@ -1035,14 +1036,14 @@ public class MiscDrCrRcpConf extends ActionHandlerEJB implements MiscDrCrRcpConf
+" values (?,?,?,?,?,?,?)"; +" values (?,?,?,?,?,?,?)";
pstmtInsert = conn.prepareStatement(sqlInsert);*/ pstmtInsert = conn.prepareStatement(sqlInsert);*/
/*if(status && flg) condition commented by nandkumar gadkari on 31/12/18 if(status && flg)
{*/ {
miscRdetListMap = new HashMap(); miscRdetListMap = new HashMap();
miscRdetListMap = (HashMap) miscRdetList.get(miscRdetList.size()-1); miscRdetListMap = (HashMap) miscRdetList.get(miscRdetList.size()-1);
lineNo = (String) miscRdetListMap.get("line_no"); lineNo = (String) miscRdetListMap.get("line_no");
// flg=false; flg=false;
System.out.println("lineNo status" +lineNo +status); System.out.println("lineNo status" +lineNo +status);
//} }
lineNo = (new Integer (Integer.parseInt(lineNo)+1)).toString() ; lineNo = (new Integer (Integer.parseInt(lineNo)+1)).toString() ;
System.out.println("lineNo out side if flg" +lineNo +flg); System.out.println("lineNo out side if flg" +lineNo +flg);
...@@ -2848,15 +2849,15 @@ public class MiscDrCrRcpConf extends ActionHandlerEJB implements MiscDrCrRcpConf ...@@ -2848,15 +2849,15 @@ public class MiscDrCrRcpConf extends ActionHandlerEJB implements MiscDrCrRcpConf
} }
pstmt.close(); pstmt.close();
// 19-Feb-2019 manoharan auto confirm the ibca // 20-Feb-2019 manoharan auto confirm the ibca
RcvIbcaConf ibcaObj = new RcvIbcaConf(); RcvIbcaConf ibcaObj = new RcvIbcaConf();
retString = ibcaObj.retreiveRibca (ibcaId, siteCode, xtraParamsStr, conn); errString = ibcaObj.retreiveRibca (ibcaId, site, xtraParams, conn);
if(retString != null && retString.trim().length() > 0) if(errString != null && errString.trim().length() > 0)
{ {
return retString; return errString;
} }
ibcaObj = null; ibcaObj = null;
// end 19-Feb-2019 manoharan auto confirm the ibca // end 20-Feb-2019 manoharan auto confirm the ibca
} }
......
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