cancel
Showing results for 
Search instead for 
Did you mean: 

Create Order with tablerates

   Did you know you can see the translated content as per your choice?

Create Order with tablerates

I'm trying to place an order programmatically with tablerates. Here is my code
```
$quote->getShippingAddress()->addData($postData['shipping_address']);
$quote->getBillingAddress()->addData($postData['billing_address']);

/** @var \Magento\Quote\Model\Quote\Address $shippingAddress */
$shippingAddress= $quote->getShippingAddress();
$shippingAddress
->removeAllShippingRates()
->setCollectShippingRates(true)
->collectShippingRates()
->setShippingMethod('tablerate_bestway') //shipping method
->setShippingDescription('Table Rate - Best Way');

$this->handlePayment('banktransfer');
$quote->setPayment($this->payment);
$quote->setCheckoutMethod(QuoteManagement::METHOD_GUEST);
$quote->save();

$quote->collectTotals();
$orderId = $this->cartManagement->placeOrder($quote->getId());
$order = $this->orderResource->load($this->order, $orderId);

```

I'm constantly getting *** Please specify a shipping method***. In QuoteValidator it trie€ to get the rate $rate = $quote->getShippingAddress()->getShippingRateByCode($method); which always returns false. tablerates is setup as I can use this when placing an Order with the Rest api

how can I place this order with tablerates prgrammatically?
1 REPLY 1

Re: Create Order with tablerates