Commit 2a13c068 authored by asikarwar's avatar asikarwar

cancel component for boq .


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92974 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f6885657
/**
* PURPOSE : To cancel of bill ofquantity
* AUTHOR : Done by akhilesh on 22/04/13
*/
package ibase.webitm.ejb.dis;
import ibase.webitm.utility.*;
import ibase.webitm.ejb.*;
import ibase.system.config.*;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.*;
import javax.ejb.Stateless;
@Stateless
public class BoqCancel extends ActionHandlerEJB implements BoqCancelLocal, BoqCancelRemote
{
/**
* The public method is used for splitting the sales return form
* Returns splitted message on successfull splitting otherwise returns error message
* @param tranId is the transaction id to be splitted
* @param xtraParams contais additional information such as loginEmpCode,loginCode,chgTerm etc
* @param forcedFlag (true or false)
*/
String userId = "", termId = "";
GenericUtility genericUtility = GenericUtility.getInstance();
public String actionHandler(String tranId, String xtraParams, String forcedFlag) throws RemoteException, ITMException
{
System.out.println("Cancel called........");
String sql = "";
String status = "";
String postatus = "";
String siteCode = "";
String errString = "" ;
String loginEmpCode = "";
Connection conn = null;
ConnDriver connDriver = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
int cnt = 0;
GenericUtility genericUtility = null;
ITMDBAccessEJB itmDBAccessEJB = null;
ValidatorEJB validatorEJB = null;
System.out.println("tran id = "+tranId);
try
{
genericUtility = new GenericUtility();
itmDBAccessEJB = new ITMDBAccessEJB();
validatorEJB = new ValidatorEJB();
connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
connDriver = null;
conn.setAutoCommit(false);
loginEmpCode = validatorEJB.getValueFromXTRA_PARAMS(xtraParams, "loginEmpCode");
sql = "select count(*) from porder where TRAN_ID__BOQ = ?";
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;
System.out.println("cnt value "+cnt);
if(cnt > 0)
{
sql = "select status from porder where TRAN_ID__BOQ = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,tranId);
rs = pstmt.executeQuery();
if(rs.next())
{
postatus = rs.getString("status");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if(postatus != null && !postatus.equalsIgnoreCase("X"))
{
errString = itmDBAccessEJB.getErrorString("","VMBOQCNL","","",conn);
return errString;
}
}
System.out.println("postatus value "+postatus);
sql = "select status from boqhdr where tran_id = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,tranId);
rs = pstmt.executeQuery();
if(rs.next())
{
status = rs.getString("status");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if(status != null && status.equalsIgnoreCase("X"))
{
System.out.println("The Selected transaction is already Cancel");
errString = itmDBAccessEJB.getErrorString("","VTINDCANC2","","",conn);
return errString;
}
else
{
sql = "update boqhdr set status = 'X', status_date = ? where tran_id = ?";
pstmt = conn.prepareStatement(sql);
pstmt.setDate(1, new java.sql.Date(new java.util.Date().getTime()));
pstmt.setString(2, tranId);
int updateCoount = pstmt.executeUpdate();
System.out.println("no of row update = "+updateCoount);
pstmt.close();
pstmt = null;
if(updateCoount > 0)
{
errString = itmDBAccessEJB.getErrorString("","VTCANC1","","",conn);
}
}
System.out.println("115 err String from Cancel method.....");
}
catch(Exception e)
{
try
{
conn.rollback();
}
catch (Exception e1)
{
throw new ITMException(e1);
}
e.printStackTrace();
System.out.println("Exception ::"+e.getMessage());
throw new ITMException(e);
}
finally
{
try
{
conn.commit();
if(pstmt != null)
{
pstmt.close();
pstmt = null;
}
if( conn != null && ! conn.isClosed() )
{
conn.close();
conn = null;
}
}
catch(Exception e)
{
System.out.println(e.getMessage());
throw new ITMException(e);
}
}
System.out.println("Returning Result ::"+errString);
return errString;
}
}
\ No newline at end of file
package ibase.webitm.ejb.dis;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import javax.ejb.Local;
@Local
public interface BoqCancelLocal extends ActionHandlerLocal
{
public String actionHandler(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
package ibase.webitm.ejb.dis;
import ibase.webitm.utility.ITMException;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
import javax.ejb.Remote;
@Remote
public interface BoqCancelRemote extends ActionHandlerRemote
{
public String actionHandler(String tranID, String xtraParams, String forcedFlag) throws RemoteException,ITMException;
}
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