williankeller / magento2-split-order

[DEPRECATED] This extension allows your Magento store to split the order into an order for each item in the cart.
https://magestat.com/extensions/magento2-split-order
Open Software License 3.0
65 stars 24 forks source link

Set Different Shipping Method for Each Order #31

Open ninjacoder30 opened 5 years ago

ninjacoder30 commented 5 years ago

I am able to split the order based on the Stock Status but the problem i am facing is when i am trying to set shipping method to the order.

Actually i want to set different Shipping Method to both the order. e.g. first Order i want to set Shipping as free shipping and 2nd as Flat rate.

Below is the code used to set the shipping method for 2nd order but i am getting The shipping method is missing. Select the shipping method and try again.

$quote->getShippingAddress()->setShippingAmount($total)
            ->setShippingMethod('freeshipping_freeshipping'); 

Also Tried Below Code Same Issue. The shipping method is missing. Select the shipping method and try again.

use Magento\Quote\Model\Quote\Address\Rate

          $this->shippingRate
            ->setCode('freeshipping_freeshipping')
            ->setCarrierTitle($carrierTitle)
            ->setPrice($total);

        $shippingAddress = $quote->getShippingAddress();

        $shippingAddress->setCollectShippingRates(true)
                        ->collectShippingRates()
                        ->setShippingMethod('freeshipping_freeshipping');

        $quote->getShippingAddress()->addShippingRate($this->shippingRate);


Please Help