����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


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/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/adimi/application/modules/dashboard/views/customer/customer_ledger.php
<?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>

	<!-- Customer 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('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 }if($this->permission->check_label('customer_ledger')->read()->access()){?>
                  		<a href="<?php echo base_url('dashboard/Ccustomer/customer_ledger_report')?>" class="btn btn-warning m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('customer_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('customer_information') ?></h4>
		                </div>
		            </div>
		            <div class="panel-body">
	  					<div class="ft_left mr_10">
							
							<h5><u> <?php echo html_escape($company_info[0]['company_name']); ?></u></h5>
							
							<?php echo display('customer_name') ?> : <?php echo html_escape($customer_name); ?> <br>
                            <?php if(!empty($customer_address)){?>
							<?php echo display('customer_address') ?> : <?php echo html_escape($customer_address); ?><br>
                            <?php }else{?>
                                <?php echo display('customer_address') ?> : <?php echo html_escape($customer_address_1) ?><br>
                            <?php }?>
							<?php echo display('mobile') ?> : <?php echo html_escape($customer_mobile); ?><br>
							<?php echo display('customer_email') ?> : <?php echo html_escape($customer_email); ?><br>
						</div>

						 <div class="ft_left">
							<br>
							<?php echo display('city') ?> : <?php echo html_escape($city); ?><br>
							<?php echo display('state') ?> : <?php echo remove_hyphen($state); ?><br>
							<?php echo display('country') ?> : <?php echo html_escape($country); ?><br>
							<?php echo display('zip') ?> : <?php echo html_escape($zip); ?><br>
							<?php echo display('company') ?> : <?php echo html_escape($company); ?><br>
							
						</div>
						<div class="ft_right mr_50">
							<br>
							<table class="table table-striped table-condensed table-bordered">
								<tr><td> <?php echo display('debit_ammount') ?> </td> <td class="text-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="text-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="text-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="text-right mr_20"><?php echo display('debit') ?></th>
										<th class="text-right mr_20"><?php echo display('credit') ?></th>
										<th class="text-right mr_20"><?php echo display('balance') ?></th>
									</tr>
								</thead>
								<tbody>
								<?php

									if($ledger){
								?>
							<?php foreach ($ledger as $v_ledger ){?>
									<tr>
										<td><?php echo html_escape($v_ledger['final_date']);?></td>
										<td>
                                           <?php if($this->permission->check_label('new_sale')->access()){
                                            if ($v_ledger['invoice_no'] !='NA'){ ?>
											<a href="<?php echo base_url().'dashboard/Cinvoice/invoice_inserted_data/'.$v_ledger['invoice_no']; ?>">
												<?php echo  html_escape($v_ledger['invoice_no']);?>  <i class="fa fa-tasks pull-right" aria-hidden="true"></i>
											</a>
                                           <?php } } ?>
										</td>
										<td>
											<?php echo html_escape($v_ledger['receipt_no']); ?>
										</td>
										<td><?php echo html_escape($v_ledger['description'])?></td>
										<td class="text-right"> 

										<?php
										echo (($position==0)? $currency.' '.$v_ledger['debit'] :$v_ledger['debit'].' '.$currency)?>
											
										</td>
										<td class="text-right"> <?php echo (($position==0)?$currency.' '.$v_ledger['credit'] : $v_ledger['credit'].' '.$currency) ?></td>
										<td class="text-right"> <?php echo (($position==0)? $currency.' '.$v_ledger['balance'] : $v_ledger['balance'].' '. $currency) ?></td>
									</tr>

								<?php
									}
									}
								?>
								</tbody>
		                    </table>
		                </div>
		            </div>
		        </div>
		    </div>
		</div>
	</section>
</div>
<!-- Customer Ledger End  -->

ZeroDay Forums Mini