Commit af263beb authored by smestry's avatar smestry

Updated the jsp file for Customer and Item Details in Side panel


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104463 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d5cb7a15
...@@ -26,7 +26,7 @@ if(userInfo != null) ...@@ -26,7 +26,7 @@ if(userInfo != null)
<head> <head>
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<title>Item Details</title> <title>Item Details</title>
<link type="text/css" rel="stylesheet" href="/ibase/webitm/css/sidePanelDisplay.css"> <link type="text/css" rel="stylesheet" href="/ibase/webitm/css/sidePanelDisplay.css">
<script type="text/javascript" src="/ibase/webitm/js/jquery-1.10.2.js"></script> <script type="text/javascript" src="/ibase/webitm/js/jquery-1.10.2.js"></script>
<script type="text/javascript" language="javascript" src="/ibase/webitm/js/sidePanelDisplay.js"></script> <script type="text/javascript" language="javascript" src="/ibase/webitm/js/sidePanelDisplay.js"></script>
...@@ -50,6 +50,7 @@ if(userInfo != null) ...@@ -50,6 +50,7 @@ if(userInfo != null)
} }
} }
</script> </script>
<body onload="getItemDescription();"> <body onload="getItemDescription();">
<div id="DBImage1" class="DBImage1"></div> <div id="DBImage1" class="DBImage1"></div>
...@@ -57,45 +58,83 @@ if(userInfo != null) ...@@ -57,45 +58,83 @@ if(userInfo != null)
<a class="prev" id="prev">&lsaquo;</a> <a class="prev" id="prev">&lsaquo;</a>
<a class="next" id="next">&rsaquo;</a> <a class="next" id="next">&rsaquo;</a>
</div> </div>
<div class="imtprnt"><span><%= itemList.get(0)%> <%= itemList.get(1)%></span></div> <div class="imtprnt"><span><%= itemList.get(0)%> <%= itemList.get(1)%></span></div>
<!-- <div class="firstDiv">Item Details:</div> --> <!-- <div class="firstDiv">Item Details:</div> -->
<table class="itemtbl" id="itemtbl" cellpadding="0" cellspacing="0"> <table class="itemtbl" id="itemtbl" cellpadding="0" cellspacing="0">
<tbody> <tbody>
<tr> <tr>
<td class="highlight rght" colspan="2" style="margin: 0;padding: 0;border-top: #e5e4e9 1px solid;border-bottom: #e5e4e9 1px solid;height: 40px;background: rgb(219, 217, 208);"> <td class="highlight rght tdClass" colspan="2" style="height: 40px; background: rgb(219, 217, 208);">
<div class="highlight " style = "float: left;padding-top: 2px;padding-left: 10px;font-size: 14px;"> <div class="highlight tdDivLft" style = "padding-top: 2px;"> Item Details: </div>
Item Details: </td>
</div>
</td>
</tr> </tr>
<tr> <tr>
<td class="highlight strong-text"> Color </td> <td class="highlight rght tdClass" colspan="2">
<td class="highlight rght"><%= itemList.get(2) %></td> <div class = "tdDivLft1"> <%= itemList.get(2) %> </div>
</tr> <div class="highlight tdDivRgt1"> <%= itemList.get(3) %> </div>
<tr> </td>
<td class="highlight strong-text">Size</td> </tr>
<td class="highlight rght"><%= itemList.get(3) %></td>
</tr> <tr>
<tr> <td class="highlight rght tdClass" colspan="2">
<td class="highlight strong-text">Customer's Item Code</td> <div class = "tdDivLft1"> <%= itemList.get(4) %> </div>
<td class="highlight rght"><%= itemList.get(4) %></td> <div class="highlight tdDivRgt1"> <%= itemList.get(5) %> </div>
</tr> </td>
<tr> </tr>
<td class="highlight strong-text">Item Description</td>
<td class="highlight rght"><%= itemList.get(5) %></td> <tr>
</tr> <td class="highlight rght tdClass" colspan="2">
<tr> <div class = "tdDivLft1"> <%= itemList.get(6) %> </div>
<td class="highlight strong-text">Item Stock</td> <div class="highlight tdDivRgt1"> <%= itemList.get(7) %> </div>
<td class="highlight rght"><%= itemList.get(6) %></td> </td>
</tr> </tr>
<tr>
<td class="highlight rght tdClass" colspan="2">
<div class = "tdDivLft1"> Unit </div>
<div class="highlight tdDivRgt1"> <%= itemList.get(8) %> </div>
</td>
</tr>
<tr>
<td class="highlight rght tdClass" colspan="2">
<div class = "tdDivLft1"> Quantity </div>
<div class="highlight tdDivRgt1"> <%= itemList.get(9) %> </div>
</td>
</tr>
<tr>
<td class="highlight rght tdClass" colspan="2">
<div class = "tdDivLft1"> Allocate Quantity </div>
<div class="highlight tdDivRgt1"> <%= itemList.get(10) %> </div>
</td>
</tr>
<tr>
<td class="highlight rght tdClass" colspan="2">
<div class = "tdDivLft1"> Hold Quantity </div>
<div class="highlight tdDivRgt1"> <%= itemList.get(11) %> </div>
</td>
</tr>
<tr>
<td class="highlight rght tdClass" colspan="2">
<div class = "tdDivLft1"> Available Quantity </div>
<div class="highlight tdDivRgt1"> <%= itemList.get(12) %> </div>
</td>
</tr>
</tbody> </tbody>
</table> </table>
</body> </body>
</html> </html>
<% } <%
} }
else }
{ else
out.print("Invalid Session"); {
}%> out.print("Invalid Session");
\ No newline at end of file }
%>
\ 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