?
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/single_customer.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_customer','view_customer','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Customer Details</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes); ?> <ul> <li> <table class="sortnew"> <tr><th colspan='2' style="text-align: center">Customer Details</th></tr> <tr> <td>Customer Code</td> <td style="width:65%"> <?php echo $viewinfo->customer_code; ?> </td> </tr> <tr> <td> Customer Name </td> <td style="width:65%"> <?php echo $viewinfo->customer_name; ?> </td> </tr> <tr> <td> Contact No </td> <td style="width:65%"> <?php echo $viewinfo->customer_contact_no; ?> </td> </tr> <tr> <td> Fax </td> <td style="width:65%"> <?php echo $viewinfo->customer_fax; ?> </td> </tr> <tr> <td> Email </td> <td style="width:65%"> <?php echo $viewinfo->customer_email; ?> </td> </tr> <tr> <td>Website:</td> <td> <?php echo $viewinfo->customer_website; ?> </td> </tr> <tr> <td> Status </td> <td style="width:65%"> <?php echo $viewinfo->customer_status; ?> </td> </tr> </table> <table class="sortnew"> <tr><th colspan="2" style="text-align:center;">Address Information</th></tr> <tr> <td> Address </td> <td style="width:65%"> <?php echo $viewinfo->customer_address; ?> </td> </tr> <tr> <td> P.O Box </td> <td style="width:65%"> <?php echo $viewinfo->customer_pobox; ?> </td> </tr> <tr> <td> City </td> <td style="width:65%"> <?php echo $viewinfo->customer_city; ?> </td> </tr> <tr> <td> State </td> <td style="width:65%"> <?php echo $viewinfo->customer_state; ?> </td> </tr> <tr> <td> Country </td> <td style="width:65%"> <?php echo $viewinfo->customer_country; ?> </td> </tr> </table> </li> <li> <table class="sort" cellpadding="0" cellspacing="0" width="200px;"> <tr> <th>Contact Name</th> <th>Designation</th> <th>Mobile</th> <th>Phone</th> <th>Email</th> </tr> <?php $i=1; $customer_contacts=$this->mastermodel->get_data('payroll_customer_contacts',$viewinfo->customer_id,'customer_id'); foreach($customer_contacts as $k=>$row) { echo '<tr>'; echo '<td>'.$row['contact_name'].'</td>'; echo '<td>'. $row['contact_designation'] .'</td>'; echo '<td>'. $row['contact_mobile'] .'</td>'; echo '<td>'. $row['contact_phone'] .'</td>'; echo '<td>'. $row['contact_email'] .'</td>'; $i++; } ?> </table> </li> </ul> <?php echo form_close();?> </fieldset>