Magento 2: How to decrements item qty?Magento 2 - Get category id of products in shopping cartSet custom price of product when adding to cart code not workingMagento 2: How to add attribute flag to quote item?How to get configurable child product quantity from cart itemAllow only one qty of item into cart in Magento 2How to delete cart Item by SKU or productId in magento 2Why V1/guest-carts/cart-Id/ PUT api is not move guest cart item to customer cart in magento-2.2.7?Update all quote items with qty 1 in magento2I want to show total qty of items instead of number of item in cartItem not deleting from quote in Magento2

On the feasibility of space battleships

How to write triplets in 4/4 time without using a 3 on top of the notes all the time

What professions would a medieval village with a population of 100 need?

What is the hex versus octal timeline?

Church Booleans

How big would a Daddy Longlegs Spider need to be to kill an average Human?

Fancy String Replace

Did the British navy fail to take into account the ballistics correction due to Coriolis force during WW1 Falkland Islands battle?

How to persuade recruiters to send me the Job Description?

System to validate run time complexity requirements

Is it appropriate for a prospective landlord to ask me for my credit report?

How do I find the fastest route from Heathrow to an address in London using all forms of transport?

Science fiction short story where aliens contact a drunk about Earth's impending destruction

Are illustrations in novels frowned upon?

What is the appropriate benchmark for a Long/Short VIX futures strategy?

If all stars rotate, why was there a theory developed, that requires non-rotating stars?

In an emergency, how do I find and share my position?

Was Switzerland really impossible to invade during WW2?

confused about grep and the * wildcard

A list of proofs of "Coherent topoi have enough points"

In what ways can a Non-paladin access Paladin spells?

Is there a known non-euclidean geometry where two concentric circles of different radii can intersect? (as in the novel "The Universe Between")

What is wrong about this application of Kirchhoffs Current Law?

Three Singles in Three Clubs



Magento 2: How to decrements item qty?


Magento 2 - Get category id of products in shopping cartSet custom price of product when adding to cart code not workingMagento 2: How to add attribute flag to quote item?How to get configurable child product quantity from cart itemAllow only one qty of item into cart in Magento 2How to delete cart Item by SKU or productId in magento 2Why V1/guest-carts/cart-Id/ PUT api is not move guest cart item to customer cart in magento-2.2.7?Update all quote items with qty 1 in magento2I want to show total qty of items instead of number of item in cartItem not deleting from quote in Magento2






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I want to decrements item qty programmatically.



 $item = $this->cart->getQuote()->getItemById($itemId);
$qty = $item->getQty();

if($qty > 0)
$newqty = ($qty - 1);
$item->setQty($newqty);
$item->getProduct()->setIsSuperMode(true);
$item->save();
$this->cart->save();



Please help me in this.










