예제 #1
0
 /**
  * Set shipping method to quote, if needed
  *
  * @param string $methodCode
  * @return void
  */
 public function updateShippingMethod($methodCode)
 {
     parent::updateShippingMethod($methodCode);
     $this->quoteRepository->save($this->_quote);
 }
예제 #2
0
파일: Checkout.php 프로젝트: aiesh/magento2
 /**
  * Set shipping method to quote, if needed
  *
  * @param string $methodCode
  * @return void
  */
 public function updateShippingMethod($methodCode)
 {
     parent::updateShippingMethod($methodCode);
     $this->_quote->save();
 }