Commit 12a7db01 authored by smestry's avatar smestry

Updated the jsp for customer details in side panel


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104103 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0a1be95b
......@@ -8,8 +8,16 @@
System.out.println("custCode ======>>["+ custCode +"]");
CustomerDetailBean customerDetailBean = new CustomerDetailBean();
ArrayList custList = customerDetailBean.getCustomerDetails(custCode);
System.out.println("custList inside jsp ::: ["+ custList +"]");
String custName = (String) custList.get(11);
System.out.println("custName inside jsp ::: ["+ custName +"]");
String imgPath = customerDetailBean.getCustomerImage(custCode, custName);
System.out.println("imgPath inside jsp ::: ["+ imgPath +"]");
%>
<!DOCTYPE html>
<html>
......@@ -19,8 +27,18 @@
<link type="text/css" rel="stylesheet" href="/ibase/webitm/css/sidePanelDisplay.css">
</head>
<body>
<div class="firstDiv">Customer Details:</div>
<!-- <div class="firstDiv">Customer Details:</div> -->
<table class="itemtbl" id="itemtbl" cellpadding="0" cellspacing="0">
<tr>
<td class="highlight rght" colspan="2">
<div style = "float: left;">
<img src=<%=imgPath%> alt="Image Not Found" style="width: 30px;"></img>
</div>
<div class="highlight strong-text" style = "float: left;margin-top: 8px;margin-left: 10px;">
<%= custName%>
</div>
</td>
</tr>
<tr>
<td class="highlight strong-text">CUSTOMER OPEN ORDERS<strong/></td>
<td class="highlight rght"><%= custList.get(0) %></td>
......
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