share|improve this question






























    0















    I want to decrements item qty programmatically.



     $item = $this->cart->getQuote()->getItemById($itemId);
    $qty = $item->getQty();

    if($qty > 0)
    $newqty = ($qty - 1);
    $item->setQty($newqty);
    $item->getProduct()->setIsSuperMode(true);
    $item->save();
    $this->cart->save();



    Please help me in this.










    share|improve this question


























      0












      0








      0








      I want to decrements item qty programmatically.



       $item = $this->cart->getQuote()->getItemById($itemId);
      $qty = $item->getQty();

      if($qty > 0)
      $newqty = ($qty - 1);
      $item->setQty($newqty);
      $item->getProduct()->setIsSuperMode(true);
      $item->save();
      $this->cart->save();



      Please help me in this.










      share|improve this question














      I want to decrements item qty programmatically.



       $item = $this->cart->getQuote()->getItemById($itemId);
      $qty = $item->getQty();

      if($qty > 0)
      $newqty = ($qty - 1);
      $item->setQty($newqty);
      $item->getProduct()->setIsSuperMode(true);
      $item->save();
      $this->cart->save();



      Please help me in this.







      magento2 quantity quoteitem






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Aug 9 at 14:52









      Masud ShaikhMasud Shaikh

      4322 silver badges12 bronze badges




      4322 silver badges12 bronze badges























          1 Answer
          1






          active

          oldest

          votes


















          0













          Try with this code:



          $item = $this->cart->getQuote()->getItemById($itemId);
          if($item)
          $qty = $item->getQty();
          if($qty > 2)
          $newqty = ($qty - 1);
          $item->setQty($newqty);
          $item->save();


          $this->cart->getQuote()->save();


          Also, you have to Update Mini Cart using sections.xml When you hitting this above code.



          See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/






          share|improve this answer



























            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%2f285013%2fmagento-2-how-to-decrements-item-qty%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0













            Try with this code:



            $item = $this->cart->getQuote()->getItemById($itemId);
            if($item)
            $qty = $item->getQty();
            if($qty > 2)
            $newqty = ($qty - 1);
            $item->setQty($newqty);
            $item->save();


            $this->cart->getQuote()->save();


            Also, you have to Update Mini Cart using sections.xml When you hitting this above code.



            See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/






            share|improve this answer





























              0













              Try with this code:



              $item = $this->cart->getQuote()->getItemById($itemId);
              if($item)
              $qty = $item->getQty();
              if($qty > 2)
              $newqty = ($qty - 1);
              $item->setQty($newqty);
              $item->save();


              $this->cart->getQuote()->save();


              Also, you have to Update Mini Cart using sections.xml When you hitting this above code.



              See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/






              share|improve this answer



























                0












                0








                0







                Try with this code:



                $item = $this->cart->getQuote()->getItemById($itemId);
                if($item)
                $qty = $item->getQty();
                if($qty > 2)
                $newqty = ($qty - 1);
                $item->setQty($newqty);
                $item->save();


                $this->cart->getQuote()->save();


                Also, you have to Update Mini Cart using sections.xml When you hitting this above code.



                See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/






                share|improve this answer













                Try with this code:



                $item = $this->cart->getQuote()->getItemById($itemId);
                if($item)
                $qty = $item->getQty();
                if($qty > 2)
                $newqty = ($qty - 1);
                $item->setQty($newqty);
                $item->save();


                $this->cart->getQuote()->save();


                Also, you have to Update Mini Cart using sections.xml When you hitting this above code.



                See more how to apply Update Mini Cart https://webkul.com/blog/update-mini-cart-magento2/







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Aug 9 at 15:14









                Amit BeraAmit Bera

                63.1k16 gold badges85 silver badges183 bronze badges




                63.1k16 gold badges85 silver badges183 bronze badges






























                    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%2f285013%2fmagento-2-how-to-decrements-item-qty%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

                    Get product attribute by attribute group code in magento 2get product attribute by product attribute group in magento 2Magento 2 Log Bundle Product Data in List Page?How to get all product attribute of a attribute group of Default attribute set?Magento 2.1 Create a filter in the product grid by new attributeMagento 2 : Get Product Attribute values By GroupMagento 2 How to get all existing values for one attributeMagento 2 get custom attribute of a single product inside a pluginMagento 2.3 How to get all the Multi Source Inventory (MSI) locations collection in custom module?Magento2: how to develop rest API to get new productsGet product attribute by attribute group code ( [attribute_group_code] ) in magento 2

                    Category:9 (number) SubcategoriesMedia in category "9 (number)"Navigation menuUpload mediaGND ID: 4485639-8Library of Congress authority ID: sh85091979ReasonatorScholiaStatistics

                    Magento 2.3: How do i solve this, Not registered handle, on custom form?How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2 : Problem while adding custom button order view page?Magento 2.2.5: Overriding Admin Controller sales/orderMagento 2.2.5: Add, Update and Delete existing products Custom OptionsMagento 2.3 : File Upload issue in UI Component FormMagento2 Not registered handleHow to configured Form Builder Js in my custom magento 2.3.0 module?Magento 2.3. How to create image upload field in an admin form