?
Current Path : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/www/savoyglobal.net/drafthr/system/application/views/Report/paymentinscompwiserep.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <?php if ($search == "") $search = 'search'; if($fromdate == '') $fromdate = 'fromdate'; if($todate=='') $todate = 'todate'; $cov=$this->mastermodel->get_data_srow('insurance_company',$search,'id'); ?> <div class="select-bar"> <table width="100%"><tr><td><label> <img src="<?=base_url()?>/assets/images/backbutton.png" title="Back" class="clickimage" onclick="loadpayment()" alt="Back" align = "center" width="25" height="25" /></label> </td><td align="center"> Payment Report </td><td align="right"> <label><?=anchor('report/genreppaymentinscomp/paymentinscompwisepdf/'.$search.'/'.$fromdate.'/'.$todate.'/', '<img src="'.base_url().'/assets/images/pdf.png" title="PDF" align = "center" width="20" height="20">',array('class'=>'delete','onclick'=>"return confirm('Are you sure want to download')"))?></label> </td></tr></table></div> <table class="reportheader"> <tr><td>Insurance Company</td><td><?=$cov->company_name?></td></tr> <?if ($todate != 'todate'){ ?> <tr><td>Period</td><td> <?=$fromdate?> to <?=$todate?> </td></tr><? } ?> </table> <table class="sort"><thead><tr> <th>Sl No</th> <th>Date</th> <th>Quotation Ref</th> <th>Customer Name</th> <th>Status</th> <th>Payment Date</th> <th>Amount</th> </tr> <?php $i=1; foreach($viewinfo as $updata) { $type=$this->customermodel->getSingleFieldValue('customers','type','id',$updata['customer_id']); if($type=="Individual") { $cus=$this->mastermodel->get_data_srow('customer_personal_ind',$updata['customer_id'],'customer_id'); } else { $cus=$this->mastermodel->get_data_srow('customer_corp_info',$updata['customer_id'],'customer_id'); } ?> <tr> <td><?=$i++;?></td> <td><?php echo $this->mastermodel->convdatformat($updata['quotation_date']);?></td> <td><?=$updata['quotation_ref'];?></td> <td><?=$cus->insured;?></td> <td><?=$updata['status'];?></td> <td><?php echo $this->mastermodel->convdatformat($updata['paydate']);?></td> <td><?=$updata['amount'];?></td> </tr> <?php } ?> </table>