?
Current Path : /home1/savoy/www/savoyglobal.net/sgms/application/views/HR/ |
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/sgms/application/views/HR/xls_report_monthly_time.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $company_details= $this->mastermodel->get_data_srow('company','1','company_id'); $html='<html><head><body>'; $html.='<table width="100%"> <tr><td colspan="3" style="font-size:16px;"><b>Monthly Time Report</b></td></tr> <tr><td colspan="3">Period: '.$postdata['month'].' '.$postdata['year'].'</td></tr> </table>'; $html.='<hr><br><br>'; $ts = strtotime($postdata['month']." ".$postdata['year']); $start_date=date('Y-m-01', $ts); $end_date=date('Y-m-t', $ts); $diff = abs(strtotime($start_date) - strtotime($end_date)); $days = floor($diff/(60*60*24)); $days++; $i=1; $weekly_holidays=$this->mastermodel->getdatas('timesheet_weekly_holiday','weekly_holiday_id'); $holiday=array(); foreach ($weekly_holidays as $weekly) { $holiday[]=$weekly['weekly_holiday']; } $temp_dept=''; foreach($report as $rep) { if($rep['department_id'] != $temp_dept) { $temp_dept=$rep['department_id']; $i=1; $html.="</table><table><tr><td>Department:</td><td>".$rep['department_name']."</td></tr></table>"; $html.='<table cellspacing="-1" border=1 style="width:100%;text-align:left"> <thead> <tr><th style="text-align:left" bgcolor="#cdc9c9">Sl No</th> <th style="text-align:left" bgcolor="#cdc9c9">Employee Name</th> <th style="text-align:left" bgcolor="#cdc9c9">Employee No</th> <th style="text-align:left" bgcolor="#cdc9c9">Designation</th>'; $date=$start_date; while (strtotime($date) <= strtotime($end_date)) { $html.='<th style="text-align:left" bgcolor="#cdc9c9">'.date ("d", strtotime($date)).'</th>'; $date = date ("Y-m-d", strtotime("+1 day", strtotime($date))); } $html .='<th style="text-align:left" bgcolor="#cdc9c9">Total</th>'; $html .='</tr></thead><tbody>'; } $date=$start_date; $employee_device_id=$rep['device_no']; $html.='<tr><td>'.$i.'</td>'; $html.='<td>'.$rep['employee_name'].'</td>'; $html.='<td>'.$rep['employee_no'].'</td>'; $html.='<td>'.$rep['designation_name'].'</td>'; $total=0; while (strtotime($date) <= strtotime($end_date)) { $hours = $this->hrmodel->get_time_day($employee_device_id,$date); if($hours == -1) { $day_type='<font color="red">X</font>'; } else if($hours !=0) { $day_type=$hours; $total += $hours; } else { $day_type='-'; } $html.='<td>'.$day_type.'</td>'; $date = date("Y-m-d", strtotime("+1 day", strtotime($date))); } $html.='<td>'.$total.'</td>'; $html.='</tr>'; $i++; } $html.='</tbody></table>'; $html.='<hr>'; $html.='</body></html>'; $filename = "Monthly-Time"; header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=".$filename.".xls"); header("Pragma: no-cache"); header("Expires: 0"); print $html; exit; ?>