?
Current Path : /home1/savoy/www/savoyglobal.net/horeitia/application/views/Reports/ |
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/horeitia/application/views/Reports/xls_report_siteshift.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $html='<html><head><body>'; $html.='<table width="100%"> <tr><td colspan="2"></td><td align="right"><img src="'.base_url().'assets/images/logo.gif" style="float:right"/></td> <tr><td colspan="3" style="font-size:16px;" align="center"><b><u>Site Shift Report</u></b></td></tr> <tr><td colspan="3">Printout Date : '.date('d-m-Y').', '.date('h:i:s a').'</td></tr> </table><br><br>'; $html.='<hr>'; $html.='<table cellspacing="-1" style="width:100%;text-align:left"> <thead> <tr bgcolor="#7FCEFF"><th style="text-align:left" bgcolor="#7FCEFF">Sl No</th> <th style="text-align:left" bgcolor="#7FCEFF">Date</th> <th style="text-align:left" bgcolor="#7FCEFF">Old Employee No</th> <th style="text-align:left" bgcolor="#7FCEFF">Employee No</th> <th style="text-align:left" bgcolor="#7FCEFF">Employee Name</th> <th style="text-align:left" bgcolor="#7FCEFF">Passport No</th> <th style="text-align:left" bgcolor="#7FCEFF">Trade</th> <th style="text-align:left" bgcolor="#7FCEFF">Customer</th> <th style="text-align:left" bgcolor="#7FCEFF">Site</th> <th style="text-align:left" bgcolor="#7FCEFF">Camp</th> </tr></thead><tbody>'; $i=1; foreach($report as $rep) { $atdate=$rep['site_allotment_date']; $empname=$rep['emp_non_full_name']; $empno=$this->mastermodel->correctempno($rep['emp_non_no']); $camp=$this->reportmodel->findemployeecamp($rep['employee_id'],$atdate); if(!empty ($camp)) { $campname=$camp->camp_name; } else { $campname=""; } $trade=$this->reportmodel->findemployeetrade($rep['employee_id'],$atdate); if(!empty ($trade)) { $tradename=$trade->trade_name; } else { $tradename=""; } $site=$this->reportmodel->findemployeesite($rep['employee_id'],$atdate); if(!empty ($site)) { $sitename=$site->site_name; $siteid=$site->site_id; $customer_name=$site->customer_name; } else { $sitename=""; $siteid=""; $customer_name=''; } $atdate= $this->mastermodel->convdatformat($atdate); if(!empty($postdata['site_name'])) { if($postdata['site_name']==$siteid) { $html.='<tr style="color:#555555"><td>'.$i.'</td> <td>'.$atdate.'</td> <td>'.$rep['emp_non_no_old'].'</td> <td>'.$empno.'</td> <td>'.$empname.'</td> <td>⁣'.$rep['emp_non_passport_no'].'</td> <td>'.$tradename.'</td> <td>'.$customer_name.'</td> <td>'.$sitename.'</td> <td>'.$campname.'</td></tr>'; $i++; } } else { $html.='<tr style="color:#555555"> <td>'.$i.'</td> <td>'.$atdate.'</td> <td>'.$rep['emp_non_no_old'].'</td> <td>'.$empno.'</td> <td>'.$empname.'</td> <td>⁣'.$rep['emp_non_passport_no'].'</td> <td>'.$tradename.'</td> <td>'.$sitename.'</td> <td>'.$campname.'</td> </tr>'; $i++; } } $html.='</tbody></table>'; $html.='<hr>'; $html.='</body></html>'; $filename = "Site Shift Report"; header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=".$filename.".xls"); header("Pragma: no-cache"); header("Expires: 0"); print $html; exit; ?>