���� 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/customer/ |
<?php defined('BASEPATH') OR exit('No direct script access allowed');?> <!-- Customer Ledger Start --> <div class="content-wrapper"> <section class="content-header"> <div class="header-icon"> <i class="pe-7s-note2"></i> </div> <div class="header-title"> <h1><?php echo display('customer_ledger') ?></h1> <small><?php echo display('manage_customer_ledger') ?></small> <ol class="breadcrumb"> <li><a href="#"><i class="pe-7s-home"></i> <?php echo display('home') ?></a></li> <li><a href="#"><?php echo display('customer') ?></a></li> <li class="active"><?php echo display('customer_ledger') ?></li> </ol> </div> </section> <!-- Supplier information --> <section class="content"> <!-- Alert Message --> <?php $message = $this->session->userdata('message'); if (isset($message)) { ?> <div class="alert alert-info alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <?php echo $message ?> </div> <?php $this->session->unset_userdata('message'); } $error_message = $this->session->userdata('error_message'); if (isset($error_message)) { ?> <div class="alert alert-danger alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <?php echo $error_message ?> </div> <?php $this->session->unset_userdata('error_message'); } ?> <div class="row"> <div class="col-sm-12"> <div class="column"> <?php if($this->permission->check_label('add_customer')->create()->access()){ ?> <a href="<?php echo base_url('dashboard/Ccustomer')?>" class="btn btn-success m-b-5 m-r-2"><i class="ti-plus"> </i> <?php echo display('add_customer')?></a> <?php }if($this->permission->check_label('manage_customer')->read()->access()){ ?> <a href="<?php echo base_url('dashboard/Ccustomer/manage_customer')?>" class="btn btn-success m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('manage_customer')?></a> <?php } ?> </div> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="panel panel-default"> <div class="panel-body"> <?php echo form_open("dashboard/Ccustomer/customer_ledger_report", array('class' => 'form-inline')); ?> <div class="form-group"> <label for="customer_id"><?php echo display('customer')?>:</label> <select class="form-control" name="customer_id" id="customer_id"> {customers_list} <option value=""></option> <option value="{customer_id}">{customer_name}</option> {/customers_list} </select> </div> <button type="submit" class="btn btn-success"><?php echo display('search')?></button> <?php echo form_close() ?> </div> </div> </div> </div> <?php if ($customer_name) { ?> <div class="row"> <div class="col-sm-12"> <div class="panel panel-bd lobidrag"> <div class="panel-heading"> <div class="panel-title"> <h4><?php echo display('customer_information') ?></h4> </div> </div> <div class="panel-body"> <div class="ft_left"> {company_info} <h5><u> {company_name}</u></h5> {/company_info} <?php echo display('customer_name') ?> : {customer_name} <br> <?php if(!empty($customer_address)){?> <?php echo display('customer_address') ?> : {customer_address}<br> <?php }else{?> <?php echo display('customer_address') ?> : {customer_address_1}<br> <?php } ?> <?php echo display('mobile') ?> : {customer_mobile} </div> <div class="ft_right_mr_100"> <table class="table table-striped table-condensed table-bordered"> <tr><td> <?php echo display('debit_ammount') ?> </td> <td class="ta_right_mr_20"> <?php echo (($position==0)?"$currency {total_debit}":"{total_debit} $currency")?></td> </tr> <tr><td><?php echo display('credit_ammount');?></td> <td class="ta_right_mr_20"> <?php echo (($position==0)?"$currency {total_credit}":"{total_credit} $currency") ?></td> </tr> <tr><td><?php echo display('balance_ammount');?> </td> <td class="ta_right_mr_20"> <?php echo (($position==0)?"$currency {total_balance}":"{total_balance} $currency")?></td> </tr> </table> </div> </div> </div> </div> </div> <!-- Manage Customer --> <div class="row"> <div class="col-sm-12"> <div class="panel panel-bd lobidrag"> <div class="panel-heading"> <div class="panel-title"> <h4><?php echo display('customer_ledger') ?></h4> </div> </div> <div class="panel-body"> <div class="table-responsive"> <table id="dataTableExample2" class="table table-bordered table-striped table-hover"> <thead> <tr> <th><?php echo display('date') ?></th> <th><?php echo display('invoice_no') ?></th> <th><?php echo display('receipt_no') ?></th> <th><?php echo display('description') ?></th> <th class="ta_right_mr_20"><?php echo display('debit') ?></th> <th class="ta_right_mr_20"><?php echo display('credit') ?></th> <th class="ta_right_mr_20"><?php echo display('balance') ?></th> </tr> </thead> <tbody> <?php if($ledger){ ?> {ledger} <tr> <td>{final_date}</td> <td> <?php if($this->permission->check_label('new_sale')->access()){ ?> <a href="<?php echo base_url().'dashboard/Cinvoice/invoice_inserted_data/{invoice_no}'; ?>"> {invoice_no} <i class="fa fa-tasks pull-right" aria-hidden="true"></i> </a> <?php } ?> </td> <td> {receipt_no} </td> <td>{description}</td> <td class="text-right"> <?php echo (($position==0)?"$currency {debit}":"{debit} $currency")?> </td> <td class="text-right"> <?php echo (($position==0)?"$currency {credit}":"{credit} $currency") ?></td> <td class="text-right"> <?php echo (($position==0)?"$currency {balance}":"{balance} $currency") ?></td> </tr> {/ledger} <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </section> </div> <!-- Customer Ledger End -->