Commit fe739dbd authored by sbehera's avatar sbehera

Newly Added Transorter Bank


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93070 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 727dffe1
/********************************************************
Title : TransporterBank EJB
Date : 06-May-2013
Author: Somanath Behera
********************************************************/
package ibase.webitm.ejb.fin.tranbank;
import ibase.system.config.ConnDriver;
import ibase.webitm.ejb.ValidatorEJB;
import ibase.webitm.utility.GenericUtility;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import org.w3c.dom.Document;
import org.w3c.dom.NodeList;
import org.w3c.dom.Node;
import javax.ejb.Stateless;
@Stateless
public class TransporterBank extends ValidatorEJB implements TransporterBankLocal, TransporterBankRemote {
public TransporterBank() {
System.out.println("^^^^^^^ inside TransporterBank ^^^^^^^");
}
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException {
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String errString = "";
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
String childNodeName = "";
try {
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
if (xmlString2.trim().length() > 0) {
dom2 = parseString("<Root>" + xmlString2 + "</Root>");
}
if (objContext != null && Integer.parseInt(objContext) == 1) {
parentNodeList = dom2.getElementsByTagName("Header0");
parentNode = parentNodeList.item(1);
childNodeList = parentNode.getChildNodes();
for (int x = 0; x < childNodeList.getLength(); x++) {
childNode = childNodeList.item(x);
childNodeName = childNode.getNodeName();
if (childNodeName.equalsIgnoreCase("Detail1")) {
errString = wfValData(dom, dom1, dom2, "1", editFlag, xtraParams);
if (errString != null && errString.trim().length() > 0)
break;
} else if (childNodeName.equalsIgnoreCase("Detail2")) {
errString = wfValData(dom, dom1, dom2, "2", editFlag, xtraParams);
break;
}
}
}
else {
errString = wfValData(dom, dom1, dom2, objContext, editFlag, xtraParams);
}
} catch (Exception e) {
System.out.println("Exception : Inside TransporterBank wfValData Method ..> " + e.getMessage());
throw new ITMException(e);
}
return (errString);
}
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException {
GenericUtility genericUtility;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
Node childNode = null;
int ctr = 0, currentFormNo = 0, childNodeListLength = 0, cnt = 0;
String childNodeName = null;
String errString = "";
String errCode = "";
Connection conn = null;
PreparedStatement pStmt = null;
ResultSet rs = null;
String sql = "";
String userId = "";
String tranCode="";
try {
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
connDriver = null;
userId = getValueFromXTRA_PARAMS(xtraParams, "loginCode");
genericUtility = GenericUtility.getInstance();
if (objContext != null && objContext.trim().length() > 0) {
currentFormNo = Integer.parseInt(objContext);
}
switch (currentFormNo) {
case 1:
parentNodeList = dom.getElementsByTagName("Detail1");
parentNode = parentNodeList.item(0);
childNodeList = parentNode.getChildNodes();
childNodeListLength = childNodeList.getLength();
for (ctr = 0; ctr < childNodeListLength; ctr++) {
childNode = childNodeList.item(ctr);
childNodeName = childNode.getNodeName();
if (childNodeName.equalsIgnoreCase("tran_code")) {
tranCode = genericUtility.getColumnValue("tran_code", dom);
tranCode = tranCode == null ? "" : tranCode.trim();
if (tranCode.length() == 0) {
errCode = "VMTNCDNL";
errString = getErrorString("tran_code", errCode, userId);
break;
} else {
sql = "select count(1) from transporter where tran_code = ?";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, tranCode);
rs = pStmt.executeQuery();
if (rs.next()) {
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pStmt.close();
pStmt = null;
if (cnt == 0) {
errCode = "VTTNCDNF";
errString = getErrorString("tran_code", errCode, userId);
break;
}
}
} else if (childNodeName.equalsIgnoreCase("bank_code__ben")) {
String bankCodeBen = genericUtility.getColumnValue(
"bank_code__ben", dom);
tranCode = genericUtility.getColumnValue("tran_code",
dom);
bankCodeBen = bankCodeBen == null ? "" : bankCodeBen
.trim();
if (bankCodeBen.length() == 0) {
errCode = "VTBCBNNL";
errString = getErrorString("bank_code__ben",
errCode, userId);
break;
} else {
if(!editFlag.equals("E")){
sql = "select count(1) from transporter_bank where tran_code = ? and bank_code__ben= ? ";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, tranCode);
pStmt.setString(2, bankCodeBen);
rs = pStmt.executeQuery();
if (rs.next()) {
cnt = rs.getInt(1);
}
rs.close();
rs = null;
pStmt.close();
pStmt = null;
if (cnt > 0) {
errCode = "VMTBALE";
errString = getErrorString("tran_code",
errCode, userId);
break;
}
}
}
}else if (childNodeName.equalsIgnoreCase("bank_name__ben")) {
String bankNameBen = genericUtility.getColumnValue("bank_name__ben", dom);
bankNameBen = bankNameBen == null ? "" : bankNameBen.trim();
if (bankNameBen.length() == 0) {
errCode = "VTBNBNNL";
errString = getErrorString("bank_name__ben", errCode, userId);
break;
}
}else if (childNodeName.equalsIgnoreCase("bank_acct_no__ben")) {
String bankActNo = genericUtility.getColumnValue("bank_acct_no__ben", dom);
bankActNo = bankActNo == null ? "" : bankActNo.trim();
if (bankActNo.length() == 0) {
errCode = "VTBANNL";
errString = getErrorString("bank_acct_no__ben", errCode, userId);
break;
}
}else if (childNodeName.equalsIgnoreCase("active_yn")) {
String active = genericUtility.getColumnValue("active_yn", dom);
active = active == null ? "" : active.trim();
if (active.length() == 0) {
errCode = "VTACTNL";
errString = getErrorString("active_yn", errCode, userId);
break;
}
}
}//end of for
}//end of switch
} catch (Exception e) {
e.printStackTrace();
errString = e.getMessage();
throw new ITMException(e);
} finally {
try {
if (conn != null) {
conn.close();
}
conn = null;
} catch (Exception d) {
d.printStackTrace();
}
}
return errString;
}
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException {
Document dom = null;
Document dom1 = null;
Document dom2 = null;
String valueXmlString = "";
try {
dom = parseString(xmlString);
dom1 = parseString(xmlString1);
if (xmlString2.trim().length() > 0) {
dom2 = parseString(xmlString2);
}
valueXmlString = itemChanged(dom, dom1, dom2, objContext, currentColumn, editFlag, xtraParams);
} catch (Exception e) {
System.out.println("Exception : itemChanged :==>\n" + e.getMessage());
throw new ITMException(e);
}
return valueXmlString;
}
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException {
GenericUtility genericUtility;
StringBuffer valueXmlString = new StringBuffer();
Connection conn = null;
PreparedStatement pStmt = null;
ResultSet rs = null;
String sql = "";
int currentFormNo = 0;
String tranCode = "", transporterName = "";
try {
genericUtility = GenericUtility.getInstance();
ConnDriver conndriver = new ConnDriver();
conn = conndriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
conndriver = null;
genericUtility = GenericUtility.getInstance();
if (objContext != null && objContext.trim().length() > 0)
currentFormNo = Integer.parseInt(objContext);
valueXmlString = new StringBuffer("<?xml version=\"1.0\"?><Root><header><editFlag>");
valueXmlString.append(editFlag).append("</editFlag></header>");
switch (currentFormNo) {
case 1:
valueXmlString.append("<Detail1>");
if (currentColumn.trim().equalsIgnoreCase("tran_code")) {
tranCode = genericUtility.getColumnValue("tran_code", dom);
transporterName = "";
tranCode = tranCode == null ? "" : tranCode.trim();
if (tranCode.length() > 0) {
sql = "select tran_name from transporter where tran_code = ?";
pStmt = conn.prepareStatement(sql);
pStmt.setString(1, tranCode);
rs = pStmt.executeQuery();
if (rs.next()) {
transporterName = rs.getString(1);
}
transporterName = (transporterName == null) ? "" : transporterName.trim();
rs.close();
pStmt.close();
rs = null;
pStmt = null;
}
valueXmlString.append("<tran_name>").append(transporterName).append("</tran_name>\r\n");
}
valueXmlString.append("</Detail1 >");
break;
}
valueXmlString.append("</Root>");
} catch (Exception e) {
e.printStackTrace();
throw new ITMException(e);
} finally {
try {
if (conn != null) {
conn.close();
conn = null;
}
} catch (Exception e1) {
e1.printStackTrace();
}
}
return valueXmlString.toString();
}
public String wfValData() throws RemoteException, ITMException {
return "";
}
public String wfValData(Document dom, Document dom1, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException {
return "";
}
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag) throws RemoteException, ITMException {
return "";
}
public String itemChanged() throws RemoteException, ITMException {
return "";
}
public String itemChanged(Document dom, Document dom1, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException {
return "";
}
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag) throws RemoteException, ITMException {
return "";
}
}
\ No newline at end of file
package ibase.webitm.ejb.fin.tranbank;
import java.rmi.RemoteException;
import ibase.webitm.utility.ITMException;
import org.w3c.dom.Document;
import ibase.webitm.ejb.ValidatorLocal;
import javax.ejb.Local;
@Local
public interface TransporterBankLocal extends ValidatorLocal {
public String wfValData() throws RemoteException, ITMException;
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String itemChanged() throws RemoteException, ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.fin.tranbank;
import java.rmi.RemoteException;
import org.w3c.dom.Document;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote;
import ibase.webitm.ejb.ValidatorRemote;
@Remote
public interface TransporterBankRemote extends ValidatorRemote {
public String wfValData() throws RemoteException, ITMException;
public String wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String itemChanged() throws RemoteException, ITMException;
public String itemChanged(String xmlString, String xmlString1, String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException;
public String itemChanged(Document dom, Document dom1, Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException, ITMException;
}
\ 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