first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
class ControllerExtensionPaymentCod extends Controller {
|
||||
public function index() {
|
||||
return $this->load->view('extension/payment/cod');
|
||||
}
|
||||
|
||||
public function confirm() {
|
||||
$json = array();
|
||||
|
||||
if (isset($this->session->data['payment_method']['code']) && $this->session->data['payment_method']['code'] == 'cod') {
|
||||
$this->load->model('checkout/order');
|
||||
|
||||
$this->model_checkout_order->addOrderHistory($this->session->data['order_id'], $this->config->get('payment_cod_order_status_id'));
|
||||
|
||||
$json['redirect'] = $this->url->link('checkout/success');
|
||||
}
|
||||
|
||||
$this->response->addHeader('Content-Type: application/json');
|
||||
$this->response->setOutput(json_encode($json));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user