removed insurance field in inward report

This commit is contained in:
gandhimathi 2018-03-08 08:44:55 +00:00
parent 7ffc33c0fb
commit 0851068876

View File

@ -225,6 +225,9 @@ table.dataTable thead > tr > td.sorting {
</div>
<span style="color:red;">*Insurance field not included </span>
<div class="box-body">
<div class = "table-responsive">
@ -248,7 +251,6 @@ table.dataTable thead > tr > td.sorting {
<th>Discount &nbsp;(<i class="fa fa-rupee " ></i>)</th>
<th>Freight &nbsp;(<i class="fa fa-rupee " ></i>)</th>
<th>Package &nbsp;(<i class="fa fa-rupee " ></i>)</th>
<th>Insurance &nbsp;(<i class="fa fa-rupee " ></i>)</th>
<th>Total &nbsp;(<i class="fa fa-rupee "></i>)</th>
</tr>
@ -265,7 +267,7 @@ table.dataTable thead > tr > td.sorting {
$tot_dis = 0;
$tot_frg = 0;
$tot_pac = 0;
$tot_inc = 0;
//$tot_inc = 0;
$tot_tot = 0;
foreach($purchase as $rel)
@ -312,9 +314,7 @@ table.dataTable thead > tr > td.sorting {
<td style="text-align:right"><span><?php
$tot_pac= $tot_pac + $rel->Package;
echo $rel->Package;?></span></td>
<td style="text-align:right"><span><?php
$tot_inc= $tot_inc + $rel->insurance;
echo $rel->insurance;?></span></td>
<td style="text-align:right"><span><?php
$tot_tot= $tot_tot + round($rel->total,2);
?>
@ -454,16 +454,7 @@ table.dataTable thead > tr > td.sorting {
?>
</strong></td>
<td class="amount" style="text-align:right">
<strong>
<?php
{
echo number_format($tot_inc,2,'.','');
}
?>
</strong></td>
<td class="amount" style="text-align:right">
<strong>
<?php