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 @@ ...@@ -7,6 +7,7 @@
package ibase.webitm.ejb.dis.adv; package ibase.webitm.ejb.dis.adv;
import ibase.webitm.utility.ITMException; import ibase.webitm.utility.ITMException;
import ibase.utility.UserInfoBean;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import javax.ejb.Stateless; import javax.ejb.Stateless;
import ibase.webitm.ejb.dis.adv.SOrderAmdConf; import ibase.webitm.ejb.dis.adv.SOrderAmdConf;
...@@ -21,7 +22,9 @@ public class SOrderAmdConfWF implements SOrderAmdConfWFRemote, SOrderAmdConfWFLo ...@@ -21,7 +22,9 @@ public class SOrderAmdConfWF implements SOrderAmdConfWFRemote, SOrderAmdConfWFLo
SOrderAmdConf sOrdAmdConf = null; SOrderAmdConf sOrdAmdConf = null;
try { try {
UserInfoBean userInfo = new UserInfoBean(userInfoStr);
sOrdAmdConf = new SOrderAmdConf(); sOrdAmdConf = new SOrderAmdConf();
sOrdAmdConf.setUserInfo(userInfo);
errString = sOrdAmdConf.confirm(saleOrderAmd, xtraParams, forcedFlag); errString = sOrdAmdConf.confirm(saleOrderAmd, xtraParams, forcedFlag);
if(errString != null && errString.trim().length() > 0) if(errString != null && errString.trim().length() > 0)
{ {
......
...@@ -5,5 +5,5 @@ import javax.ejb.Local; ...@@ -5,5 +5,5 @@ import javax.ejb.Local;
@Local @Local
public interface SOrderAmdConfWFLocal { 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; ...@@ -5,5 +5,5 @@ import javax.ejb.Remote;
@Remote @Remote
public interface SOrderAmdConfWFRemote { 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