Commit 6c40fce6 authored by ssalve's avatar ssalve

Sarita : Done changes to set userInfo on 2nd JAN 2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177487 ce508802-f39f-4f6c-b175-0d175dae99d5
parent ec898dca
......@@ -16,11 +16,15 @@
}
else
{
CustomerDetails customerDetail = new CustomerDetails();
//added and replace by sarita on 2nd JAN 2018 to set userinfo
//CustomerDetails customerDetail = new CustomerDetails();
CustomerDetails customerDetail = new CustomerDetails(userInfo);
ArrayList custList = customerDetail.getCustomerDetails(custCode);
String custName = (String) custList.get(0);
System.out.println("custName inside jsp ::: ["+ custName +"]");
String imgPath = customerDetail.getCustomerImage(custCode.trim(), custName.trim());
System.out.println("custName inside jsp ::: ["+ custName +"]");
//added and replace by sarita on 2nd JAN 2018 to set userinfo
//String imgPath = customerDetail.getCustomerImage(custCode.trim(), custName.trim());
String imgPath = customerDetail.getCustomerImage(custCode.trim(), custName.trim(),userInfo);
System.out.println("imgPath inside jsp ::: ["+ imgPath +"]");
%>
<!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