Нужно, чтобы заказ завершался на выборе Шага 5 Доставка.
Откройте файл
/controllers/front/OrderController.php и после:
Код:
$orderTotal = $this->context->cart->getOrderTotal();
добавьте:
Код:
$bankwire = Module::getInstanceByName('bankwire');
$bankwire->validateOrder($this->context->cart->id, Configuration::get('PS_OS_BANKWIRE'), $orderTotal, $bankwire->displayName, NULL, array(), (int)$this->context->currency->id, false, $this->context->customer->secure_key);
Tools::redirect('index.html?controller=order-confirmation&id_cart='.$this->context->cart->id.'&id_module='.$bankwire->id.'&id_order='.$bankwire->currentOrder.'&key='.$this->context->customer->secure_key);
Модуль "
bankwire" должен быть установлен и доступен для всех покупателей.