1

注文がないことに関する他のすべてのスレッドを読みましたが、これが違うのは、支払い方法として「無料チェックアウト」と「代金引換」を使用していることです。支払い処理業者。考えられることはすべてチェックしましたが、理解できないようです。問題なく OpenCart 1.5x をしばらく使用しています。

4

2 に答える 2

0

ここに私のcod.phpがあります

<?php
class ControllerPaymentCod extends Controller {
	protected function index() {
    	$this->data['button_confirm'] = $this->language->get('button_confirm');

		$this->data['continue'] = $this->url->link('checkout/success');
		
		if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/payment/cod.tpl')) {
			$this->template = $this->config->get('config_template') . '/template/payment/cod.tpl';
		} else {
			$this->template = 'default/template/payment/cod.tpl';
		}	
		
		$this->render();
	}
	
	public function confirm() {
		$this->load->model('checkout/order');
		
		$this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('cod_order_status_id'));
	}
}
?>

于 2015-04-11T07:33:48.503 に答える
0

catalog/controller/payment/cod.php に「確認」機能はありますか?

class ControllerPaymentCod extends Controller {
protected function index() {
    $this->data['button_confirm'] = $this->language->get('button_confirm');

    $this->data['continue'] = $this->url->link('checkout/success');

    if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/payment/cod.tpl')) {
        $this->template = $this->config->get('config_template') . '/template/payment/cod.tpl';
    } else {
        $this->template = 'default/template/payment/cod.tpl';
    }

    $this->render();
}

public function confirm() {
    $this->load->model('checkout/order');

    $this->model_checkout_order->confirm($this->session->data['order_id'], $this->config->get('cod_order_status_id'), '', true);
}
}
于 2015-04-10T12:20:38.180 に答える