Commit ebfaa7ab authored by mjadhav's avatar mjadhav

changes done for Inter comp Reconciliation


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99955 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5c78dfa8
......@@ -36,7 +36,7 @@ public String getPophelp(String sundryType){
return xmlStringPopHelp;
}
/*-----------------Added by mahendra on dated 17-11-2015 (Add autofilter provision to pophelp)---------------*/
public String getPophelp(String sundryType,String keyString){
try{
......@@ -58,6 +58,29 @@ public String getPophelp(String sundryType,String keyString){
return xmlStringPopHelp;
}
public String getPophelpForBankCode(String bankCode,String keyString){
try{
System.out.println("In getPophelp--->>["+bankCode+"]");
System.out.println("keyString :"+keyString);
ctx = new InitialContext();
reconcileObj = (InterCompReconcileProcessLocal)ctx.lookup("ibase/BankRecoWizICLocal/local");
xmlStringPopHelp=reconcileObj.getValuesForPopHelp(bankCode,keyString);
//System.out.println("xmlStringPopHelp=====>>["+xmlStringPopHelp+"]");
String xslFileName = getXSLFileName( "BankReconcilepop.xsl" );
reconcileObj=null;
// xmlStringPopHelp = ( new ibase.webitm.utility.GenericUtility() ).transformToString( xslFileName, xmlStringPopHelp, CommonConstants.APPLICATION_CONTEXT + File.separator + "temp", "Output", ".html" );
}
catch(Exception e){
e.printStackTrace();
}
return xmlStringPopHelp;
}
private String getXSLFileName( String xslFileName )throws ITMException
{
String retFileName = null;
......
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