?
Current Path : /home1/savoy/public_html/savoyglobal.net/hr/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/hr/application/views/Timesheet/single_client_timesheet.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <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('timesheet','viewintimesheetsearch','search_client_timesheet','view_client_timesheet','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Client Timesheet</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes); $jobinfo=$this->onboardingmodel->get_joined_info_single('payroll_purchase_order',$viewinfo->purchase_order_id,'purchase_order_id','payroll_customer','customer_id') ?> <ul> <li> <label for="data"> Customer Purchase Order No</label> <div class="record_entry"> <?=$jobinfo->customer_purchase_order_no;?> </div> </li> <li> <label for="data"> Job Code</label> <div class="record_entry"> <?=$jobinfo->job_code?> </div> </li> <input type="hidden" name="client_timesheet_id" id="client_timesheet_id" value="<?=$viewinfo->client_timesheet_id;?>"/> <li> <label for="data">Customer Name</label> <div class="record_entry"> <?php echo $jobinfo->customer_name; ?> </div> </li> <li> <label for="data">Start Date</label> <div class="record_entry"> <?php echo $this->mastermodel->convertdatenormalformat($jobinfo->purchase_order_start_date); ?> </div> </li> <li> <label for="data">End Date</label> <div class="record_entry"> <?php echo $this->mastermodel->convertdatenormalformat($jobinfo->purchase_order_end_date); ?> </div> </li> <li> <label for="data">Site</label> <div class="record_entry"> <?php echo $this->mastermodel->getSingleFieldValue('site','site_name','site_id',$jobinfo->purchase_order_site_id); ?> </div> </li> <li> <table class="sortnew"> <tr> <th colspan="2">Timesheet Information</th> </tr> <tr> <td>Timesheet Received Date</td> <td> <div id="multi"> <?=$this->mastermodel->convertdatenormalformat($viewinfo->client_timesheet_received_date);?> </div> </td> </tr> <tr> <td>Timesheet Reviewed?</td> <td> <?php if($viewinfo->client_timesheet_reviewed==1) $checked="Yes"; else $checked="No"; echo $checked; ?> </td> </tr> <tr> <td>Timesheet Submission Date</td> <td> <?=$this->mastermodel->convertdatenormalformat($viewinfo->client_timesheet_submission_date);?> </td> </tr> <tr> <td>Remarks</td> <td> <?php echo $viewinfo->client_timesheet_remarks; ?> </td> </tr> </table> <table class="sortnew"> <tr> <th colspan="2">Timesheet for Period</th> </tr> <tr> <td>Start Date</td> <td> <?=$this->mastermodel->convertdatenormalformat($viewinfo->client_timesheet_start_date);?> </td> </tr> <tr> <td>End Date</td> <td> <?=$this->mastermodel->convertdatenormalformat($viewinfo->client_timesheet_end_date);?> </td> </tr> </table> <table class="sortnew"> <tr> <th colspan="2">Client Timesheet</th> </tr> <tr> <td>Timesheet</td> <td> <?php if($viewinfo->client_timesheet_document != "") { ?> <a href="<?=base_url()?>assets/uploads/<?=$viewinfo->client_timesheet_document;?>">Download</a> <?php } ?> </td> </tr> </table> </li> </ul> <?php echo form_close();?> </fieldset>