219 lines
7.0 KiB
PHP
219 lines
7.0 KiB
PHP
|
<?php
|
||
|
namespace Opencart\Admin\Controller\Extension\Opencart\Report;
|
||
|
/**
|
||
|
* Class Sale Tax
|
||
|
*
|
||
|
* @package Opencart\Admin\Controller\Extension\Opencart\Report
|
||
|
*/
|
||
|
class SaleTax extends \Opencart\System\Engine\Controller {
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function index(): void {
|
||
|
$this->load->language('extension/opencart/report/sale_tax');
|
||
|
|
||
|
$this->document->setTitle($this->language->get('heading_title'));
|
||
|
|
||
|
$data['breadcrumbs'] = [];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('text_home'),
|
||
|
'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
|
||
|
];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('text_extension'),
|
||
|
'href' => $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=report')
|
||
|
];
|
||
|
|
||
|
$data['breadcrumbs'][] = [
|
||
|
'text' => $this->language->get('heading_title'),
|
||
|
'href' => $this->url->link('extension/opencart/report/sale_tax', 'user_token=' . $this->session->data['user_token'])
|
||
|
];
|
||
|
|
||
|
$data['save'] = $this->url->link('extension/opencart/report/sale_tax.save', 'user_token=' . $this->session->data['user_token']);
|
||
|
$data['back'] = $this->url->link('marketplace/extension', 'user_token=' . $this->session->data['user_token'] . '&type=report');
|
||
|
|
||
|
$data['report_sale_tax_status'] = $this->config->get('report_sale_tax_status');
|
||
|
$data['report_sale_tax_sort_order'] = $this->config->get('report_sale_tax_sort_order');
|
||
|
|
||
|
$data['header'] = $this->load->controller('common/header');
|
||
|
$data['column_left'] = $this->load->controller('common/column_left');
|
||
|
$data['footer'] = $this->load->controller('common/footer');
|
||
|
|
||
|
$this->response->setOutput($this->load->view('extension/opencart/report/sale_tax_form', $data));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function save(): void {
|
||
|
$this->load->language('extension/opencart/report/sale_tax');
|
||
|
|
||
|
$json = [];
|
||
|
|
||
|
if (!$this->user->hasPermission('modify', 'extension/opencart/report/sale_tax')) {
|
||
|
$json['error'] = $this->language->get('error_permission');
|
||
|
}
|
||
|
|
||
|
if (!$json) {
|
||
|
$this->load->model('setting/setting');
|
||
|
|
||
|
$this->model_setting_setting->editSetting('report_sale_tax', $this->request->post);
|
||
|
|
||
|
$json['success'] = $this->language->get('text_success');
|
||
|
}
|
||
|
|
||
|
$this->response->addHeader('Content-Type: application/json');
|
||
|
$this->response->setOutput(json_encode($json));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function report(): void {
|
||
|
$this->load->language('extension/opencart/report/sale_tax');
|
||
|
|
||
|
$data['list'] = $this->getReport();
|
||
|
|
||
|
$this->load->model('localisation/order_status');
|
||
|
|
||
|
$data['order_statuses'] = $this->model_localisation_order_status->getOrderStatuses();
|
||
|
|
||
|
$data['groups'] = [];
|
||
|
|
||
|
$data['groups'][] = [
|
||
|
'text' => $this->language->get('text_year'),
|
||
|
'value' => 'year',
|
||
|
];
|
||
|
|
||
|
$data['groups'][] = [
|
||
|
'text' => $this->language->get('text_month'),
|
||
|
'value' => 'month',
|
||
|
];
|
||
|
|
||
|
$data['groups'][] = [
|
||
|
'text' => $this->language->get('text_week'),
|
||
|
'value' => 'week',
|
||
|
];
|
||
|
|
||
|
$data['groups'][] = [
|
||
|
'text' => $this->language->get('text_day'),
|
||
|
'value' => 'day',
|
||
|
];
|
||
|
|
||
|
$data['user_token'] = $this->session->data['user_token'];
|
||
|
|
||
|
$this->response->setOutput($this->load->view('extension/opencart/report/sale_tax', $data));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function list(): void {
|
||
|
$this->load->language('extension/opencart/report/sale_tax');
|
||
|
|
||
|
$this->response->setOutput($this->getReport());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getReport(): string {
|
||
|
if (isset($this->request->get['filter_date_start'])) {
|
||
|
$filter_date_start = $this->request->get['filter_date_start'];
|
||
|
} else {
|
||
|
$filter_date_start = '';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['filter_date_end'])) {
|
||
|
$filter_date_end = $this->request->get['filter_date_end'];
|
||
|
} else {
|
||
|
$filter_date_end = '';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['filter_group'])) {
|
||
|
$filter_group = $this->request->get['filter_group'];
|
||
|
} else {
|
||
|
$filter_group = 'week';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['filter_order_status_id'])) {
|
||
|
$filter_order_status_id = (int)$this->request->get['filter_order_status_id'];
|
||
|
} else {
|
||
|
$filter_order_status_id = 0;
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$page = (int)$this->request->get['page'];
|
||
|
} else {
|
||
|
$page = 1;
|
||
|
}
|
||
|
|
||
|
$data['orders'] = [];
|
||
|
|
||
|
$filter_data = [
|
||
|
'filter_date_start' => $filter_date_start,
|
||
|
'filter_date_end' => $filter_date_end,
|
||
|
'filter_group' => $filter_group,
|
||
|
'filter_order_status_id' => $filter_order_status_id,
|
||
|
'start' => ($page - 1) * $this->config->get('config_pagination'),
|
||
|
'limit' => $this->config->get('config_pagination')
|
||
|
];
|
||
|
|
||
|
$this->load->model('extension/opencart/report/sale');
|
||
|
|
||
|
$order_total = $this->model_extension_opencart_report_sale->getTotalTaxes($filter_data);
|
||
|
|
||
|
$data['orders'] = [];
|
||
|
|
||
|
$results = $this->model_extension_opencart_report_sale->getTaxes($filter_data);
|
||
|
|
||
|
foreach ($results as $result) {
|
||
|
$data['orders'][] = [
|
||
|
'date_start' => date($this->language->get('date_format_short'), strtotime($result['date_start'])),
|
||
|
'date_end' => date($this->language->get('date_format_short'), strtotime($result['date_end'])),
|
||
|
'title' => $result['title'],
|
||
|
'orders' => $result['orders'],
|
||
|
'total' => $this->currency->format($result['total'], $this->config->get('config_currency'))
|
||
|
];
|
||
|
}
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['filter_date_start'])) {
|
||
|
$url .= '&filter_date_start=' . $this->request->get['filter_date_start'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['filter_date_end'])) {
|
||
|
$url .= '&filter_date_end=' . $this->request->get['filter_date_end'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['filter_group'])) {
|
||
|
$url .= '&filter_group=' . $this->request->get['filter_group'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['filter_order_status_id'])) {
|
||
|
$url .= '&filter_order_status_id=' . $this->request->get['filter_order_status_id'];
|
||
|
}
|
||
|
|
||
|
$data['pagination'] = $this->load->controller('common/pagination', [
|
||
|
'total' => $order_total,
|
||
|
'page' => $page,
|
||
|
'limit' => $this->config->get('config_pagination'),
|
||
|
'url' => $this->url->link('extension/opencart/report/sale_tax.report', 'user_token=' . $this->session->data['user_token'] . '&code=sale_tax' . $url . '&page={page}')
|
||
|
]);
|
||
|
|
||
|
$data['results'] = sprintf($this->language->get('text_pagination'), ($order_total) ? (($page - 1) * $this->config->get('config_pagination')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination')) > ($order_total - $this->config->get('config_pagination'))) ? $order_total : ((($page - 1) * $this->config->get('config_pagination')) + $this->config->get('config_pagination')), $order_total, ceil($order_total / $this->config->get('config_pagination')));
|
||
|
|
||
|
$data['filter_date_start'] = $filter_date_start;
|
||
|
$data['filter_date_end'] = $filter_date_end;
|
||
|
$data['filter_group'] = $filter_group;
|
||
|
$data['filter_order_status_id'] = $filter_order_status_id;
|
||
|
|
||
|
$data['user_token'] = $this->session->data['user_token'];
|
||
|
|
||
|
return $this->load->view('extension/opencart/report/sale_tax_list', $data);
|
||
|
}
|
||
|
}
|