?
Current Path : /home1/savoy/public_html/savoyglobal.net/sgms/application/views/Sales/ |
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/Sales/single_daily_activity.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $this->load->view('documentreadyfunctions'); ?> <div class="select-bar"> <label><img src="<?=base_url()?>assets/images/backbutton.png" title="Back" class="clickimage" onclick="viewdata('sales','viewinsalessearch','search_daily_activity','view_daily_activity','<?=$_SESSION['pagenum'];?>')" alt="Back" align = "center" width="25" height="25" /> </label> <span class="heading">Daily Activity Details</span> </div> <fieldset> <?php $attributes=array('id'=>'validateform','class'=>'customForm'); echo form_open('',$attributes); $daily_activity_details=$this->mastermodel->get_data('daily_activity_details',$viewinfo->daily_activity_id ,'daily_activity_id','daily_activity_id'); ?> <ul> <li> <label for="data">Employee Name</label> <div class="record_entry"> <?=$this->mastermodel->getSingleFieldValue('employee','employee_name','employee_id',$viewinfo->employee_id);?> </div> </li> <li> <label for="data">Date</label> <div class="record_entry"> <?php echo $this->mastermodel->convertdatenormalformat($viewinfo->activity_date); ?> </div> </li> <li> <label for="data">Remarks</label> <div class="record_entry"> <?php echo $viewinfo->remarks; ?> </div> </li> <table class="sort"> <tr> <th colspan="5" style="text-align: center">Employee Qualification</th> </tr> <tr> <th>Customer Name</th> <th>Contact Person Name</th> <th>Time</th> <th>Contact No</th> <th>Remarks</th> </tr> <?php $i=0; foreach($daily_activity_details as $day) { $i++; ?> <tr> <td><?=$day['customer_name'];?></td> <td><?=$day['contact_person_name'];?></td> <td><?=$day['time'];?></td> <td><?=$day['contact_no'];?></td> <td><?=$day['remarks'];?></td> </tr> <?php } ?> </table> </ul> <?php echo form_close();?> </fieldset>