Commit d83a2399 authored by kdabholkar's avatar kdabholkar

commit changes for group scheme of sorder wizard

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177375 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c9f02fd6
......@@ -395,4 +395,44 @@ public class SorderWizBean
//Added by Kaustubh on 4 Dec 2017 end
//Added by Kaustubh on 22 Dec 2017 start
public String getSchemeDetail( String xmlData, String formNo, UserInfoBean userInfo,String objName) throws ITMException
{
String taxData = "";
SorderWizardEJBRemote sorderWizRemote = null;
try
{
System.out.println("In Method : [getTaxData]"+xmlData);
System.out.println("userInfo::"+userInfo);
System.out.println("ObjName ::"+objName);
InitialContext ctx = new InitialContext( new AppConnectParm().getProperty() );
sorderWizRemote = (ibase.webitm.ejb.wms.SorderWizardEJBRemote) ctx.lookup("ibase/SorderWizardEJB/remote");
//List = sorderWizRemote.getList(param,field,values);
taxData = sorderWizRemote.getSchemeDetail(xmlData,formNo,userInfo,objName);
String xslFileName = getXSLFileName( "sorderWiz_Scheme_wiz_" + this.user_lang + "_" + this.user_country + ".xsl" );
taxData = (genericUtility).transformToString( xslFileName, taxData, CommonConstants.APPLICATION_CONTEXT + File.separator + "temp", "Output", ".html" );
System.out.println("SchemeDetails ::"+taxData);
}
catch (Exception e)
{
throw new ITMException(e);
}
finally
{
if ( sorderWizRemote != null )
{
sorderWizRemote = null;
}
}
return taxData;
}
//Added by Kaustubh on 22 Dec 2017 end
}
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