| Current Path : /home/users/unlimited/www/eshop.codeskitter.site/application/controllers/seller/ |
| Current File : /home/users/unlimited/www/eshop.codeskitter.site/application/controllers/seller/Sales_report.php |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Sales_report extends CI_Controller
{
public function __construct()
{
parent::__construct();
$this->load->database();
$this->load->helper(['url', 'language', 'timezone_helper']);
$this->load->model(['Sales_report_model', 'Order_model', 'Category_model']);
$this->session->set_flashdata('authorize_flag', "");
}
public function index()
{
if ($this->ion_auth->logged_in() && $this->ion_auth->is_seller()) {
$this->data['main_page'] = TABLES . 'sales-report';
$settings = get_settings('system_settings', true);
$this->data['title'] = 'Sales Report |' . $settings['app_name'];
$this->data['meta_description'] = 'eShop - Multivendor';
$this->load->view('seller/template', $this->data);
} else {
redirect('seller/login', 'refresh');
}
}
public function get_seller_sales_report_list()
{
if ($this->ion_auth->logged_in() && $this->ion_auth->is_seller()) {
return $this->Sales_report_model->get_seller_sales_list();
} else {
redirect('seller/login', 'refresh');
}
}
}