Commit d30c579b authored by sbade's avatar sbade

Added Pack Ref field in View


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93036 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 70f7b374
......@@ -119,7 +119,8 @@
<th class="thClass" nowrap>Batch No</th>
<th class="thClass" nowrap>Dimention</th>
<th class="thClass" nowrap>Quant Per Art</th>
<th class="thClass" nowrap>Batch Size</th>
<th class="thClass" nowrap>Batch Size</th>
<th class="thClass" nowrap>Pack Ref</th> <!-- added by swati bade on 09-May-2013-->
</thead>
<%
......@@ -256,6 +257,9 @@
<td align = "center"><font size="-1"><%= ((stkHlpBn.dimention != null && stkHlpBn.dimention.equals("")) || (stkHlpBn.dimention == null)) ? "-" : stkHlpBn.potency %></font></td>
<td align = "right"><font size="-1"><%= ((stkHlpBn.qtyPerArt != null && stkHlpBn.qtyPerArt.trim().equals("")) || (stkHlpBn.qtyPerArt == null)) ? "0.000" : df.format(Double.parseDouble(stkHlpBn.qtyPerArt)) %></font></td>
<td align = "center"><font size="-1"><%= ((stkHlpBn.batchSize != null && stkHlpBn.batchSize.equals("")) || (stkHlpBn.batchSize == null)) ? "-" : stkHlpBn.batchSize %></font></td>
<!-- start of code added by swati bade on 09-May-2013 for pack_ref input-->
<td align = "center"><font size="-1"><%= ((stkHlpBn.packRef != null && stkHlpBn.packRef.equals("")) || (stkHlpBn.packRef == null)) ? "-" : stkHlpBn.packRef %></font></td>
<!-- end of code added by swati bade on 09-May-2013-->
</tr>
<%
prevTotQuant = totQuant;
......
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