?
Current Path : /home1/savoy/www/savoyglobal.net/sibs_draft/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/sibs_draft/system/application/views/Report/brobranchwisexls.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('ourbranch',$search,'id'); $csv_output=''; $csv_output='<html><head><body style="margin: 20px 20px 30px 20px;"> <div style="text-align:center"><b><u>Branch Broking Slip Report/u></b> </div><br/><br/>'; $csv_output.=" <table class='reportheader'> <tr><td>Branch:</td><td>$cov->branchname</td></tr> <tr><td>Period:</td><td>"; if ($todate != 'todate'){ $csv_output .= "$fromdate to $todate"; } $csv_output.="</td> </tr> </table> <table width='90%' class='sort' border='1' cellpadding='1' cellspacing='-1'><thead><tr> <th>Sl No</th> <th>Date</th> <th>Customer Name</th> <th>Type of Cover</th> <th>Quotation Ref No</th> <th>Status</th> </tr></thead>"; $i=0; foreach($viewinfo as $updata) { $stf=$this->mastermodel->get_data_srow('covers',$updata['cover_id'],'id'); $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'); } $i++; $csv_output.=" <tr> <td>".$i."</td> <td>".$this->mastermodel->convdatformat($updata['quotation_date'])."</td> <td>$cus->insured</td> <td>$stf->cover</td> <td>".$updata['quotation_ref']."</td> <td>".$updata['status']."</td> </tr>"; ?> <?php } $csv_output .= "</table>"; $csv_output.='</body></head></html>'; $filename = "Broking Slip-Branchwise"; header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=".$filename.".xls"); header("Pragma: no-cache"); header("Expires: 0"); print $csv_output; exit; ?>