Commit 4672586c authored by manohar's avatar manohar

This commit was generated by cvs2svn to compensate for changes in r59, which

included commits to RCS files with non-trunk default branches.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91124 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3ff10216
This diff is collapsed.
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import org.w3c.dom.*;
//import javax.ejb.EJBObject;
import java.sql.*;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
import javax.ejb.Local; // added for ejb3
@Local // added for ejb3
public interface FeedBackItmLocal extends ValidatorLocal //,EJBObject
{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1,Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
}
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import org.w3c.dom.*;
//import javax.ejb.EJBObject;
import java.sql.*;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface FeedBackItmRemote extends ValidatorRemote //,EJBObject
{
public String wfValData() throws RemoteException,ITMException;
public String wfValData(String xmlString, String xmlString1,String xmlString2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String wfValData(Document dom, Document dom1,Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged() throws RemoteException,ITMException;
}
package ibase.webitm.ejb.dis;
import java.rmi.RemoteException;
import ibase.webitm.utility.GenericUtility;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.Statement;
import java.sql.ResultSet;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.*;
import javax.ejb.*;
import ibase.webitm.ejb.*;
import org.w3c.dom.*;
import ibase.webitm.ejb.*;
import ibase.webitm.utility.ITMException;
import java.util.Calendar;
import java.util.Date;
import javax.xml.transform.*;
import javax.xml.transform.dom.*;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.Transformer;
import java.text.SimpleDateFormat;
import java.lang.String;
import ibase.utility.CommonConstants;
import java.util.*;
import java.text.*;
import java.io.*;
import org.w3c.dom.*;
import javax.xml.parsers.*;
import ibase.webitm.utility.*;
import ibase.system.config.*;
import javax.naming.InitialContext;
import ibase.webitm.utility.ITMException;
import ibase.webitm.utility.GenericUtility;
import java.io.File;
import ibase.system.config.ConnDriver;
//import org.apache.axis.Constants;
//import org.apache.axis.client.Call;
//import org.apache.axis.client.Service;
//import org.apache.axis.encoding.XMLType;
//import java.net.URL;
import javax.ejb.Stateless; // added for ejb3
@Stateless // added for ejb3
public class FeedBackPos extends ValidatorEJB implements FeedBackPosLocal,FeedBackPosRemote //SessionBean
{
/*public void ejbCreate() throws RemoteException, CreateException
{
}
public void ejbRemove()
{
}
public void ejbActivate()
{
}
public void ejbPassivate()
{
}*/
public String postSave() throws RemoteException,ITMException
{
return "";
}
public String postSaveRec(String xmlString1,String domId,String objContext,String editFlag, String xtraParams, String windowName, Connection conn)throws RemoteException,ITMException
{
String returnVal = "";
Document dom = null;
try
{
if (xmlString1 != null && xmlString1.trim().length() > 0)
{
dom = parseString(xmlString1);
returnVal = feedBackSingle(dom , editFlag, conn );
}
}
catch(Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
return returnVal;
}
private String feedBackSingle(Document dom , String editFlag, Connection conn ) throws RemoteException,ITMException
{
String retString = "";
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
Node currDetail = null;
String childNodeName = null;
Node childNode = null;
NodeList parentNodeList = null;
NodeList childNodeList = null;
Node parentNode = null;
int childNodeListLength;
PreparedStatement pstmt = null;
int ctr = 0;
String sql = "";
String despid = null;
String returnString = null;
ResultSet rs = null;
String userId ="";
String update_flag = null;
String errorId = null;
String errorType = null;
String errorDescr = null;
String requestId = "",actionCode="",actionStatus="",currDate="",preActCode="";
double serialNo= 0 ,count = 0,preSerial = 0,feedbkSteps = 0;
try
{
GenericUtility genericUtility = GenericUtility.getInstance();
conn.setAutoCommit(false);
SimpleDateFormat sdf = null;
sdf = new SimpleDateFormat(genericUtility.getDBDateFormat());
Timestamp currDateTs = new Timestamp(System.currentTimeMillis());
currDate = sdf.format(currDateTs).toString();
if("E".equalsIgnoreCase(editFlag)|| "A".equalsIgnoreCase(editFlag))
{
requestId = genericUtility.getColumnValue("req_id",dom);
actionCode= genericUtility.getColumnValue("action_code",dom);
actionStatus = genericUtility.getColumnValue("action_status",dom);
sql="select serial_no, feedbk_steps "
+" from feedbk_status where status_code = ? " ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,actionCode);
rs = pstmt.executeQuery();
if(rs.next())
{
serialNo = rs.getDouble("serial_no");
feedbkSteps = rs.getDouble("feedbk_steps");
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
sql="select count(1) from feedbk_single "
+" where req_id = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,requestId);
rs = pstmt.executeQuery();
if(rs.next())
{
count = rs.getInt(1);
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if(count>1)
{
sql="select o.action_code, s.serial_no "
+" from feedbk_single o, feedbk_status s "
+" where o.action_code = s.status_code "
+" and o.req_id = ? "
+" and s.serial_no =( "
+" select max(b.serial_no) from feedbk_single a, feedbk_status b "
+" where a.action_code = b.status_code "
+" and a.req_id = ? ) "
+" and rownum = 1 " ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,requestId);
pstmt.setString(2,requestId);
rs = pstmt.executeQuery();
if(rs.next())
{
preActCode = rs.getString(1)==null ? "":rs.getString(1);
preSerial = rs.getDouble(2);
}
else
{
preActCode="";
preSerial = 0;
}
rs.close();
rs = null;
pstmt.close();
pstmt = null;
if(!("C".equalsIgnoreCase(preActCode.substring(0,1))) && !("V".equalsIgnoreCase(preActCode.substring(0,1))) && preSerial <= serialNo )
{
if(feedbkSteps==2)
{
if("P".equalsIgnoreCase(actionStatus))
{
ctr=1;
}
else
{
ctr=2;
}
actionCode = actionCode.trim() + new Integer(ctr).toString() ;
}
sql="update ser_request "
+" set comp_stat = ? , "
+" comp_stat_dt = ? "
+" where req_id = ? " ;
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,actionCode);
pstmt.setTimestamp(2,currDateTs);
pstmt.setString(3,requestId);
pstmt.executeUpdate();
pstmt.close();
pstmt = null;
conn.commit();
}
}
}// end of IF
}
catch (Exception e)
{
try
{
conn.rollback();
e.printStackTrace();
}
catch(Exception e1)
{
e1.printStackTrace();
}
e.printStackTrace();
}
finally
{
try
{
if ( rs != null)
{
rs.close();
rs = null;
}
if ( pstmt != null)
{
pstmt.close();
pstmt = null;
}
}
catch ( Exception e )
{
e.printStackTrace();
}
}
return "" ;
}
private Timestamp getCurrdateAppFormat()
{
String s = "";
Timestamp timestamp = null;
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
java.util.Date date = null;
timestamp = new Timestamp(System.currentTimeMillis());
SimpleDateFormat simpledateformat = new SimpleDateFormat(genericUtility.getDBDateFormat());
date = simpledateformat.parse(timestamp.toString());
timestamp = Timestamp.valueOf(simpledateformat.format(date).toString() + " 00:00:00.0");
}
catch(Exception exception)
{
System.out.println("Exception in getCurrdateAppFormat " + exception.getMessage());
}
return timestamp;
}
}// end of feedbackPosEJB class
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import java.sql.Connection;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface FeedBackPosLocal extends ValidatorLocal //, EJBObject
{
public String postSave() throws RemoteException,ITMException;
public String postSaveRec(String xmlString1,String domId,String objContext,String editFlag, String xtraParams, String windowName, Connection conn)throws RemoteException,ITMException;
}
\ No newline at end of file
package ibase.webitm.ejb.dis;
import ibase.webitm.ejb.*;
import java.rmi.RemoteException;
//import javax.ejb.EJBObject;
import java.sql.Connection;
import ibase.webitm.utility.ITMException;
import javax.ejb.Remote; // added for ejb3
@Remote // added for ejb3
public interface FeedBackPosRemote extends ValidatorRemote //, EJBObject
{
public String postSave() throws RemoteException,ITMException;
public String postSaveRec(String xmlString1,String domId,String objContext,String editFlag, String xtraParams, String windowName, Connection conn)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