Commit c9f35f11 authored by manohar's avatar manohar

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

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

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91146 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fa3a858e
/*******************************************
Developed Date 3/9/2009
********************************************/
package ibase.webitm.ejb.sys;
import java.util.*;
import java.sql.*;
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 javax.xml.rpc.ParameterMode;
import ibase.utility.CommonConstants;
import java.util.*;
import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException;
import org.w3c.dom.*;
import ibase.webitm.utility.GenericUtility ;
import ibase.scheduler.utility.interfaces.Schedule;
import java.util.Date;
import java.text.SimpleDateFormat;
//import org.apache.commons.logging.LogFactory;
public class FinChargeCalcPrc implements Schedule
{
ibase.utility.GenericUtility genericUtility = new ibase.utility.GenericUtility();
public String schedule( HashMap map )throws RemoteException, ITMException
{
return "";
}
public String schedule( String scheduleParamXML )throws RemoteException, ITMException
{
PreparedStatement pstmt = null ;
ResultSet rs = null ;
Connection conn=null;
String sql="";
String userInfoList = null;
String isIntractive = null;
String objName = null;
String downloadLoc = null;
String varValue = "",varvalue2 = "",varvalue1="",drnoteDateStr = "";
//String addlValue =null;
//String addlValue = "";
Timestamp frDate = null ,currDate=null,addlValueTm =null;//addlValue = null;
SimpleDateFormat currAppdate = null;
String lsFromdateStr ="",siteCode = "",retString="",xtraParams="",despid = "",addlValueMinFin="",varValueMinFin="",addlValueStr="",frDateStr = "";
Timestamp lsFromdateDt = null,dateValue = null,addlValue=null;
ArrayList paramListArr = new ArrayList();
double timdifferance = 0.00;
StringBuffer filterString = null;
filterString = new StringBuffer();
StringTokenizer stringTokenizer = null;
String varName = "";
try
{
if( conn == null )
{
ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB("DriverITM");
conn.setAutoCommit(false);
}
//System.out.println(" scheduleParamXML [" + scheduleParamXML + "]");
Document userInfoDom = new ibase.utility.GenericUtility().parseString( scheduleParamXML );
NodeList paramList = userInfoDom.getElementsByTagName( "SCHEDULE" );
Node currDetail = null ;
int noOfParam = paramList.getLength();
//System.out.println("noOfParam>>>>>"+noOfParam);
for( int paramCnt = 0; paramCnt < noOfParam ; paramCnt++ )
{
currDetail = paramList.item(paramCnt);
siteCode = currDetail.getAttributes().getNamedItem("id").getNodeValue();
}
// code to be migrate for itmdefault
java.sql.Timestamp drnoteDate = new java.sql.Timestamp( System.currentTimeMillis() );
drnoteDateStr = genericUtility.getValidDateString(drnoteDate.toString(),genericUtility.getDBDateFormat(),genericUtility.getApplDateFormat());
//System.out.println("drnoteDate>>>"+drnoteDate);
sql="select var_value, addl_value "
+" from finparm "
+" where var_name='FIN_CHARGE_DATE' "
+" and prd_code='999999' " ;
pstmt = conn.prepareStatement( sql );
rs = pstmt.executeQuery();
if( rs.next() )
{
varValue = rs.getString("var_value")==null?"":rs.getString("var_value");
addlValueStr = rs.getString("addl_value") ;
}
//System.out.println(">>>>>>>>>>>>value>>>>>>>" + varValue);
//System.out.println(">>>>>>>>>>>>addlValue>>>>>>>" + addlValueStr);
rs.close();
rs=null;
pstmt.close();
pstmt = null;
if(varValue==null || varValue.trim().length()==0)
{
varValue = "P";
}
if( "P".equalsIgnoreCase( varValue ) && addlValue != null )
{
addlValueStr = genericUtility.getValidDateString(addlValue.toString(),genericUtility.getDBDateFormat(),genericUtility.getApplDateFormat());
// 12/09/09 manoharan first change to db date format
frDateStr = genericUtility.getValidDateString(addlValueStr.toString(), genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat());
// end 12/09/09 manoharan first change to db date format
frDate = java.sql.Timestamp.valueOf(frDateStr + " 00:00:00");
}else if( "U".equalsIgnoreCase( varValue ) )
{
frDate =null;
}
else if( "F".equalsIgnoreCase( varValue ) )
{
sql=" select fr_date from acctprd where code = ( select acct_prd from parameter )" ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if( rs.next() )
{
frDate = rs.getTimestamp("fr_date");
}
//System.out.println("frDate>>>>>>>>"+frDate);
frDateStr = genericUtility.getValidDateString(frDate.toString(),genericUtility.getDBDateFormat(), genericUtility.getApplDateFormat());
//System.out.println("frDateStr>>>>>>>>"+frDateStr);
rs.close();
rs=null;
pstmt.close();
pstmt=null;
sql="select var_value, addl_value from finparm "
+" where prd_code = '999999' and var_name ='FINCHG_START_DATE' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if( rs.next() )
{
varvalue1 = rs.getString("var_value");
varvalue2 = rs.getString("addl_value");
}
//System.out.println("varvalue1>>>>>>>>"+varvalue1);
//System.out.println("varvalue2>>>>>>>>"+varvalue2);
rs.close();
rs=null;
pstmt.close();
pstmt=null;
/*if(varvalue2 == null || varvalue2.trim().length()== 0 )
{
lsFromdateStr = varvalue1 ;
}
else
{
lsFromdateStr = varvalue1 + varvalue2 ;
}*/
//lsFromdateStr = genericUtility.getValidDateString(lsFromdateStr,genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat());
//lsFromdateDt = java.sql.Timestamp.valueOf(lsFromdateStr + " 00:00:00");
/*if ( !"NULLFOUND".equalsIgnoreCase( lsFromdateStr ) && (lsFromdateStr.trim().length() > 0))
{
frDateStr = genericUtility.getValidDateString(frDate.toString(),genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat());
//frDate = java.sql.Timestamp.valueOf(frDateStr + " 00:00:00");
timdifferance = genericUtility.timeDiff(frDate,lsFromdateDt);
if(timdifferance <0)
{
frDateStr = lsFromdateStr ;
}
}*/
if ( varvalue2 !=null &&(varvalue2.trim().length() > 0) )
{
//System.out.println("varvalue2.toString()>>>>>>>>"+varvalue2.toString());
java.sql.Timestamp lsFromdateDate = Timestamp.valueOf(genericUtility.getValidDateString(varvalue2, genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
java.sql.Timestamp frDatedate = Timestamp.valueOf(genericUtility.getValidDateString(frDateStr.toString(), genericUtility.getApplDateFormat(), genericUtility.getDBDateFormat()) + " 00:00:00.0");
if(frDatedate.compareTo (lsFromdateDate) < 0 )
{
frDateStr = lsFromdateStr ;
frDateStr = genericUtility.getValidDateString(frDateStr.toString(),genericUtility.getDBDateFormat(),genericUtility.getApplDateFormat());
System.out.println("frDateStr>>>>>>>>"+frDateStr);
}
}
}
sql=" select var_value "
+ "from finparm "
+ " where var_name='TRANTYPE_FINCHRGCALC' "
+" and prd_code='999999' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if( rs.next() )
{
varValue = rs.getString("var_value")==null?"":rs.getString("var_value").trim();
}
rs.close();
rs=null;
pstmt.close();
pstmt = null;
sql=" select var_value,addl_value "
+ "from finparm "
+ " where var_name='MIN_FINCHG_AR' "
+" and prd_code='999999' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if( rs.next() )
{
varValueMinFin = rs.getString("var_value")==null?"":rs.getString("var_value").trim();
addlValueMinFin = rs.getString("addl_value")==null?"":rs.getString("addl_value").trim();
}
//System.out.println("varValueMinFin>>>>>>>>"+varValueMinFin);
//System.out.println("addlValueMinFin>>>>>>>>"+addlValueMinFin);
rs.close();
rs=null;
pstmt.close();
pstmt = null;
sql=" select var_value ,addl_value "
+ "from finparm "
+ " where var_name='ACCT_AR_FINCHG_AR' "
+" and prd_code='999999' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if( rs.next() )
{
varvalue1 = rs.getString("var_value")==null?"":rs.getString("var_value").trim();
varvalue2 = rs.getString("addl_value")==null?"":rs.getString("addl_value").trim();
}
//System.out.println("varvalue1>>>>>>>>"+varvalue1);
//System.out.println("varvalue2>>>>>>>>"+varvalue2);
rs.close();
rs=null;
pstmt.close();
pstmt = null;
// end of code
//sql = "select site_code from site " ;
//sql= "select * from disAUTONEARCHARGESITE
sql = " SELECT VAR_VALUE FROM FINPARM WHERE PRD_CODE='999999' AND VAR_NAME='AUTOFINCHARGESITE' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if(rs.next())
{
varName = rs.getString("var_value");
}
rs.close();
pstmt.close();
rs=null;
pstmt = null;
stringTokenizer = new StringTokenizer(varName ,",");
while(stringTokenizer.hasMoreElements())
{
filterString.append(stringTokenizer.nextToken()).append("\t");
filterString.append(frDateStr).append("\t");
filterString.append(drnoteDateStr).append("\t");
filterString.append(varValueMinFin + addlValueMinFin).append("\t");
filterString.append(drnoteDate).append("\t");
filterString.append(varvalue1).append("\t");
filterString.append(varvalue1).append("\t");
filterString.append("0").append("\t");
filterString.append("Z").append("\t");
filterString.append("Y").append("\t");
filterString.append("Y").append("\t");
filterString.append(varValue ).append("\t");
filterString.append("0").append("\t");
filterString.append("\n");
retString = callNvo( filterString.toString(), "finance_charge_calc", "pr_default_1", conn );
filterString.setLength(0);
}
}
catch(Exception e)
{
e.printStackTrace();
}
return "";
} // end of schedule
public String callNvo( String filterData, String objName, String serviceCode, Connection conn ) throws ITMException
{
String methodName = "";
String retString = "";
String serviceURI = "";
String actionURI = "";
String selectSql = "";
String businessObj = "",xtraParams = "";
PreparedStatement pStmt = null;
ResultSet rs = null;
try
{
//businessObj = "nvo_bo_finance_charge_calc";
selectSql = "SELECT comp_name FROM SYSTEM_EVENTS WHERE OBJ_NAME = ? AND service_code = ? ";
//System.out.println("\nselectSql :: "+selectSql);
pStmt = conn.prepareStatement(selectSql);
pStmt.setString(1,objName);
pStmt.setString(2,serviceCode);
rs = pStmt.executeQuery();
if ( rs.next() )
{
businessObj = rs.getString( "comp_name" );
}
System.out.println("\businessObj :: "+businessObj);
rs.close();
rs=null;
pStmt.close();
pStmt = null;
selectSql = "SELECT SERVICE_URI, METHOD_NAME FROM SYSTEM_EVENT_SERVICES WHERE SERVICE_CODE = ? ";
System.out.println("\nselectSql :: "+selectSql);
pStmt = conn.prepareStatement(selectSql);
pStmt.setString(1,serviceCode);
rs = pStmt.executeQuery();
if ( rs.next() )
{
serviceURI = rs.getString( "SERVICE_URI" );
methodName = rs.getString( "METHOD_NAME" );
}
rs.close();
rs=null;
pStmt.close();
pStmt = null;
System.out.println("\n serviceURI :: "+serviceURI);
System.out.println("\n methodName :: "+methodName);
actionURI = "http://NvoServiceurl.org/" + methodName;
System.out.println("\n actionURI :: "+actionURI);
Service service = new Service();
Call call = ( Call )service.createCall();
call.setTargetEndpointAddress(new java.net.URL(serviceURI));
call.setOperationName( new javax.xml.namespace.QName( "http://NvoServiceurl.org", methodName ) );
call.setUseSOAPAction(true);
call.setSOAPActionURI(actionURI);
Object[] aobj = new Object[4];
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "component_name"), XMLType.XSD_STRING, ParameterMode.IN);
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "tab_xml_data_1"), XMLType.XSD_STRING, ParameterMode.IN);
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "dummy"), XMLType.XSD_STRING, ParameterMode.IN);
call.addParameter( new javax.xml.namespace.QName("http://NvoServiceurl.org", "xtra_params"), XMLType.XSD_STRING, ParameterMode.IN);
aobj[0] = new String(businessObj);
aobj[1] = new String(filterData);
aobj[2] = new String( "" );
aobj[3] = new String( xtraParams );// passed blank as It can not be created from scheduler
call.setReturnType(XMLType.XSD_STRING);
retString = (String)call.invoke( aobj );
System.out.println("Return value [" + retString +"]"); // leave this
}
catch(Exception e)
{
e.printStackTrace();
throw new ITMException(e);
}
finally
{
try
{
if (pStmt != null )
{
pStmt.close();
pStmt = null;
}
}
catch(Exception e)
{e.printStackTrace();}
}
return retString ;
}
private Timestamp getCurrdateAppFormat()
{
String s = "";
Timestamp timestamp = null;
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
java.util.Date date = null;
timestamp = new Timestamp(System.currentTimeMillis());
//System.out.println(genericUtility.getDBDateFormat());
SimpleDateFormat simpledateformat = new SimpleDateFormat(genericUtility.getDBDateFormat());
date = simpledateformat.parse(timestamp.toString());
timestamp = Timestamp.valueOf(simpledateformat.format(date).toString() + " 00:00:00.0");
//System.out.println("timestamp is ==>"+timestamp);
}
catch(Exception exception)
{
System.out.println("Exception in getCurrdateAppFormat " + exception.getMessage());
}
return timestamp;
}
}
\ 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