���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/adimi/application/modules/dashboard/views/receipt/ |
<?php defined('BASEPATH') OR exit('No direct script access allowed');?> <script src="<?php echo base_url(); ?>my-assets/js/admin_js/json/customer.js.php"></script> <h3>Receipt list</h3> <div class="row-fluid"> <div> <?php echo form_open("creceipt/search_receipt_item", array( 'class' => 'well form-inline')); ?> <label class="select">Search By Customer Name : </label> <input type="text" name="customer_name" class="span3 customerSelection" placeholder='Type Customer Name' id="customer_name" > <input type="hidden" class="customer_hidden_value" name="customer_id" id="SchoolHiddenId"/> <button type="submit" class="btn">Search</button> <?php echo form_close(); ?> </div> </div> <?php if(!empty($receipt_list)){ ?> <table class="table table-striped table-condensed table-condensed table-bordered"> <thead> <tr> <th>#</th> <th>Receipt No</th> <th>Customer Name</th> <th>Date</th> <th>Amout</th> <th>Actions</th> </tr> </thead> <tbody> {receipt_list} <tr> <td>{sl}</td> <td>{receipt_no}</td> <td> <a href="<?php echo base_url().'ccustomer/customerledger/{customer_id}'; ?>">{customer_name}</a> </td> <td>{final_date}</td> <td>{amount}</td> <td> <center> <a href="<?php echo base_url().'creceipt/receipt_update_form/{receipt_no}'; ?>"><i title="Edit" class="icon-edit"></i></a> </center> </td> </tr> {/receipt_list} </tbody> </table> <div id="pagin"><center><?php if(isset($links)){echo $links;} ?></center></div> <?php }else{ ?> <div class="NoDataFound"><center>No Data Found</center></div> <?php } ?>