Commit 5204aa98 authored by pdas's avatar pdas

Stoppages Confirm for confirm button and update confirmed flag


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97662 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d50d2a17
package ibase.webitm.ejb.mfg;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import javax.ejb.Stateless;
import ibase.system.config.ConnDriver;
import ibase.utility.E12GenericUtility;
import ibase.webitm.ejb.ActionHandlerEJB;
import ibase.webitm.ejb.ITMDBAccessEJB;
import ibase.webitm.utility.GenericUtility;
import ibase.webitm.utility.ITMException;
@Stateless
public class StoppagesConf extends ActionHandlerEJB implements
StoppagesConfLocal, StoppagesConfRemote
{
public String actionHandler() throws RemoteException, ITMException
{
return "";
}
public String actionHandler(String actionType, String xmlString,
String objContext, String xtraParams) throws RemoteException,
ITMException
{
System.out.println("item actionHandler(...) called............");
String str = "";
System.out.println("actionType---" + actionType);
System.out.println("xmlString---" + xmlString);
System.out.println("objContext---" + objContext);
System.out.println("xtraParams---" + xtraParams);
return str;
}
public String confirm(String tranId, String xtraParams, String forcedFlag)
throws RemoteException, ITMException
{
System.out.println("Stoppagesconf confirm called..............");
String confirmed = "";
String siteCode="";
String sql = "";
Connection conn = null;
PreparedStatement pstmt = null;
ITMDBAccessEJB itmDBAccessEJB = null;
String errString = "",errCode="";
ResultSet rs = null;
int cnt = 0;
ITMDBAccessEJB itmDBAccessLocal = new ITMDBAccessEJB();
StoppagesConf stoppgesscnf=new StoppagesConf();// Object required to confirm Stoppages.
boolean isLocal=false;
try
{
E12GenericUtility genericUtility=new E12GenericUtility();
Calendar currentDate = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
String sysDate = sdf.format(currentDate.getTime());
System.out.println("Now the date is :=> " + sysDate);
itmDBAccessEJB = new ITMDBAccessEJB();
ConnDriver connDriver = null;
connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
if (errString == null || errString.trim().length() == 0)
{
if (tranId != null && tranId.trim().length() > 0)
{
sql = "select confirmed,site_code from stoppages where tran_id =?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
rs = pstmt.executeQuery();
if (rs.next())
{
confirmed = rs.getString(1);
siteCode=rs.getString(2);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
System.out.println("Status from stoppages &&&&&&&&&&&:- "+confirmed);
if ("Y".equalsIgnoreCase(confirmed))
{
errCode = "VTCONF1"; //'StoppagesConf Already Confirmed'
errString = itmDBAccessLocal.getErrorString("",errCode,"");
}
else
{
errString = Stoppagesconf(tranId,1, xtraParams,conn);
System.out.println("@@@@ confirmStoppages::errCode["+errString+"]");
}
}
if (errString == null || errString.trim().length() == 0)
{
errCode = "VTCONFIRM";
errString = itmDBAccessLocal.getErrorString("",errCode,"");
return errString;
}
}
} catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (errString != null && errString.trim().length() > 0 && !("VTCONFIRM".equalsIgnoreCase(errCode)) )
{
conn.rollback();
System.out.println("@@@@ Transaction rollback...["+errString+"]::errCode["+errCode+"]");
if(isLocal){
conn.close();
conn = null;
}
}
else
{
if(isLocal){
conn.commit(); // test
System.out.println("c"+errString+"]::errCode["+errCode+"]");
conn.close();
conn = null;
}else{
System.out.println("DIDNT COMMIT ********8");
}
}
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
}
return errString;
}
private String Stoppagesconf(String tranId, int i, String xtraParams, Connection conn)
throws RemoteException, ITMException
{
PreparedStatement pstmt = null, pstmtSql = null;
ResultSet rs = null;
int cnt = 0,updCnt=0;
String sql = "", errCode = "",errString ="",sql1 ="";
try
{
Timestamp sysDate = null;
Calendar currentDate = Calendar.getInstance();
GenericUtility genericUtility = GenericUtility.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
String sysDateStr = sdf.format(currentDate.getTime());
sysDate= Timestamp.valueOf(genericUtility.getValidDateString(sysDateStr, genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()) + " 00:00:00.0");
ITMDBAccessEJB itmDBAccessLocal = new ITMDBAccessEJB();
sql="select count(*) from stoppagesdet where tran_id =?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, tranId);
rs = pstmt.executeQuery();
if (rs.next())
{
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if(cnt<= 0)
{
errCode="DS000NR";
errString = itmDBAccessLocal.getErrorString("",errCode,"Details for this Transaction! Cannot be confirmed");
return errString;
}
sql1="update stoppages set confirmed = 'Y', conf_date = ? where tran_id = ?";
pstmtSql = conn.prepareStatement(sql1);
pstmtSql.setTimestamp(1, sysDate);
pstmtSql.setString(2, tranId);
updCnt = pstmtSql.executeUpdate();
pstmtSql.close();
pstmtSql = null;
System.out.println("If 1 then updated = "+updCnt);
if(updCnt != 1)
{
errCode = "VTUPDHDR";
}
}
catch (Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
return errCode;
}
}
\ No newline at end of file
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