Вопрос

I want to place order programmatically using cash on delivery method for COD.

What value I need to pass? please help me to solve this?

Это было полезно?

Решение

You can assign by cashondelivery

Something like this

$quote->setPaymentMethod('cashondelivery');

$quote->getPayment()->importData(['method' => 'cashondelivery']);
$quote->collectTotals()->save();

$quote = $this->cartRepositoryInterface->get($quote->getId());
$order = $this->cartManagementInterface->submit($quote);
Лицензировано под: CC-BY-SA с атрибуция
Не связан с magento.stackexchange
scroll top