How can I update shipping method by using observer and event “sales_quote_collect_totals_before” magento...












0















I want to apply functionality for the customer if customer place order within 72 hrs and subtotal greater than 250 then I want to give free shipping method otherwise if above 72 hrs or subtotal is less than 250 then I do not want to show free shipping. so how can I do this? I have done following coding for this functionality.



enter code here


namespace CustomCheckoutCheckoutObserver;



use MagentoFrameworkEventObserverInterface;



class Totalsbefore implements ObserverInterface
{
/**
* custom event handler
*
* @param MagentoFrameworkEventObserver $observer
* @return void
*/



public function execute(MagentoFrameworkEventObserver $observer)
{



$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$customerSession = $objectManager->create('MagentoCustomerModelSession');



if ($customerSession->isLoggedIn()) {



$customer_id = $customerSession->getCustomer()->getId(); 


$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$orderCollection = $objectManager->create('MagentoSalesModelResourceModelOrderCollection');
$order_Collection = $orderCollection->addAttributeToFilter('customer_id',$customer_id)
->addFieldToSelect('created_at')
->addAttributeToFilter('subtotal', array('gteq' => 250))
->setPageSize(1)

->setOrder('created_at', 'desc');



                if(count($order_Collection)>0)
{

foreach($order_Collection as $order)
{
$LastOrderDate = $order->getCreatedAt();
}

$LastOrder = strtotime($LastOrderDate);
$NextTime = date("Y-m-d H:i:s", strtotime('-1 hours'));
$CheckTime = strtotime($NextTime);
$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
$subTotal = $cart->getSubtotal();
$store = $cart->getStoreId();
$carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

if($LastOrder>=$CheckTime && $subTotal<=250)
{
$hiddenMethodCode = 'freeshipping';

foreach ($carriers as $carrierCode => $carrierConfig)
{
$hiddenMethodCode = 'freeshipping';
if( $carrierCode != $hiddenMethodCode)
{

// $store->saveConfig("carriers/{$carrierCode}/active", '0');

$objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
$resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
$connection = $resource->getConnection();
$tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

//Update Data into table
$sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

// print_r($sql);
$connection->query($sql);
}
}
}else{ // < 72 && > 250

$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
$subTotal = $cart->getSubtotal();
$store = $cart->getStoreId();
$carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

$hiddenMethodCode = 'freeshipping';

foreach ($carriers as $carrierCode => $carrierConfig)
{
if( $carrierCode == $hiddenMethodCode)
{

$objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
$resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
$connection = $resource->getConnection();
$tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

//Update Data into table
$sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

$connection->query($sql);
}
}
}

}else{

$objectManager = MagentoFrameworkAppObjectManager::getInstance();
$cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
$subTotal = $cart->getSubtotal();
$store = $cart->getStoreId();
$carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

$hiddenMethodCode = 'freeshipping';

foreach ($carriers as $carrierCode => $carrierConfig)
{
if( $carrierCode == $hiddenMethodCode)
{

// $store->saveConfig("carriers/{$carrierCode}/active", '0');

$objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
$resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
$connection = $resource->getConnection();
$tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

//Update Data into table
$sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

// print_r($sql);
$connection->query($sql);
}
}
}

}


}



}









