���� 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/supplier/ |
<?php defined('BASEPATH') OR exit('No direct script access allowed');?> <!-- Supplier 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('supplier_ledger') ?></h1> <small><?php echo display('manage_supplier_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('supplier') ?></a></li> <li class="active"><?php echo display('supplier_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_supplier')->create()->access()){ ?> <a href="<?php echo base_url('dashboard/Csupplier')?>" class="btn btn-success m-b-5 m-r-2"><i class="ti-plus"> </i> <?php echo display('add_supplier')?></a> <?php }if($this->permission->check_label('manage_supplier')->read()->access()){ ?> <a href="<?php echo base_url('dashboard/Csupplier/manage_supplier')?>" class="btn btn-success m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('manage_supplier')?></a> <?php }if($this->permission->check_label('supplier_ledger')->read()->access()){?> <a href="<?php echo base_url('dashboard/Csupplier/supplier_ledger_report')?>" class="btn btn-success m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('supplier_ledger')?></a> <?php } ?> </div> </div> </div> <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('supplier_information') ?></h4> </div> </div> <div class="panel-body"> <div class="ft_left"> <h4>{supplier_name}</h4> </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><?php if ($total_debit) { echo (($position==0)?"$currency {total_debit}":"{total_debit} $currency");} ?></td></tr> <tr><td><?php echo display('credit_ammount')?></td> <td class="balance_txt"><?php if ($total_credit) { echo (($position==0)?"$currency {total_credit}":"{total_credit} $currency");} ?></td> </tr> <tr><td><?php echo display('balance_ammount')?> </td> <td class="balance_txt"><?php if ($total_balance) { echo (($position==0)?"$currency {total_balance}":"{total_balance} $currency");} ?></td> </tr> </table> </div> </div> </div> </div> </div> <!-- Manage Supplier --> <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('supplier_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 class="text-center"><?php echo display('date') ?></th> <th class="text-center"><?php echo display('invoice_id') ?></th> <th class="text-center"><?php echo display('deposit_id') ?></th> <th class="text-center"><?php echo display('description') ?></th> <th class="text-center"><?php echo display('debit') ?></th> <th class="text-center"><?php echo display('credit') ?></th> <th class="text-center"><?php echo display('balance') ?></th> </tr> </thead> <tbody> <?php if ($ledger) { ?> {ledger} <tr> <td>{final_date}</td> <td> <a href="<?php echo base_url().'Cpurchase/purchase_details_data/{transaction_id}';?>"> {invoice_no} <i class="fa fa-tasks pull-right" aria-hidden="true"></i></a> </td> <td>{deposit_no}</td> <td>{description}</td> <td><?php echo (($position==0)?"$currency {debit}":"{debit} $currency") ?></td> <td><?php echo (($position==0)?"$currency {credit}":"{credit} $currency") ?></td> <td><?php echo (($position==0)?"$currency {balance}":"{balance} $currency") ?></td> </tr> {/ledger} <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </section> </div> <!-- Supplier Ledger End -->