?
Current Path : /home1/savoy/public_html/savoyglobal.net/horeitia/application/views/Timesheet/ |
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/Timesheet/timesheetreport.php |
<?php $this->load->view('documentreadyfunctions'); ?> <script type="text/javascript"> suggestcustomer("customer_name"); </script> <link href="<?=base_url()?>assets/css/tablesortnew.css" rel="stylesheet" type="text/css"/> <div class="select-bar"> <!-- <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('report','viewinreportsearch','search_report','view_report','1');" alt="Back" align = "center" width="25" height="25" /> </label>--> <span class="heading">Client Timesheet Report </span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('timesheet/get_report/get_clienttimesheetreport/_report_client_timesheet/',$attributes); ?> <ul> <li> <table class="sortnew"> <tr><th colspan='2' style="text-align: center">Search by Customer</th></tr> <tr> <td> Customer Name </td> <td style="width:65%"> <?php $data = array( 'name' => 'customer_name', 'id' => 'customer_name', 'class' => 'required', ); echo form_input($data).form_error($data); ?> </td> </tr> </table> <table class="sortnew"> <tr> <th colspan="2" style="text-align: center">Timesheet Date</th> </tr> <tr> <td>From Date</td> <td> <div id="multi"> <?php $data = array( 'name' => 'client_timesheet_start_date', 'id' => 'client_timesheet_start_date', 'class' => 'calfocus medium required', ); echo form_input($data).form_error($data); ?> <img src="<?=base_url()?>assets/images/icons/calendar.png" alt="Click to popup the clendar!" /> </div> </td> </tr> <tr> <td>To Date</td> <td> <div id="multi"> <?php $data = array( 'name' => 'client_timesheet_end_date', 'id' => 'client_timesheet_end_date', 'class' => 'calfocus medium required', ); echo form_input($data).form_error($data); ?> <img src="<?=base_url()?>assets/images/icons/calendar.png" alt="Click to popup the clendar!" /> </div> </td> </tr> </table> </li> <li> <label>Report Format</label> <select name="report_type" id="report_type"> <option value="xls">Xls</option> <option value="pdf">Pdf</option> </select> </li> <li> <label for="submit"> </label> <button type="submit" class="clickimage">Generate</button> </li> </ul> <?php echo form_close();?> </fieldset>