share



























    0















    I want to apply functionality for the customer if customer place order within 72 hrs and subtotal greater than 250 then I want to give free shipping method otherwise if above 72 hrs or subtotal is less than 250 then I do not want to show free shipping. so how can I do this? I have done following coding for this functionality.



    enter code here


    namespace CustomCheckoutCheckoutObserver;



    use MagentoFrameworkEventObserverInterface;



    class Totalsbefore implements ObserverInterface
    {
    /**
    * custom event handler
    *
    * @param MagentoFrameworkEventObserver $observer
    * @return void
    */



    public function execute(MagentoFrameworkEventObserver $observer)
    {



    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $customerSession = $objectManager->create('MagentoCustomerModelSession');



    if ($customerSession->isLoggedIn()) {



    $customer_id = $customerSession->getCustomer()->getId(); 


    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $orderCollection = $objectManager->create('MagentoSalesModelResourceModelOrderCollection');
    $order_Collection = $orderCollection->addAttributeToFilter('customer_id',$customer_id)
    ->addFieldToSelect('created_at')
    ->addAttributeToFilter('subtotal', array('gteq' => 250))
    ->setPageSize(1)

    ->setOrder('created_at', 'desc');



                    if(count($order_Collection)>0)
    {

    foreach($order_Collection as $order)
    {
    $LastOrderDate = $order->getCreatedAt();
    }

    $LastOrder = strtotime($LastOrderDate);
    $NextTime = date("Y-m-d H:i:s", strtotime('-1 hours'));
    $CheckTime = strtotime($NextTime);
    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
    $subTotal = $cart->getSubtotal();
    $store = $cart->getStoreId();
    $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

    if($LastOrder>=$CheckTime && $subTotal<=250)
    {
    $hiddenMethodCode = 'freeshipping';

    foreach ($carriers as $carrierCode => $carrierConfig)
    {
    $hiddenMethodCode = 'freeshipping';
    if( $carrierCode != $hiddenMethodCode)
    {

    // $store->saveConfig("carriers/{$carrierCode}/active", '0');

    $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
    $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
    $connection = $resource->getConnection();
    $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

    //Update Data into table
    $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

    // print_r($sql);
    $connection->query($sql);
    }
    }
    }else{ // < 72 && > 250

    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
    $subTotal = $cart->getSubtotal();
    $store = $cart->getStoreId();
    $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

    $hiddenMethodCode = 'freeshipping';

    foreach ($carriers as $carrierCode => $carrierConfig)
    {
    if( $carrierCode == $hiddenMethodCode)
    {

    $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
    $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
    $connection = $resource->getConnection();
    $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

    //Update Data into table
    $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

    $connection->query($sql);
    }
    }
    }

    }else{

    $objectManager = MagentoFrameworkAppObjectManager::getInstance();
    $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
    $subTotal = $cart->getSubtotal();
    $store = $cart->getStoreId();
    $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

    $hiddenMethodCode = 'freeshipping';

    foreach ($carriers as $carrierCode => $carrierConfig)
    {
    if( $carrierCode == $hiddenMethodCode)
    {

    // $store->saveConfig("carriers/{$carrierCode}/active", '0');

    $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
    $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
    $connection = $resource->getConnection();
    $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

    //Update Data into table
    $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

    // print_r($sql);
    $connection->query($sql);
    }
    }
    }

    }


    }



    }









    share

























      0












      0








      0








      I want to apply functionality for the customer if customer place order within 72 hrs and subtotal greater than 250 then I want to give free shipping method otherwise if above 72 hrs or subtotal is less than 250 then I do not want to show free shipping. so how can I do this? I have done following coding for this functionality.



      enter code here


      namespace CustomCheckoutCheckoutObserver;



      use MagentoFrameworkEventObserverInterface;



      class Totalsbefore implements ObserverInterface
      {
      /**
      * custom event handler
      *
      * @param MagentoFrameworkEventObserver $observer
      * @return void
      */



      public function execute(MagentoFrameworkEventObserver $observer)
      {



      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $customerSession = $objectManager->create('MagentoCustomerModelSession');



      if ($customerSession->isLoggedIn()) {



      $customer_id = $customerSession->getCustomer()->getId(); 


      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $orderCollection = $objectManager->create('MagentoSalesModelResourceModelOrderCollection');
      $order_Collection = $orderCollection->addAttributeToFilter('customer_id',$customer_id)
      ->addFieldToSelect('created_at')
      ->addAttributeToFilter('subtotal', array('gteq' => 250))
      ->setPageSize(1)

      ->setOrder('created_at', 'desc');



                      if(count($order_Collection)>0)
      {

      foreach($order_Collection as $order)
      {
      $LastOrderDate = $order->getCreatedAt();
      }

      $LastOrder = strtotime($LastOrderDate);
      $NextTime = date("Y-m-d H:i:s", strtotime('-1 hours'));
      $CheckTime = strtotime($NextTime);
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
      $subTotal = $cart->getSubtotal();
      $store = $cart->getStoreId();
      $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

      if($LastOrder>=$CheckTime && $subTotal<=250)
      {
      $hiddenMethodCode = 'freeshipping';

      foreach ($carriers as $carrierCode => $carrierConfig)
      {
      $hiddenMethodCode = 'freeshipping';
      if( $carrierCode != $hiddenMethodCode)
      {

      // $store->saveConfig("carriers/{$carrierCode}/active", '0');

      $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
      $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
      $connection = $resource->getConnection();
      $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

      //Update Data into table
      $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

      // print_r($sql);
      $connection->query($sql);
      }
      }
      }else{ // < 72 && > 250

      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
      $subTotal = $cart->getSubtotal();
      $store = $cart->getStoreId();
      $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

      $hiddenMethodCode = 'freeshipping';

      foreach ($carriers as $carrierCode => $carrierConfig)
      {
      if( $carrierCode == $hiddenMethodCode)
      {

      $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
      $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
      $connection = $resource->getConnection();
      $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

      //Update Data into table
      $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

      $connection->query($sql);
      }
      }
      }

      }else{

      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
      $subTotal = $cart->getSubtotal();
      $store = $cart->getStoreId();
      $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

      $hiddenMethodCode = 'freeshipping';

      foreach ($carriers as $carrierCode => $carrierConfig)
      {
      if( $carrierCode == $hiddenMethodCode)
      {

      // $store->saveConfig("carriers/{$carrierCode}/active", '0');

      $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
      $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
      $connection = $resource->getConnection();
      $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

      //Update Data into table
      $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

      // print_r($sql);
      $connection->query($sql);
      }
      }
      }

      }


      }



      }









      share














      I want to apply functionality for the customer if customer place order within 72 hrs and subtotal greater than 250 then I want to give free shipping method otherwise if above 72 hrs or subtotal is less than 250 then I do not want to show free shipping. so how can I do this? I have done following coding for this functionality.



      enter code here


      namespace CustomCheckoutCheckoutObserver;



      use MagentoFrameworkEventObserverInterface;



      class Totalsbefore implements ObserverInterface
      {
      /**
      * custom event handler
      *
      * @param MagentoFrameworkEventObserver $observer
      * @return void
      */



      public function execute(MagentoFrameworkEventObserver $observer)
      {



      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $customerSession = $objectManager->create('MagentoCustomerModelSession');



      if ($customerSession->isLoggedIn()) {



      $customer_id = $customerSession->getCustomer()->getId(); 


      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $orderCollection = $objectManager->create('MagentoSalesModelResourceModelOrderCollection');
      $order_Collection = $orderCollection->addAttributeToFilter('customer_id',$customer_id)
      ->addFieldToSelect('created_at')
      ->addAttributeToFilter('subtotal', array('gteq' => 250))
      ->setPageSize(1)

      ->setOrder('created_at', 'desc');



                      if(count($order_Collection)>0)
      {

      foreach($order_Collection as $order)
      {
      $LastOrderDate = $order->getCreatedAt();
      }

      $LastOrder = strtotime($LastOrderDate);
      $NextTime = date("Y-m-d H:i:s", strtotime('-1 hours'));
      $CheckTime = strtotime($NextTime);
      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
      $subTotal = $cart->getSubtotal();
      $store = $cart->getStoreId();
      $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

      if($LastOrder>=$CheckTime && $subTotal<=250)
      {
      $hiddenMethodCode = 'freeshipping';

      foreach ($carriers as $carrierCode => $carrierConfig)
      {
      $hiddenMethodCode = 'freeshipping';
      if( $carrierCode != $hiddenMethodCode)
      {

      // $store->saveConfig("carriers/{$carrierCode}/active", '0');

      $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
      $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
      $connection = $resource->getConnection();
      $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

      //Update Data into table
      $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

      // print_r($sql);
      $connection->query($sql);
      }
      }
      }else{ // < 72 && > 250

      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
      $subTotal = $cart->getSubtotal();
      $store = $cart->getStoreId();
      $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

      $hiddenMethodCode = 'freeshipping';

      foreach ($carriers as $carrierCode => $carrierConfig)
      {
      if( $carrierCode == $hiddenMethodCode)
      {

      $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
      $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
      $connection = $resource->getConnection();
      $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

      //Update Data into table
      $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

      $connection->query($sql);
      }
      }
      }

      }else{

      $objectManager = MagentoFrameworkAppObjectManager::getInstance();
      $cart = $objectManager->get('MagentoCheckoutModelCart')->getQuote();
      $subTotal = $cart->getSubtotal();
      $store = $cart->getStoreId();
      $carriers = $objectManager->get('MagentoFrameworkAppConfigScopeConfigInterface')->getValue('carriers');

      $hiddenMethodCode = 'freeshipping';

      foreach ($carriers as $carrierCode => $carrierConfig)
      {
      if( $carrierCode == $hiddenMethodCode)
      {

      // $store->saveConfig("carriers/{$carrierCode}/active", '0');

      $objectManager = MagentoFrameworkAppObjectManager::getInstance(); // Instance of object manager
      $resource = $objectManager->get('MagentoFrameworkAppResourceConnection');
      $connection = $resource->getConnection();
      $tableName = $resource->getTableName('core_config_data'); //gives table name with prefix

      //Update Data into table
      $sql = "Update " . $tableName . " Set value= 0 where path='carriers/{$carrierCode}/active'";

      // print_r($sql);
      $connection->query($sql);
      }
      }
      }

      }


      }



      }







      magento2 event-observer shipping





      share












      share










      share



      share










      asked 1 min ago









      dhvanit davedhvanit dave

      62




      62






















          0






          active

          oldest

          votes











          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f258504%2fhow-can-i-update-shipping-method-by-using-observer-and-event-sales-quote-collec%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f258504%2fhow-can-i-update-shipping-method-by-using-observer-and-event-sales-quote-collec%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Polycentropodidae

          Magento 2 Error message: Invalid state change requested

          Paulmy