Commit 0de4e01f authored by kdabholkar's avatar kdabholkar

New Changes Added regarding edit tax calculation window

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177917 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4a4219a1
......@@ -213,7 +213,7 @@ public class SorderWizBean
return details;
}*/
public String SaveSorderDetail(String str) throws ITMException
public String SaveSorderDetail(String str,String xmlStringFile) throws ITMException
{
String details = null;
SorderWizardEJBRemote sorderWizRemote = null;
......@@ -221,7 +221,7 @@ public class SorderWizBean
{
InitialContext ctx = new InitialContext( new AppConnectParm().getProperty() );
sorderWizRemote = (SorderWizardEJBRemote) ctx.lookup("ibase/SorderWizardEJB/remote");
details = sorderWizRemote.SaveSorderDetail(str);
details = sorderWizRemote.SaveSorderDetail(str,xmlStringFile);
}
catch (Exception e)
{
......@@ -435,4 +435,42 @@ public class SorderWizBean
}
//Added by Kaustubh on 22 Dec 2017 end
//Added by Kaustubh on 6 Jan 2018 start
public String getTaxXml(String empCode, String siteCode, String itemCode,String lineNo)throws ITMException
{
String taxData = "";
SorderWizardEJBRemote sorderWizRemote = null;
try
{
System.out.println("In Method : [getTaxData]"+empCode);
System.out.println("FormNo::"+siteCode+"dbid::"+itemCode);
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.getTaxXml(empCode,siteCode,itemCode,lineNo);
}
catch (Exception e)
{
throw new ITMException(e);
}
finally
{
if ( sorderWizRemote != null )
{
sorderWizRemote = null;
}
}
return taxData;
}
//Added by Kaustubh on 6 Jan 2018 start
}
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