���� 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/report/ |
<?php defined('BASEPATH') OR exit('No direct script access allowed');?> <!-- Product js php --> <script src="<?php echo base_url()?>my-assets/js/admin_js/json/product.js.php" ></script> <script src="<?php echo MOD_URL.'dashboard/assets/js/print.js'; ?>"></script> <!-- Stock List Supplier Wise 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('sales_report_store_wise') ?></h1> <small><?php echo display('sales_report_store_wise') ?></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('report') ?></a></li> <li class="active"><?php echo display('sales_report_store_wise') ?></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'); $validatio_error = validation_errors(); if (($error_message || $validatio_error)) { ?> <div class="alert alert-danger alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <?php echo $error_message ?> <?php echo $validatio_error ?> </div> <?php $this->session->unset_userdata('error_message'); } ?> <!-- Stock report supplier wise --> <div class="row"> <div class="col-sm-12"> <div class="panel panel-default"> <div class="panel-body"> <?php echo form_open('dashboard/Admin_dashboard/retrieve_sales_report_store_wise',array('class' => '','id' => 'validate' ));?> <?php date_default_timezone_set(DEF_TIMEZONE); $today = date('Y-m-d'); ?> <div class="form-group row"> <label for="store_id" class="col-sm-2 col-form-label"><?php echo display('store')?>:</label> <div class="col-sm-4"> <select class="form-control" name="store_id" id="store_id" required=""> <option value=""></option> {stores} <option value="{store_id}">{store_name}</option> {/stores} </select> </div> </div> <div class="form-group row"> <label for="start_date" class="col-sm-2 col-form-label"><?php echo display('start_date') ?>:</label> <div class="col-sm-4"> <input type="text" name="start_date" class="form-control datepicker" id="start_date" placeholder="<?php echo display('start_date') ?>" autocomplete="off"> </div> </div> <div class="form-group row"> <label for="end_date" class="col-sm-2 col-form-label"><?php echo display('end_date') ?>:</label> <div class="col-sm-4"> <input type="text" name="end_date" class="form-control datepicker" id="end_date" value="<?php echo html_escape($today)?>" placeholder="<?php echo display('end_date') ?>" autocomplete="off"> </div> </div> <div class="form-group row"> <label for="" class="col-sm-3 col-form-label"></label> <div class="col-sm-6"> <button type="submit" class="btn btn-primary"><?php echo display('search') ?></button> <a class="btn btn-warning" href="#" onclick="printDiv('printableArea')"><?php echo display('print') ?></a> </div> </div> <?php echo form_close()?> </div> </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('sales_report_store_wise') ?></h4> </div> </div> <div class="panel-body"> <div id="printableArea" class="ml_2"> <link href="<?php echo MOD_URL.'dashboard/assets/css/print.css'; ?>" rel="stylesheet" type="text/css"/> <?php if (@$sales_reports):?> <p class="store_name"><?php echo html_escape($sales_reports[0]['store_name'])?></p> <div class="store_div"> <?php if($start_date):?> <p class="mr_p8e"><?php echo display('report') ?> <?php echo display('from') ?> : <strong><?php echo html_escape($start_date) ?></strong></p> <p class="mr_p8e"><?php echo display('to') ?> : <strong><?php echo html_escape($end_date)?></strong></p> <?php endif;?> <p><?php echo display('total_invoice') ?> : <strong><?php echo count($sales_reports)?></strong></p> </div> <?php endif;?> <div class="table-responsive mt_10"> <table id="" class="table table-bordered table-striped table-hover"> <thead> <tr> <th class="text-center"><?php echo display('sl') ?></th> <th class="text-center"><?php echo display('invoice') ?></th> <th class="text-center"><?php echo display('date') ?></th> <th class="text-center"><?php echo display('price') ?></th> <th class="text-center"><?php echo display('paid') ?></th> <th class="text-center"><?php echo display('due') ?></th> </tr> </thead> <tbody> <?php $total_sale = 0; $total_paid = 0; $total_due = 0; if (@$sales_reports) { $sl=1; foreach ($sales_reports as $sales_report) : ?> <tr> <td align="center"><?php echo $sl++;?></td> <td align="center"><a href="<?php echo base_url().'dashboard/Cinvoice/invoice_inserted_data/'.$sales_report['invoice_id']; ?>"> <?php echo html_escape($sales_report['invoice'])?> <i class="fa fa-tasks pull-right" aria-hidden="true"></i> </a></td> <td align="center"><?php echo html_escape($sales_report['date'])?></td> <td align="center"><?php echo html_escape($sales_report['total_amount'])?></td> <td align="center"><?php echo html_escape($sales_report['paid_amount'])?></td> <td align="center"><?php echo html_escape($sales_report['due_amount'])?></td> <?php $total_sale += $sales_report['total_amount'];?> <?php $total_paid += $sales_report['paid_amount'];?> <?php $total_due += $sales_report['due_amount'];?> </tr> <?php endforeach; } ?> </tbody> <tfoot> <tr> <td colspan="3" align="right"><b><?php echo display('grand_total')?>:</b></td> <td align="center"><b><?php echo html_escape($total_sale);?></td> <td align="center"><b><?php echo html_escape($total_paid);?></td> <td align="center"><b><?php echo html_escape($total_due);?></td> </tr> </tfoot> </table> </div> </div> <div class="text-center"><?php echo htmlspecialchars_decode(@$links)?></div> </div> </div> </div> </div> </section> </div> <!-- Stock List Supplier Wise End -->