Commit f96bcc91 authored by nkhan's avatar nkhan

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104282 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6063d4d6
...@@ -2,7 +2,10 @@ ...@@ -2,7 +2,10 @@
<%@ page language="java" contentType="text/html; charset=ISO-8859-15" pageEncoding="UTF-8"%> <%@ page language="java" contentType="text/html; charset=ISO-8859-15" pageEncoding="UTF-8"%>
<% <%
System.out.println("@@@@@@@@@ In ItemList.jsp @@@@@@@@@@@@@@@@"); System.out.println("@@@@@@@@@ In ItemList.jsp @@@@@@@@@@@@@@@@");
ibase.utility.UserInfoBean userInfo = ( ibase.utility.UserInfoBean )session.getAttribute( "USER_INFO" );
if(userInfo != null)
{
String item = ((String) request.getParameter("item_code__ord") == null) ? (String) request.getParameter("item_code") : (String) request.getParameter("item_code__ord"); String item = ((String) request.getParameter("item_code__ord") == null) ? (String) request.getParameter("item_code") : (String) request.getParameter("item_code__ord");
System.out.println("itemList item ========>> ["+ item +"]"); System.out.println("itemList item ========>> ["+ item +"]");
...@@ -88,4 +91,9 @@ ...@@ -88,4 +91,9 @@
</body> </body>
</html> </html>
<% } %> <% }
\ No newline at end of file }
else
{
out.print("Invalid Session");
}%>
\ No newline at end of file
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