Frage

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?

War es hilfreich?

Lösung

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);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top