简体   繁体   中英

Opencart new shippping module error while checkout

Warning: Shipping method required!
When i proceed to checkout with a new shipping module. 仅在我的新模块中警告

My model code is given below:

if ($status) {
    $quote_data = array();

    $quote_data['ndz.ndz'] = array(
        'code'         => 'ndz',
        'title'        => $this->config->get('ndz_name'),
        'cost'         => $this->config->get('ndz_amount'),
    'text'         => $this->currency->format($this->config->get('ndz_amount'))
    );

    $method_data = array(
        'code'       => 'ndz',
        'title'      => $this->language->get('text_title'),
        'quote'      => $quote_data,
    'sort_order' => $this->config->get('ndz_sort_order'),
    'name' => $this->config->get('ndz_name'),
    'amount' => $this->config->get('ndz_amount'),
        'error'      => false
    );
}

return $method_data;

Help?

Try changing your

$quote_data['ndz.ndz'] = array(
    'code'         => 'ndz',

to

$quote_data['ndz'] = array(
    'code'         => 'ndz.ndz',

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM