?
Current Path : /home1/savoy/www/savoyglobal.net/eduplus1/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/eduplus1/application/views/hr/single_employee_attendence.php |
<?php if (!defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="icons_main"> <div class="icons"> <img src="<?= base_url() ?>assets/images/back.png" title="Back" class="clickimage" onclick="viewdata('hr','viewinhrsearch','search_employee_attendence','view_employee_attendence','<?= $_SESSION['pagenum']; ?>')" alt="Back" align = "center" width="32" height="32" /> </div> <div class="icons_caption"> <h4>Employee Attendance</h4> </div> </div> <?php $attributes = array('id' => 'validateform', 'class' => 'validate'); echo form_open('', $attributes); ?> <div class="clean"></div> <div class="grid_6"> <div class="box"> <div class="header"> <h3>Employee Attendance </h3> <span></span> </div> <div class="content no-padding"> <div class="section _100"> <label>Attendance Date</label> <div> <?= $this->mastermodel->convertdatenormalformat($viewinfo->employee_attendance_date) ?> </div> </div> <div class="section _100"> <label>Remarks </label> <div> <?= $viewinfo->employee_attendance_remarks ?> </div> </div> </div> </div> </div> <div class="grid_12" > <div class="box"> <div class="content no-padding"> <div class="header main">Employee Attendance Details</div> <table class="table" id="stud_sub"> <thead id="stud_sub_head"> <tr> <td style="text-align: center;" >Employee Name</td> <td style="text-align: center;" >Attendance Status</td> <td style="text-align: center;">Time In</td> <td style="text-align: center;">Time Out</td> <td style="text-align: center;">Remarks</td> </tr> </thead> <tbody> <?php $employee_attendence_details=$this->hrmodel->employee_attendence_details($viewinfo->employee_attendance_id); $i = 1; foreach ($employee_attendence_details as $row) { // $start_time = explode(":", $viewinfo->employee_attendance_in_time); //$end_time = explode(":", $viewinfo->employee_attendance_out_time); ?> <tr> <td> <?= $row['employee_name']; ?> </td> <td> <select disabled name="employee_attendance_status<?= $i ?>" class="required chzn-done" > <option value="">--Select--</option> <option value="P" <?php if ($row['employee_attendance_status'] == "P") { echo "selected"; } ?>>Present</option> <option value="L" <?php if ($row['employee_attendance_status'] == "L") { echo "selected"; } ?>>Leave</option> <option value="A" <?php if ($row['employee_attendance_status'] == "A") { echo "selected"; } ?>>Absent</option> </select> </td> <td> <?php echo substr($row['employee_attendance_in_time'], 0, 2).":".substr($row['employee_attendance_in_time'], 3, 2); ?> </td> <td> <?php echo substr($row['employee_attendance_out_time'], 0, 2).":".substr($row['employee_attendance_out_time'], 3, 2); ?> </td> <td> <?= $row['employee_attendance_details_remarks'];?> </td> </tr> <?php $i++; } ?> </tbody> </table> <?php echo form_close(); ?>