1: <?php
2: namespace Opencart\Admin\Controller\Localisation;
3: /**
4: * Class Order Status
5: *
6: * @package Opencart\Admin\Controller\Localisation
7: */
8: class OrderStatus extends \Opencart\System\Engine\Controller {
9: /**
10: * Index
11: *
12: * @return void
13: */
14: public function index(): void {
15: $this->load->language('localisation/order_status');
16:
17: $this->document->setTitle($this->language->get('heading_title'));
18:
19: $url = '';
20:
21: if (isset($this->request->get['sort'])) {
22: $url .= '&sort=' . $this->request->get['sort'];
23: }
24:
25: if (isset($this->request->get['order'])) {
26: $url .= '&order=' . $this->request->get['order'];
27: }
28:
29: if (isset($this->request->get['page'])) {
30: $url .= '&page=' . $this->request->get['page'];
31: }
32:
33: $data['breadcrumbs'] = [];
34:
35: $data['breadcrumbs'][] = [
36: 'text' => $this->language->get('text_home'),
37: 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
38: ];
39:
40: $data['breadcrumbs'][] = [
41: 'text' => $this->language->get('heading_title'),
42: 'href' => $this->url->link('localisation/order_status', 'user_token=' . $this->session->data['user_token'] . $url)
43: ];
44:
45: $data['add'] = $this->url->link('localisation/order_status.form', 'user_token=' . $this->session->data['user_token'] . $url);
46: $data['delete'] = $this->url->link('localisation/order_status.delete', 'user_token=' . $this->session->data['user_token']);
47:
48: $data['list'] = $this->getList();
49:
50: $data['user_token'] = $this->session->data['user_token'];
51:
52: $data['header'] = $this->load->controller('common/header');
53: $data['column_left'] = $this->load->controller('common/column_left');
54: $data['footer'] = $this->load->controller('common/footer');
55:
56: $this->response->setOutput($this->load->view('localisation/order_status', $data));
57: }
58:
59: /**
60: * List
61: *
62: * @return void
63: */
64: public function list(): void {
65: $this->load->language('localisation/order_status');
66:
67: $this->response->setOutput($this->getList());
68: }
69:
70: /**
71: * Get List
72: *
73: * @return string
74: */
75: protected function getList(): string {
76: if (isset($this->request->get['sort'])) {
77: $sort = (string)$this->request->get['sort'];
78: } else {
79: $sort = 'name';
80: }
81:
82: if (isset($this->request->get['order'])) {
83: $order = (string)$this->request->get['order'];
84: } else {
85: $order = 'ASC';
86: }
87:
88: if (isset($this->request->get['page'])) {
89: $page = (int)$this->request->get['page'];
90: } else {
91: $page = 1;
92: }
93:
94: $url = '';
95:
96: if (isset($this->request->get['sort'])) {
97: $url .= '&sort=' . $this->request->get['sort'];
98: }
99:
100: if (isset($this->request->get['order'])) {
101: $url .= '&order=' . $this->request->get['order'];
102: }
103:
104: if (isset($this->request->get['page'])) {
105: $url .= '&page=' . $this->request->get['page'];
106: }
107:
108: $data['action'] = $this->url->link('localisation/order_status.list', 'user_token=' . $this->session->data['user_token'] . $url);
109:
110: $data['order_statuses'] = [];
111:
112: $filter_data = [
113: 'sort' => $sort,
114: 'order' => $order,
115: 'start' => ($page - 1) * $this->config->get('config_pagination_admin'),
116: 'limit' => $this->config->get('config_pagination_admin')
117: ];
118:
119: $this->load->model('localisation/order_status');
120:
121: $results = $this->model_localisation_order_status->getOrderStatuses($filter_data);
122:
123: foreach ($results as $result) {
124: $data['order_statuses'][] = [
125: 'order_status_id' => $result['order_status_id'],
126: 'name' => $result['name'] . (($result['order_status_id'] == $this->config->get('config_order_status_id')) ? $this->language->get('text_default') : ''),
127: 'edit' => $this->url->link('localisation/order_status.form', 'user_token=' . $this->session->data['user_token'] . '&order_status_id=' . $result['order_status_id'] . $url)
128: ];
129: }
130:
131: $url = '';
132:
133: if ($order == 'ASC') {
134: $url .= '&order=DESC';
135: } else {
136: $url .= '&order=ASC';
137: }
138:
139: $data['sort_name'] = $this->url->link('localisation/order_status.list', 'user_token=' . $this->session->data['user_token'] . '&sort=name' . $url);
140:
141: $url = '';
142:
143: if (isset($this->request->get['sort'])) {
144: $url .= '&sort=' . $this->request->get['sort'];
145: }
146:
147: if (isset($this->request->get['order'])) {
148: $url .= '&order=' . $this->request->get['order'];
149: }
150:
151: $order_status_total = $this->model_localisation_order_status->getTotalOrderStatuses();
152:
153: $data['pagination'] = $this->load->controller('common/pagination', [
154: 'total' => $order_status_total,
155: 'page' => $page,
156: 'limit' => $this->config->get('config_pagination_admin'),
157: 'url' => $this->url->link('localisation/order_status.list', 'user_token=' . $this->session->data['user_token'] . $url . '&page={page}')
158: ]);
159:
160: $data['results'] = sprintf($this->language->get('text_pagination'), ($order_status_total) ? (($page - 1) * $this->config->get('config_pagination_admin')) + 1 : 0, ((($page - 1) * $this->config->get('config_pagination_admin')) > ($order_status_total - $this->config->get('config_pagination_admin'))) ? $order_status_total : ((($page - 1) * $this->config->get('config_pagination_admin')) + $this->config->get('config_pagination_admin')), $order_status_total, ceil($order_status_total / $this->config->get('config_pagination_admin')));
161:
162: $data['sort'] = $sort;
163: $data['order'] = $order;
164:
165: return $this->load->view('localisation/order_status_list', $data);
166: }
167:
168: /**
169: * Form
170: *
171: * @return void
172: */
173: public function form(): void {
174: $this->load->language('localisation/order_status');
175:
176: $this->document->setTitle($this->language->get('heading_title'));
177:
178: $data['text_form'] = !isset($this->request->get['order_status_id']) ? $this->language->get('text_add') : $this->language->get('text_edit');
179:
180: $url = '';
181:
182: if (isset($this->request->get['sort'])) {
183: $url .= '&sort=' . $this->request->get['sort'];
184: }
185:
186: if (isset($this->request->get['order'])) {
187: $url .= '&order=' . $this->request->get['order'];
188: }
189:
190: if (isset($this->request->get['page'])) {
191: $url .= '&page=' . $this->request->get['page'];
192: }
193:
194: $data['breadcrumbs'] = [];
195:
196: $data['breadcrumbs'][] = [
197: 'text' => $this->language->get('text_home'),
198: 'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])
199: ];
200:
201: $data['breadcrumbs'][] = [
202: 'text' => $this->language->get('heading_title'),
203: 'href' => $this->url->link('localisation/order_status', 'user_token=' . $this->session->data['user_token'] . $url)
204: ];
205:
206: $data['save'] = $this->url->link('localisation/order_status.save', 'user_token=' . $this->session->data['user_token']);
207: $data['back'] = $this->url->link('localisation/order_status', 'user_token=' . $this->session->data['user_token'] . $url);
208:
209: if (isset($this->request->get['order_status_id'])) {
210: $data['order_status_id'] = (int)$this->request->get['order_status_id'];
211: } else {
212: $data['order_status_id'] = 0;
213: }
214:
215: $this->load->model('localisation/language');
216:
217: $data['languages'] = $this->model_localisation_language->getLanguages();
218:
219: if (isset($this->request->get['order_status_id'])) {
220: $this->load->model('localisation/order_status');
221:
222: $data['order_status'] = $this->model_localisation_order_status->getDescriptions($this->request->get['order_status_id']);
223: } else {
224: $data['order_status'] = [];
225: }
226:
227: $data['user_token'] = $this->session->data['user_token'];
228:
229: $data['header'] = $this->load->controller('common/header');
230: $data['column_left'] = $this->load->controller('common/column_left');
231: $data['footer'] = $this->load->controller('common/footer');
232:
233: $this->response->setOutput($this->load->view('localisation/order_status_form', $data));
234: }
235:
236: /**
237: * Save
238: *
239: * @return void
240: */
241: public function save(): void {
242: $this->load->language('localisation/order_status');
243:
244: $json = [];
245:
246: if (!$this->user->hasPermission('modify', 'localisation/order_status')) {
247: $json['error']['warning'] = $this->language->get('error_permission');
248: }
249:
250: foreach ($this->request->post['order_status'] as $language_id => $value) {
251: if ((oc_strlen($value['name']) < 3) || (oc_strlen($value['name']) > 32)) {
252: $json['error']['name_' . $language_id] = $this->language->get('error_name');
253: }
254: }
255:
256: if (!$json) {
257: $this->load->model('localisation/order_status');
258:
259:
260: foreach ($this->request->post['order_status'] as $language_id => $value) {
261:
262: }
263:
264:
265: if (!$this->request->post['order_status_id']) {
266: $json['order_status_id'] = $this->model_localisation_order_status->addOrderStatus($this->request->post);
267: } else {
268: $this->model_localisation_order_status->editOrderStatus($this->request->post['order_status_id'], $this->request->post);
269: }
270:
271: $json['success'] = $this->language->get('text_success');
272: }
273:
274: $this->response->addHeader('Content-Type: application/json');
275: $this->response->setOutput(json_encode($json));
276: }
277:
278: /**
279: * Delete
280: *
281: * @return void
282: */
283: public function delete(): void {
284: $this->load->language('localisation/order_status');
285:
286: $json = [];
287:
288: if (isset($this->request->post['selected'])) {
289: $selected = $this->request->post['selected'];
290: } else {
291: $selected = [];
292: }
293:
294: if (!$this->user->hasPermission('modify', 'localisation/order_status')) {
295: $json['error'] = $this->language->get('error_permission');
296: }
297:
298: $this->load->model('setting/store');
299: $this->load->model('sale/order');
300:
301: foreach ($selected as $order_status_id) {
302: if ($this->config->get('config_order_status_id') == $order_status_id) {
303: $json['error'] = $this->language->get('error_default');
304: }
305:
306: $order_total = $this->model_sale_order->getTotalOrdersByOrderStatusId($order_status_id);
307:
308: if ($order_total) {
309: $json['error'] = sprintf($this->language->get('error_order'), $order_total);
310: }
311:
312: $order_total = $this->model_sale_order->getTotalHistoriesByOrderStatusId($order_status_id);
313:
314: if ($order_total) {
315: $json['error'] = sprintf($this->language->get('error_order'), $order_total);
316: }
317: }
318:
319: if (!$json) {
320: $this->load->model('localisation/order_status');
321:
322: foreach ($selected as $order_status_id) {
323: $this->model_localisation_order_status->deleteOrderStatus($order_status_id);
324: }
325:
326: $json['success'] = $this->language->get('text_success');
327: }
328:
329: $this->response->addHeader('Content-Type: application/json');
330: $this->response->setOutput(json_encode($json));
331: }
332: }
333: