Commit 2dcb042d authored by jshaikh's avatar jshaikh

Multi-tendency changes for sales-order,amendmnt and return, porder,...

Multi-tendency changes for sales-order,amendmnt and return, porder, adjusment-issue and receipt, indentreq

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179590 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8f9b308d
......@@ -7,6 +7,7 @@
package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException;
import ibase.utility.UserInfoBean;
import java.rmi.RemoteException;
import javax.ejb.Stateless;
import ibase.webitm.ejb.dis.adv.SOrderAmdConf;
......@@ -21,7 +22,9 @@ public class SOrderAmdConfWF implements SOrderAmdConfWFRemote, SOrderAmdConfWFLo
SOrderAmdConf sOrdAmdConf = null;
try {
UserInfoBean userInfo = new UserInfoBean(userInfoStr);
sOrdAmdConf = new SOrderAmdConf();
sOrdAmdConf.setUserInfo(userInfo);
errString = sOrdAmdConf.confirm(saleOrderAmd, xtraParams, forcedFlag);
if(errString != null && errString.trim().length() > 0)
{
......
......@@ -5,5 +5,5 @@ import javax.ejb.Local;
@Local
public interface SOrderAmdConfWFLocal {
public String confirm(String saleOrderAmd, String xtraParams, String forcedFlag) throws RemoteException, ITMException;
public String confirm(String saleOrderAmd, String xtraParams, String forcedFlag, String userInfoStr) throws RemoteException, ITMException;
}
......@@ -5,5 +5,5 @@ import javax.ejb.Remote;
@Remote
public interface SOrderAmdConfWFRemote {
public String confirm(String saleOrderAmd, String xtraParams, String forcedFlag) throws RemoteException, ITMException;
public String confirm(String saleOrderAmd, String xtraParams, String forcedFlag, String userInfoStr) 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