Commit 00b33388 authored by smestry's avatar smestry

added new jsp file of customer details and item details in side panel.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103964 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e1d3801a
......@@ -7,8 +7,8 @@
String custCode = (String) request.getParameter("cust_code");
System.out.println("custCode ======>>["+ custCode +"]");
CustomerListBean customerListBean = new CustomerListBean();
ArrayList custList = customerListBean.getCustomerDetails(custCode);
CustomerDetailBean customerDetailBean = new CustomerDetailBean();
ArrayList custList = customerDetailBean.getCustomerDetails(custCode);
System.out.println("custList inside jsp ::: ["+ custList +"]");
%>
<!DOCTYPE html>
......
......@@ -6,11 +6,11 @@
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 +"]");
ItemListBean itemListBean = new ItemListBean();
ArrayList itemList = itemListBean.getItemListDetails(item);
ItemDetailBean itemDetailBean = new ItemDetailBean();
ArrayList itemList = itemDetailBean.getItemListDetails(item);
System.out.println("itemList inside jsp ::: ["+ itemList +"]");
String docList = itemListBean.getDocId(item);
String docList = itemDetailBean.getDocId(item);
System.out.println("itemList inside jsp docList::: ["+ docList +"]");
%>
<!DOCTYPE html>
......
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