?
Current Path : /home1/savoy/public_html/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/public_html/savoyglobal.net/sgms/application/views/HR/single_work_shift.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); $employee_list=$this->mastermodel->getemployeesforshift($viewinfo->work_shift_id); $employee_list_shift=$this->mastermodel->get_data_joined('timesheet_work_shift_employees','employee','employee_id','employee_id',$viewinfo->work_shift_id,'work_shift_id','employee.employee_id'); ?> <div class="select-bar"> <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('hr','viewinhrsearch','search_work_shift','view_work_shift','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Shift Details</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes); ?> <ul> <li> <label for="data">Shift Name</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_name; ?> </div> </li> <li> <label for="data">Shift W.E.F Date</label> <div class="record_entry"> <?php echo $this->mastermodel->convertdatenormalformat($viewinfo->work_shift_wef_date); ?> </div> </li> <li> <label for="data">Starting Time</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_starting_time; ?> </div> </li> <li> <label for="data">Ending Time</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_ending_time; ?> </div> </li> <li> <label for="data">Break Starting Time</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_break_starting_time; ?> </div> </li> <li> <label for="data">Break Ending Time</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_break_ending_time; ?> </div> </li> <li> <label for="data">Half day ending Time</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_ending_time_half; ?> </div> </li> <li> <label for="data">Employees</label> <div class="record_entry"> <?php foreach($employee_list_shift as $list) { echo $list['employee_name']."<br/>"; } ?> </div> </li> <li> <label for="data">Grace Time(minutes)</label> <div class="record_entry"> <?php echo $viewinfo->work_shift_grace_time; ?> </div> </li> </ul> <?php echo form_close();?> </fieldset>