Ekdant-Online-Store/extension/opencart/admin/controller/report/customer_transaction.php
2024-08-06 18:06:00 +05:45

180 lines
6.4 KiB
PHP

<?php
namespace Opencart\Admin\Controller\Extension\Opencart\Report;
/**
* Class CustomerTransaction
*
* @package Opencart\Admin\Controller\Extension\Opencart\Report
*/
class CustomerTransaction extends \Opencart\System\Engine\Controller {
/**
* @return void
*/
public function index(): void {
$this->load->language('extension/opencart/report/customer_transaction');
$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/customer_transaction', 'user_token=' . $this->session->data['user_token'])
];
$data['save'] = $this->url->link('extension/opencart/report/customer_transaction.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_customer_transaction_status'] = $this->config->get('report_customer_transaction_status');
$data['report_customer_transaction_sort_order'] = $this->config->get('report_customer_transaction_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/customer_transaction_form', $data));
}
/**
* @return void
*/
public function save(): void {
$this->load->language('extension/opencart/report/customer_transaction');
$json = [];
if (!$this->user->hasPermission('modify', 'extension/opencart/report/customer_transaction')) {
$json['error'] = $this->language->get('error_permission');
}
if (!$json) {
$this->load->model('setting/setting');
$this->model_setting_setting->editSetting('report_customer_transaction', $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/customer_transaction');
$data['list'] = $this->getReport();
$data['user_token'] = $this->session->data['user_token'];
$this->response->setOutput($this->load->view('extension/opencart/report/customer_transaction', $data));
}
/**
* @return void
*/
public function list(): void {
$this->load->language('extension/opencart/report/customer_transaction');
$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_customer'])) {
$filter_customer = $this->request->get['filter_customer'];
} else {
$filter_customer = '';
}
if (isset($this->request->get['page'])) {
$page = (int)$this->request->get['page'];
} else {
$page = 1;
}
$data['customers'] = [];
$filter_data = [
'filter_date_start' => $filter_date_start,
'filter_date_end' => $filter_date_end,
'filter_customer' => $filter_customer,
'start' => ($page - 1) * $this->config->get('config_pagination'),
'limit' => $this->config->get('config_pagination')
];
$this->load->model('extension/opencart/report/customer_transaction');
$customer_total = $this->model_extension_opencart_report_customer_transaction->getTotalTransactions($filter_data);
$results = $this->model_extension_opencart_report_customer_transaction->getTransactions($filter_data);
foreach ($results as $result) {
$data['customers'][] = [
'customer' => $result['customer'],
'email' => $result['email'],
'customer_group' => $result['customer_group'],
'status' => ($result['status'] ? $this->language->get('text_enabled') : $this->language->get('text_disabled')),
'total' => $this->currency->format($result['total'], $this->config->get('config_currency')),
'edit' => $this->url->link('customer/customer.form', 'user_token=' . $this->session->data['user_token'] . '&customer_id=' . $result['customer_id'])
];
}
$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_customer'])) {
$url .= '&filter_customer=' . urlencode($this->request->get['filter_customer']);
}
$data['pagination'] = $this->load->controller('common/pagination', [
'total' => $customer_total,
'page' => $page,
'limit' => $this->config->get('config_pagination'),
'url' => $this->url->link('extension/opencart/report/customer_transaction.report', 'user_token=' . $this->session->data['user_token'] . '&code=customer_transaction' . $url . '&page={page}')
]);
$data['results'] = sprintf($this->language->get('text_pagination'), ($customer_total) ? (($page - 1) * $this->config->get('config_pagination')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination')) > ($customer_total - $this->config->get('config_pagination'))) ? $customer_total : ((($page - 1) * $this->config->get('config_pagination')) + $this->config->get('config_pagination')), $customer_total, ceil($customer_total / $this->config->get('config_pagination')));
$data['filter_date_start'] = $filter_date_start;
$data['filter_date_end'] = $filter_date_end;
$data['filter_customer'] = $filter_customer;
$data['user_token'] = $this->session->data['user_token'];
return $this->load->view('extension/opencart/report/customer_transaction_list', $data);
}
}