?
Current Path : /home1/savoy/public_html/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/public_html/savoyglobal.net/horeitia/application/views/Reports/absencelistreport_1.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="select-bar"> <label> </label> <span class="heading">Daily & Monthly Absence List</span> </div> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('report/getinreport/get_absencelist/_report_absencelist/',$attributes); $camp_list=$this->mastermodel->getdatas('camp','camp_name'); $reason_list=$this->mastermodel->getdatas('attendance_list','attendance_list_reason'); ?> <fieldset> <span id="reportleft" style="border: 0px solid black;width: 60%"> <ul> <li> <div id="multi"> <label for="data">From Date</label> <?php $data = array( 'name' => 'from_date', 'id' => 'from_date', 'class' => 'required', 'value' => date("d-m-Y") ); echo form_input($data).form_error($data); ?> <img src="<?=base_url()?>/assets/images/icons/calendar.png" alt="Click to popup the clendar!" /> </div> <div id="multi"> <label for="data">To Date</label> <?php $data = array( 'name' => 'to_date', 'id' => 'to_date', 'class' => 'required', 'value' => date("d-m-Y") ); echo form_input($data).form_error($data); ?> <img src="<?=base_url()?>/assets/images/icons/calendar.png" alt="Click to popup the clendar!" /> </div> </li> <li id="Camp_div"> <label for="data">Select Camp</label> <select name="camp_name" id="camp_name"> <option value="">All</option> <?php foreach($camp_list as $camp) { echo "<option value='". $camp['camp_id'] . "'>" . $camp['camp_name'] . "</option>"; } ?> </select> </li> <li> <label for="data">Select Absence Type</label> <select name="reason" id="reason"> <option value="">All</option> <?php foreach($reason_list as $reason) { echo "<option value='". $reason['attendance_list_id'] . "'>" . $reason['attendance_list_reason'] . "</option>"; } ?> </select> </li> <li> <label for="data">Employee Status</label> <select name="employee_status" id="employee_status"> <option value="">All</option> <option value="1">Active</option> <option value="0">Inactive</option> </select> </li> <li> <label>Report Format</label> <select name="report_type" id="report_type"> <option value="pdf">Pdf</option> <option value="xls">Xls</option> </select> </li> <div id='emp_box'> </div> <li> <input type="hidden" name="tab_name" value=" employee_absent"/> <input type="hidden" name="resfunction" value="search_attendance"/> </li> <li> <label for="submit"> </label> <button type="submit" class="clickimage" >Generate</button> </li> </ul> </span> <span id="reportright" style="border: 0px solid black;width: 39%"> <table width="100%" class="sort" > <caption>Select Fields</caption> <tr> <th style="width:10px;"></th> <th style="width: 20px">Field Name</th> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name="" checked/></td> <td>Attendance Date</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name="" checked/></td> <td>Employee No</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name="" checked/></td> <td>Trade</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name="" checked/></td> <td>Camp</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name="" checked/></td> <td>Site</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name="" checked/></td> <td>Absent Reason</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name=""/></td> <td>Visa Type</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name=""/></td> <td>Passport No</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name=""/></td> <td>Sponsor</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name=""/></td> <td>Agency</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name=""/></td> <td>Nationality</td> </tr> <tr> <td style="width:10px;"><input style="width: 20px;" type="checkbox" name=""/></td> <td>Joining Date</td> </tr> </table> </span> </fieldset> <?php echo form_close();?>