removed insurance field in inward report
This commit is contained in:
parent
7ffc33c0fb
commit
0851068876
@ -225,6 +225,9 @@ table.dataTable thead > tr > td.sorting {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<span style="color:red;">*Insurance field not included </span>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="box-body">
|
<div class="box-body">
|
||||||
<div class = "table-responsive">
|
<div class = "table-responsive">
|
||||||
@ -248,7 +251,6 @@ table.dataTable thead > tr > td.sorting {
|
|||||||
<th>Discount (<i class="fa fa-rupee " ></i>)</th>
|
<th>Discount (<i class="fa fa-rupee " ></i>)</th>
|
||||||
<th>Freight (<i class="fa fa-rupee " ></i>)</th>
|
<th>Freight (<i class="fa fa-rupee " ></i>)</th>
|
||||||
<th>Package (<i class="fa fa-rupee " ></i>)</th>
|
<th>Package (<i class="fa fa-rupee " ></i>)</th>
|
||||||
<th>Insurance (<i class="fa fa-rupee " ></i>)</th>
|
|
||||||
<th>Total (<i class="fa fa-rupee "></i>)</th>
|
<th>Total (<i class="fa fa-rupee "></i>)</th>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
@ -265,7 +267,7 @@ table.dataTable thead > tr > td.sorting {
|
|||||||
$tot_dis = 0;
|
$tot_dis = 0;
|
||||||
$tot_frg = 0;
|
$tot_frg = 0;
|
||||||
$tot_pac = 0;
|
$tot_pac = 0;
|
||||||
$tot_inc = 0;
|
//$tot_inc = 0;
|
||||||
$tot_tot = 0;
|
$tot_tot = 0;
|
||||||
|
|
||||||
foreach($purchase as $rel)
|
foreach($purchase as $rel)
|
||||||
@ -312,9 +314,7 @@ table.dataTable thead > tr > td.sorting {
|
|||||||
<td style="text-align:right"><span><?php
|
<td style="text-align:right"><span><?php
|
||||||
$tot_pac= $tot_pac + $rel->Package;
|
$tot_pac= $tot_pac + $rel->Package;
|
||||||
echo $rel->Package;?></span></td>
|
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
|
<td style="text-align:right"><span><?php
|
||||||
$tot_tot= $tot_tot + round($rel->total,2);
|
$tot_tot= $tot_tot + round($rel->total,2);
|
||||||
?>
|
?>
|
||||||
@ -454,16 +454,7 @@ table.dataTable thead > tr > td.sorting {
|
|||||||
|
|
||||||
?>
|
?>
|
||||||
</strong></td>
|
</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">
|
<td class="amount" style="text-align:right">
|
||||||
<strong>
|
<strong>
|
||||||
<?php
|
<?php
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user