load->language('checkout/payment_method'); if (isset($this->session->data['payment_method'])) { $data['payment_method'] = $this->session->data['payment_method']['name']; $data['code'] = $this->session->data['payment_method']['code']; } else { $data['payment_method'] = ''; $data['code'] = ''; } if (isset($this->session->data['comment'])) { $data['comment'] = $this->session->data['comment']; } else { $data['comment'] = ''; } $this->load->model('catalog/information'); $information_info = $this->model_catalog_information->getInformation($this->config->get('config_checkout_id')); if ($information_info) { $data['text_agree'] = sprintf($this->language->get('text_agree'), $this->url->link('information/information.info', 'language=' . $this->config->get('config_language') . '&information_id=' . $this->config->get('config_checkout_id')), $information_info['title']); } else { $data['text_agree'] = ''; } $data['language'] = $this->config->get('config_language'); return $this->load->view('checkout/payment_method', $data); } /** * @return void */ public function getMethods(): void { $this->load->language('checkout/payment_method'); $json = []; // Validate cart has products and has stock. if ((!$this->cart->hasProducts() && empty($this->session->data['vouchers'])) || (!$this->cart->hasStock() && !$this->config->get('config_stock_checkout'))) { $json['redirect'] = $this->url->link('checkout/cart', 'language=' . $this->config->get('config_language'), true); } // Validate minimum quantity requirements. $products = $this->cart->getProducts(); foreach ($products as $product) { if (!$product['minimum']) { $json['redirect'] = $this->url->link('checkout/cart', 'language=' . $this->config->get('config_language'), true); break; } } if (!$json) { // Validate if customer session data is set if (!isset($this->session->data['customer'])) { $json['error'] = $this->language->get('error_customer'); } if ($this->config->get('config_checkout_payment_address') && !isset($this->session->data['payment_address'])) { $json['error'] = $this->language->get('error_payment_address'); } // Validate shipping if ($this->cart->hasShipping()) { // Validate shipping address if (!isset($this->session->data['shipping_address']['address_id'])) { $json['error'] = $this->language->get('error_shipping_address'); } // Validate shipping method if (!isset($this->session->data['shipping_method'])) { $json['error'] = $this->language->get('error_shipping_method'); } } } if (!$json) { $payment_address = []; if ($this->config->get('config_checkout_payment_address') && isset($this->session->data['payment_address'])) { $payment_address = $this->session->data['payment_address']; } elseif ($this->config->get('config_checkout_shipping_address') && isset($this->session->data['shipping_address']['address_id'])) { $payment_address = $this->session->data['shipping_address']; } // Payment methods $this->load->model('checkout/payment_method'); $payment_methods = $this->model_checkout_payment_method->getMethods($payment_address); if ($payment_methods) { $json['payment_methods'] = $this->session->data['payment_methods'] = $payment_methods; } else { $json['error'] = sprintf($this->language->get('error_no_payment'), $this->url->link('information/contact', 'language=' . $this->config->get('config_language'))); } } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } /** * @return void */ public function save(): void { $this->load->language('checkout/payment_method'); $json = []; // Validate cart has products and has stock. if ((!$this->cart->hasProducts() && empty($this->session->data['vouchers'])) || (!$this->cart->hasStock() && !$this->config->get('config_stock_checkout'))) { $json['redirect'] = $this->url->link('checkout/cart', 'language=' . $this->config->get('config_language'), true); } // Validate minimum quantity requirements. $products = $this->cart->getProducts(); foreach ($products as $product) { if (!$product['minimum']) { $json['redirect'] = $this->url->link('checkout/cart', 'language=' . $this->config->get('config_language'), true); break; } } if (!$json) { // Validate has payment address if required if ($this->config->get('config_checkout_payment_address') && !isset($this->session->data['payment_address'])) { $json['error'] = $this->language->get('error_payment_address'); } // Validate shipping if ($this->cart->hasShipping()) { // Validate shipping address if (!isset($this->session->data['shipping_address']['address_id'])) { $json['error'] = $this->language->get('error_shipping_address'); } // Validate shipping method if (!isset($this->session->data['shipping_method'])) { $json['error'] = $this->language->get('error_shipping_method'); } } // Validate payment methods if (isset($this->request->post['payment_method']) && isset($this->session->data['payment_methods'])) { $payment = explode('.', $this->request->post['payment_method']); if (!isset($payment[0]) || !isset($payment[1]) || !isset($this->session->data['payment_methods'][$payment[0]]['option'][$payment[1]])) { $json['error'] = $this->language->get('error_payment_method'); } } else { $json['error'] = $this->language->get('error_payment_method'); } } if (!$json) { $this->session->data['payment_method'] = $this->session->data['payment_methods'][$payment[0]]['option'][$payment[1]]; $json['success'] = $this->language->get('text_success'); } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } /** * @return void */ public function comment(): void { $this->load->language('checkout/payment_method'); $json = []; if (isset($this->session->data['order_id'])) { $order_id = (int)$this->session->data['order_id']; } else { $order_id = 0; } if (!$json) { $this->session->data['comment'] = $this->request->post['comment']; $this->load->model('checkout/order'); $order_info = $this->model_checkout_order->getOrder($order_id); if ($order_info) { $this->model_checkout_order->editComment($order_id, $this->request->post['comment']); } $json['success'] = $this->language->get('text_comment'); } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } /** * @return void */ public function agree(): void { $this->load->language('checkout/payment_method'); $json = []; if (isset($this->request->post['agree'])) { $this->session->data['agree'] = $this->request->post['agree']; } else { unset($this->session->data['agree']); } $this->response->addHeader('Content-Type: application/json'); $this->response->setOutput(json_encode($json)); } }