501 lines
15 KiB
PHP
501 lines
15 KiB
PHP
|
<?php
|
||
|
namespace Opencart\Admin\Controller\Sale;
|
||
|
/**
|
||
|
* Class Voucher
|
||
|
*
|
||
|
* @package Opencart\Admin\Controller\Sale
|
||
|
*/
|
||
|
class Voucher extends \Opencart\System\Engine\Controller {
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function index(): void {
|
||
|
$this->load->language('sale/voucher');
|
||
|
|
||
|
$this->document->setTitle($this->language->get('heading_title'));
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$url .= '&page=' . $this->request->get['page'];
|
||
|
}
|
||
|
|
||
|
$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('heading_title'),
|
||
|
'href' => $this->url->link('sale/voucher', 'user_token=' . $this->session->data['user_token'] . $url)
|
||
|
];
|
||
|
|
||
|
$data['add'] = $this->url->link('sale/voucher.form', 'user_token=' . $this->session->data['user_token'] . $url);
|
||
|
$data['delete'] = $this->url->link('sale/voucher.delete', 'user_token=' . $this->session->data['user_token']);
|
||
|
|
||
|
$data['list'] = $this->getList();
|
||
|
|
||
|
$data['user_token'] = $this->session->data['user_token'];
|
||
|
|
||
|
$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('sale/voucher', $data));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function list(): void {
|
||
|
$this->load->language('sale/voucher');
|
||
|
|
||
|
$this->response->setOutput($this->getList());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function getList(): string {
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$sort = (string)$this->request->get['sort'];
|
||
|
} else {
|
||
|
$sort = 'v.date_added';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$order = (string)$this->request->get['order'];
|
||
|
} else {
|
||
|
$order = 'DESC';
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$page = (int)$this->request->get['page'];
|
||
|
} else {
|
||
|
$page = 1;
|
||
|
}
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$url .= '&page=' . $this->request->get['page'];
|
||
|
}
|
||
|
|
||
|
$data['action'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . $url);
|
||
|
|
||
|
$data['vouchers'] = [];
|
||
|
|
||
|
$filter_data = [
|
||
|
'sort' => $sort,
|
||
|
'order' => $order,
|
||
|
'start' => ($page - 1) * $this->config->get('config_pagination_admin'),
|
||
|
'limit' => $this->config->get('config_pagination_admin')
|
||
|
];
|
||
|
|
||
|
$this->load->model('sale/voucher');
|
||
|
|
||
|
$voucher_total = $this->model_sale_voucher->getTotalVouchers();
|
||
|
|
||
|
$results = $this->model_sale_voucher->getVouchers($filter_data);
|
||
|
|
||
|
foreach ($results as $result) {
|
||
|
if ($result['order_id']) {
|
||
|
$order_href = $this->url->link('sale/order.info', 'user_token=' . $this->session->data['user_token'] . '&order_id=' . $result['order_id'] . $url);
|
||
|
} else {
|
||
|
$order_href = '';
|
||
|
}
|
||
|
|
||
|
$data['vouchers'][] = [
|
||
|
'voucher_id' => $result['voucher_id'],
|
||
|
'code' => $result['code'],
|
||
|
'status' => $result['status'],
|
||
|
'from' => $result['from_name'],
|
||
|
'to' => $result['to_name'],
|
||
|
'theme' => $result['theme'],
|
||
|
'amount' => $this->currency->format($result['amount'], $this->config->get('config_currency')),
|
||
|
'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added'])),
|
||
|
'edit' => $this->url->link('sale/voucher.form', 'user_token=' . $this->session->data['user_token'] . '&voucher_id=' . $result['voucher_id'] . $url),
|
||
|
'order' => $order_href
|
||
|
];
|
||
|
}
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if ($order == 'ASC') {
|
||
|
$url .= '&order=DESC';
|
||
|
} else {
|
||
|
$url .= '&order=ASC';
|
||
|
}
|
||
|
|
||
|
$data['sort_code'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=v.code' . $url);
|
||
|
$data['sort_from'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=v.from_name' . $url);
|
||
|
$data['sort_to'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=v.to_name' . $url);
|
||
|
$data['sort_theme'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=theme' . $url);
|
||
|
$data['sort_amount'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=v.amount' . $url);
|
||
|
$data['sort_status'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=v.status' . $url);
|
||
|
$data['sort_date_added'] = $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . '&sort=v.date_added' . $url);
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
$data['pagination'] = $this->load->controller('common/pagination', [
|
||
|
'total' => $voucher_total,
|
||
|
'page' => $page,
|
||
|
'limit' => $this->config->get('config_pagination_admin'),
|
||
|
'url' => $this->url->link('sale/voucher.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
|
||
|
]);
|
||
|
|
||
|
$data['results'] = sprintf($this->language->get('text_pagination'), ($voucher_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($voucher_total - $this->config->get('config_pagination_admin'))) ? $voucher_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $voucher_total, ceil($voucher_total / $this->config->get('config_pagination_admin')));
|
||
|
|
||
|
$data['sort'] = $sort;
|
||
|
$data['order'] = $order;
|
||
|
|
||
|
return $this->load->view('sale/voucher_list', $data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function form(): void {
|
||
|
$this->load->language('sale/voucher');
|
||
|
|
||
|
$this->document->setTitle($this->language->get('heading_title'));
|
||
|
|
||
|
$data['text_form'] = !isset($this->request->get['voucher_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
|
||
|
|
||
|
$url = '';
|
||
|
|
||
|
if (isset($this->request->get['sort'])) {
|
||
|
$url .= '&sort=' . $this->request->get['sort'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['order'])) {
|
||
|
$url .= '&order=' . $this->request->get['order'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page'])) {
|
||
|
$url .= '&page=' . $this->request->get['page'];
|
||
|
}
|
||
|
|
||
|
$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('heading_title'),
|
||
|
'href' => $this->url->link('sale/voucher', 'user_token=' . $this->session->data['user_token'] . $url)
|
||
|
];
|
||
|
|
||
|
$data['save'] = $this->url->link('sale/voucher.save', 'user_token=' . $this->session->data['user_token']);
|
||
|
$data['back'] = $this->url->link('sale/voucher', 'user_token=' . $this->session->data['user_token'] . $url);
|
||
|
|
||
|
if (isset($this->request->get['voucher_id'])) {
|
||
|
$this->load->model('sale/voucher');
|
||
|
|
||
|
$voucher_info = $this->model_sale_voucher->getVoucher($this->request->get['voucher_id']);
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['voucher_id'])) {
|
||
|
$data['voucher_id'] = (int)$this->request->get['voucher_id'];
|
||
|
} else {
|
||
|
$data['voucher_id'] = 0;
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['code'] = $voucher_info['code'];
|
||
|
} else {
|
||
|
$data['code'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['from_name'] = $voucher_info['from_name'];
|
||
|
} else {
|
||
|
$data['from_name'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['from_email'] = $voucher_info['from_email'];
|
||
|
} else {
|
||
|
$data['from_email'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['to_name'] = $voucher_info['to_name'];
|
||
|
} else {
|
||
|
$data['to_name'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['to_email'] = $voucher_info['to_email'];
|
||
|
} else {
|
||
|
$data['to_email'] = '';
|
||
|
}
|
||
|
|
||
|
$this->load->model('sale/voucher_theme');
|
||
|
|
||
|
$data['voucher_themes'] = $this->model_sale_voucher_theme->getVoucherThemes();
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['voucher_theme_id'] = $voucher_info['voucher_theme_id'];
|
||
|
} else {
|
||
|
$data['voucher_theme_id'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['message'] = $voucher_info['message'];
|
||
|
} else {
|
||
|
$data['message'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['amount'] = $voucher_info['amount'];
|
||
|
} else {
|
||
|
$data['amount'] = '';
|
||
|
}
|
||
|
|
||
|
if (!empty($voucher_info)) {
|
||
|
$data['status'] = $voucher_info['status'];
|
||
|
} else {
|
||
|
$data['status'] = true;
|
||
|
}
|
||
|
|
||
|
$data['history'] = $this->getHistory();
|
||
|
|
||
|
$data['user_token'] = $this->session->data['user_token'];
|
||
|
|
||
|
$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('sale/voucher_form', $data));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function save(): void {
|
||
|
$this->load->language('sale/voucher');
|
||
|
|
||
|
$json = [];
|
||
|
|
||
|
if (!$this->user->hasPermission('modify', 'sale/voucher')) {
|
||
|
$json['error']['warning'] = $this->language->get('error_permission');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['code']) < 3) || (oc_strlen($this->request->post['code']) > 10)) {
|
||
|
$json['error']['code'] = $this->language->get('error_code');
|
||
|
}
|
||
|
|
||
|
$this->load->model('sale/voucher');
|
||
|
|
||
|
$voucher_info = $this->model_sale_voucher->getVoucherByCode($this->request->post['code']);
|
||
|
|
||
|
if ($voucher_info) {
|
||
|
if (!isset($this->request->post['voucher_id'])) {
|
||
|
$json['error']['warning'] = $this->language->get('error_exists');
|
||
|
} elseif ($voucher_info['voucher_id'] != (int)$this->request->post['voucher_id']) {
|
||
|
$json['error']['warning'] = $this->language->get('error_exists');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['to_name']) < 1) || (oc_strlen($this->request->post['to_name']) > 64)) {
|
||
|
$json['error']['to_name'] = $this->language->get('error_to_name');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['to_email']) > 96) || !filter_var($this->request->post['to_email'], FILTER_VALIDATE_EMAIL)) {
|
||
|
$json['error']['to_email'] = $this->language->get('error_email');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['from_name']) < 1) || (oc_strlen($this->request->post['from_name']) > 64)) {
|
||
|
$json['error']['from_name'] = $this->language->get('error_from_name');
|
||
|
}
|
||
|
|
||
|
if ((oc_strlen($this->request->post['from_email']) > 96) || !filter_var($this->request->post['from_email'], FILTER_VALIDATE_EMAIL)) {
|
||
|
$json['error']['from_email'] = $this->language->get('error_email');
|
||
|
}
|
||
|
|
||
|
if ($this->request->post['amount'] < 1) {
|
||
|
$json['error']['amount'] = $this->language->get('error_amount');
|
||
|
}
|
||
|
|
||
|
if (!$json) {
|
||
|
if (!$this->request->post['voucher_id']) {
|
||
|
$json['voucher_id'] = $this->model_sale_voucher->addVoucher($this->request->post);
|
||
|
} else {
|
||
|
$this->model_sale_voucher->editVoucher($this->request->post['voucher_id'], $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 delete(): void {
|
||
|
$this->load->language('sale/voucher');
|
||
|
|
||
|
$json = [];
|
||
|
|
||
|
if (isset($this->request->post['selected'])) {
|
||
|
$selected = $this->request->post['selected'];
|
||
|
} else {
|
||
|
$selected = [];
|
||
|
}
|
||
|
|
||
|
if (!$this->user->hasPermission('modify', 'sale/voucher')) {
|
||
|
$json['error'] = $this->language->get('error_permission');
|
||
|
}
|
||
|
|
||
|
$this->load->model('sale/order');
|
||
|
|
||
|
foreach ($selected as $voucher_id) {
|
||
|
$order_voucher_info = $this->model_sale_order->getVoucherByVoucherId($voucher_id);
|
||
|
|
||
|
if ($order_voucher_info) {
|
||
|
$json['error'] = sprintf($this->language->get('error_order'), $this->url->link('sale/order.info', 'user_token=' . $this->session->data['user_token'] . '&order_id=' . $order_voucher_info['order_id']));
|
||
|
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (!$json) {
|
||
|
$this->load->model('sale/voucher');
|
||
|
|
||
|
foreach ($selected as $voucher_id) {
|
||
|
$this->model_sale_voucher->deleteVoucher($voucher_id);
|
||
|
}
|
||
|
|
||
|
$json['success'] = $this->language->get('text_success');
|
||
|
}
|
||
|
|
||
|
$this->response->addHeader('Content-Type: application/json');
|
||
|
$this->response->setOutput(json_encode($json));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function history(): void {
|
||
|
$this->load->language('sale/voucher');
|
||
|
|
||
|
$this->response->setOutput($this->getHistory());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getHistory(): string {
|
||
|
if (isset($this->request->get['voucher_id'])) {
|
||
|
$voucher_id = (int)$this->request->get['voucher_id'];
|
||
|
} else {
|
||
|
$voucher_id = 0;
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->get['page']) && $this->request->get['route'] == 'sale/voucher.history') {
|
||
|
$page = (int)$this->request->get['page'];
|
||
|
} else {
|
||
|
$page = 1;
|
||
|
}
|
||
|
|
||
|
$limit = 10;
|
||
|
|
||
|
$data['histories'] = [];
|
||
|
|
||
|
$this->load->model('sale/voucher');
|
||
|
|
||
|
$results = $this->model_sale_voucher->getHistories($voucher_id, ($page - 1) * $limit, $limit);
|
||
|
|
||
|
foreach ($results as $result) {
|
||
|
$data['histories'][] = [
|
||
|
'order_id' => $result['order_id'],
|
||
|
'customer' => $result['customer'],
|
||
|
'amount' => $this->currency->format($result['amount'], $this->config->get('config_currency')),
|
||
|
'date_added' => date($this->language->get('date_format_short'), strtotime($result['date_added']))
|
||
|
];
|
||
|
}
|
||
|
|
||
|
$history_total = $this->model_sale_voucher->getTotalHistories($voucher_id);
|
||
|
|
||
|
$data['pagination'] = $this->load->controller('common/pagination', [
|
||
|
'total' => $history_total,
|
||
|
'page' => $page,
|
||
|
'limit' => $limit,
|
||
|
'url' => $this->url->link('sale/voucher.history', 'user_token=' . $this->session->data['user_token'] . '&voucher_id=' . $voucher_id . '&page={page}')
|
||
|
]);
|
||
|
|
||
|
$data['results'] = sprintf($this->language->get('text_pagination'), ($history_total) ? (($page - 1) * $limit) + 1 : 0, ((($page - 1) * $limit) > ($history_total - $limit)) ? $history_total : ((($page - 1) * $limit) + $limit), $history_total, ceil($history_total / $limit));
|
||
|
|
||
|
return $this->load->view('sale/voucher_history', $data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return void
|
||
|
*/
|
||
|
public function send(): void {
|
||
|
$this->load->language('mail/voucher');
|
||
|
|
||
|
$json = [];
|
||
|
|
||
|
if (!$this->user->hasPermission('modify', 'sale/voucher')) {
|
||
|
$json['error'] = $this->language->get('error_permission');
|
||
|
}
|
||
|
|
||
|
if (!$json) {
|
||
|
$this->load->model('sale/voucher');
|
||
|
|
||
|
$vouchers = [];
|
||
|
|
||
|
if (isset($this->request->post['selected'])) {
|
||
|
$vouchers = $this->request->post['selected'];
|
||
|
}
|
||
|
|
||
|
if (isset($this->request->post['voucher_id'])) {
|
||
|
$vouchers[] = $this->request->post['voucher_id'];
|
||
|
}
|
||
|
|
||
|
if ($vouchers) {
|
||
|
foreach ($vouchers as $voucher_id) {
|
||
|
$this->load->controller('mail/voucher', $voucher_id);
|
||
|
}
|
||
|
|
||
|
$json['success'] = $this->language->get('text_sent');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$this->response->addHeader('Content-Type: application/json');
|
||
|
$this->response->setOutput(json_encode($json));
|
||
|
}
|
||
|
}
|