Commit d95c5d7b authored by kdabholkar's avatar kdabholkar

commited changes of userinfo

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177419 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5deb20a0
......@@ -69,8 +69,13 @@ public class SorderWizHandlerServlet extends HttpServlet
InitialContext ctx = new InitialContext( new AppConnectParm().getProperty() );
sordBeanObj = (SorderWizardEJBRemote) ctx.lookup("ibase/SorderWizardEJB/remote");
SalesOrderICRemote sordICObj = null;
if(userInfo != null)
{
sordICObj = (SalesOrderICRemote) ctx.lookup("ibase/SalesOrderIC/remote");
sordICObj.setUserInfo(userInfo);
action = checkNullAndTrim(request.getParameter("ACTION"));
System.out.println("Action ["+action+"]");
......@@ -106,8 +111,7 @@ public class SorderWizHandlerServlet extends HttpServlet
objContext = checkNullAndTrim(request.getParameter("OBJ_CONTEXT"));
editFlag = checkNullAndTrim(request.getParameter("EDIT_FLAG"));
SalesOrderICRemote sordICObj = null;
sordICObj = (SalesOrderICRemote) ctx.lookup("ibase/SalesOrderIC/remote");
result = sordICObj.itemChanged(currXmlDataStr, hdrXmlDataStr, allXmlDataStr, objContext, currentColumn, editFlag, "");
}
else if("ITEM_CODE".equalsIgnoreCase(field))
......
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