| Server IP : 162.214.74.102 / Your IP : 216.73.216.139 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_projetos/sopizzas/application/views/superadmin/ |
Upload File : |
<table class="table no-margin table-hover">
<thead>
<tr class="label-info labelinfo1">
<th class="text-center">Invoice No.</th>
<th class="text-center">Invoice Date.</th>
<th class="text-center">
Driver Name
</th>
<th class="text-center">
Billing Period
</th>
<th class="text-center">
Amount
<span class="shorting-action">
<!-- <i class="fa fa-sort-asc" aria-hidden="true"></i>
<i class="fa fa-sort-desc" aria-hidden="true"></i> -->
</span>
</th>
<th class="text-center">Action</th>
<th class="text-center"></th>
</tr>
</thead>
<tbody id="custom-table">
<?php if(is_array($InvoiceList) && sizeof($InvoiceList)>0){
foreach ($InvoiceList as $key => $value) {
$amount = $value['amount'];
$tip = $value['driver_tip'];
$TotalAmt = $amount + $tip;
$TotalAmt = number_format($TotalAmt,2);
?>
<tr >
<td class="text-center paddingtop16">#INV<?=$value['invoice_id']?></td>
<td class="text-center paddingtop16"><?=date("M j, Y", strtotime($value['addeddate']));?></td>
<td class="text-center paddingtop16"><?=$value['driver_first_name']?> <?=$value['driver_last_name']?></td>
<td class="text-center paddingtop16"><?=date("M j, Y", strtotime($value['from_date']));?> to <?=date("M j, Y", strtotime($value['to_date']));?></td>
<td class="text-center paddingtop16"><?=$TotalAmt;?></td>
<td class="text-center paddtop13">
<i style="font-size: 20px; cursor: pointer;" onclick="do_pdf('<?=$value['id_code']?>');" class="fa fa-file-pdf-o" aria-hidden="true"></i>
</td>
</td>
<td class="text-center paddingtop10">
</td>
</tr>
<?php } }?>
</tbody>
</table>
<div class="margintop20 col-md-6">
</div>
<div class="col-md-6 margintop20 margintop14">
<?php echo $this->ajax_pagination->create_links(); ?>
</div>