Commit 075df503 authored by wansari's avatar wansari

added methods in interface for Purchase Wizard as moved to EJB from servlet


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103907 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 98df8080
...@@ -26,13 +26,18 @@ public interface DDPorderWizEJBLocal extends ValidatorLocal ...@@ -26,13 +26,18 @@ public interface DDPorderWizEJBLocal extends ValidatorLocal
{ {
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) 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 wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException; public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException; public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String getList(String field,String extra) throws RemoteException,ITMException; public String getList(String field,String[] values,String extra,String details) throws RemoteException,ITMException;
public String getPorderDetails(Document dom1,Document dom2,String itemCode,String quantity,String dlvDate, int ctr ,Connection conn); public String getPorderDetails(Document dom1,Document dom2,String itemCode,String quantity,String dlvDate, int ctr ,Connection conn);
public String getPoDetails(String obj,String random) throws RemoteException,ITMException; public String getPoDetails(String obj,String random) throws RemoteException,ITMException;
public String getSKUDetail(String itemParentData,String itemDLVDate,String paraData,String otherDetails) throws RemoteException,ITMException;
public String getPurcDetail1(String purcOrder,String flag)throws RemoteException,ITMException;
public String getPorderDetail2(String siteCode,String empCodeFrmReq,String purcOrder,String flag)throws RemoteException,ITMException;
public String validatePorder(String purcOrder)throws RemoteException,ITMException;
public String savePorderHeader(String str,String siteCode)throws RemoteException,ITMException;
public String savePorderDetail(String str)throws RemoteException,ITMException;
public String resetPorderHeader(String str)throws RemoteException,ITMException;
} }
...@@ -24,13 +24,18 @@ public interface DDPorderWizEJBRemote extends ValidatorRemote ...@@ -24,13 +24,18 @@ public interface DDPorderWizEJBRemote extends ValidatorRemote
{ {
public String wfValData(String xmlString, String xmlString1, String xmlString2, String objContext, String editFlag, String xtraParams) 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 wfValData(Document dom, Document dom1, Document dom2, String objContext, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException; public String itemChanged(String xmlString, String xmlString1,String xmlString2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException; public String itemChanged(Document dom, Document dom1,Document dom2, String objContext, String currentColumn, String editFlag, String xtraParams) throws RemoteException,ITMException;
public String getList(String field,String extra) throws RemoteException,ITMException; public String getList(String field,String[] values,String extra,String details) throws RemoteException,ITMException;
public String getPorderDetails(Document dom1,Document dom2,String itemCode,String quantity, String dlvDate, int ctr ,Connection conn); public String getPorderDetails(Document dom1,Document dom2,String itemCode,String quantity, String dlvDate, int ctr ,Connection conn);
public String getPoDetails(String obj,String random) throws RemoteException,ITMException; public String getPoDetails(String obj,String random) throws RemoteException,ITMException;
public String getSKUDetail(String itemParentData,String itemDLVDate,String paraData,String otherDetails) throws RemoteException,ITMException;
public String getPurcDetail1(String purcOrder,String flag)throws RemoteException,ITMException;
public String getPorderDetail2(String siteCode,String empCodeFrmReq,String purcOrder,String flag)throws RemoteException,ITMException;
public String validatePorder(String purcOrder)throws RemoteException,ITMException;
public String savePorderHeader(String str,String siteCode)throws RemoteException,ITMException;
public String savePorderDetail(String str)throws RemoteException,ITMException;
public String resetPorderHeader(String str)throws RemoteException,ITMException;
} }
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