Quote with no items - add to cart error Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?adding attributes to quote items via configPossible Bug - Hidden tax amount on quote and order item but no discount amountproblem unsetting quote (cart), data is not savedProgrammatically add items to cart and assign to guest userMagento 2 Rest API - How to add custom option to Cart Item?Why are quotes not converted to is_active=0 after checkout? M1/M2How to get the order items and quote items whenever create order from admin panel?Convert MagentoQuoteModelQuote to MagentoSalesModelOrder: Magento 2Adding products to cart programmatically with custom price in controller: Magento 2Request for quote and checkout at same time

Most bit efficient text communication method?

Where are Serre’s lectures at Collège de France to be found?

What is homebrew?

Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?

Do wooden building fires get hotter than 600°C?

What would be the ideal power source for a cybernetic eye?

Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?

How to show element name in portuguese using elements package?

Do I really need to have a message in a novel to appeal to readers?

Generate an RGB colour grid

How do I stop a creek from eroding my steep embankment?

Fantasy story; one type of magic grows in power with use, but the more powerful they are, they more they are drawn to travel to their source

How does the math work when buying airline miles?

Fundamental Solution of the Pell Equation

Can anything be seen from the center of the Boötes void? How dark would it be?

How to convince students of the implication truth values?

Is it ethical to give a final exam after the professor has quit before teaching the remaining chapters of the course?

Amount of permutations on an NxNxN Rubik's Cube

Extracting terms with certain heads in a function

Delete nth line from bottom

Does classifying an integer as a discrete log require it be part of a multiplicative group?

What causes the direction of lightning flashes?

Using et al. for a last / senior author rather than for a first author

Is the Standard Deduction better than Itemized when both are the same amount?



Quote with no items - add to cart error



Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?adding attributes to quote items via configPossible Bug - Hidden tax amount on quote and order item but no discount amountproblem unsetting quote (cart), data is not savedProgrammatically add items to cart and assign to guest userMagento 2 Rest API - How to add custom option to Cart Item?Why are quotes not converted to is_active=0 after checkout? M1/M2How to get the order items and quote items whenever create order from admin panel?Convert MagentoQuoteModelQuote to MagentoSalesModelOrder: Magento 2Adding products to cart programmatically with custom price in controller: Magento 2Request for quote and checkout at same time



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








2















I'm facing this strange issue on add to cart action:



sometime after I checkout (with a registered customer) correctly my order, if I try to purchase another item I got the following error:
Call to a member function setFinalPrice() on a non-object in app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php on line 73



I have debugged the code and found out that the issue is created by some old quotes associated to my user that are still active and have not items associated with it.



If I check the problematic quote in the Db it has items_count = 0 any way Mage_Sales_Model_Resource_Quote_Item_Collection::_assignProducts()method try to load an item using null as Id :



 $product = $productCollection->getItemById($item->getProductId());


This trigger the above error.



Now the fast fix it to set to is_active = 0 in all these quote, something like:



 UPDATE `sales_flat_quote` SET `is_active` = 0 WHERE `is_active` = 1 AND `items_count`= 0 and customer_id is not null and customer_id <> 0


Question



Anyway I would like to understand the following points:



  1. Is it normal to have old quotes (also multiple for same user) with 0 items and is_active = 1 ?

  2. Is ok to delete all these quotes ? ( I have 10000+ quotes like this )

Any suggestion is welcome










share|improve this question














bumped to the homepage by Community 4 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.





















    2















    I'm facing this strange issue on add to cart action:



    sometime after I checkout (with a registered customer) correctly my order, if I try to purchase another item I got the following error:
    Call to a member function setFinalPrice() on a non-object in app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php on line 73



    I have debugged the code and found out that the issue is created by some old quotes associated to my user that are still active and have not items associated with it.



    If I check the problematic quote in the Db it has items_count = 0 any way Mage_Sales_Model_Resource_Quote_Item_Collection::_assignProducts()method try to load an item using null as Id :



     $product = $productCollection->getItemById($item->getProductId());


    This trigger the above error.



    Now the fast fix it to set to is_active = 0 in all these quote, something like:



     UPDATE `sales_flat_quote` SET `is_active` = 0 WHERE `is_active` = 1 AND `items_count`= 0 and customer_id is not null and customer_id <> 0


    Question



    Anyway I would like to understand the following points:



    1. Is it normal to have old quotes (also multiple for same user) with 0 items and is_active = 1 ?

    2. Is ok to delete all these quotes ? ( I have 10000+ quotes like this )

    Any suggestion is welcome










    share|improve this question














    bumped to the homepage by Community 4 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.

















      2












      2








      2








      I'm facing this strange issue on add to cart action:



      sometime after I checkout (with a registered customer) correctly my order, if I try to purchase another item I got the following error:
      Call to a member function setFinalPrice() on a non-object in app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php on line 73



      I have debugged the code and found out that the issue is created by some old quotes associated to my user that are still active and have not items associated with it.



      If I check the problematic quote in the Db it has items_count = 0 any way Mage_Sales_Model_Resource_Quote_Item_Collection::_assignProducts()method try to load an item using null as Id :



       $product = $productCollection->getItemById($item->getProductId());


      This trigger the above error.



      Now the fast fix it to set to is_active = 0 in all these quote, something like:



       UPDATE `sales_flat_quote` SET `is_active` = 0 WHERE `is_active` = 1 AND `items_count`= 0 and customer_id is not null and customer_id <> 0


      Question



      Anyway I would like to understand the following points:



      1. Is it normal to have old quotes (also multiple for same user) with 0 items and is_active = 1 ?

      2. Is ok to delete all these quotes ? ( I have 10000+ quotes like this )

      Any suggestion is welcome










      share|improve this question














      I'm facing this strange issue on add to cart action:



      sometime after I checkout (with a registered customer) correctly my order, if I try to purchase another item I got the following error:
      Call to a member function setFinalPrice() on a non-object in app/code/core/Mage/Sales/Model/Quote/Item/Abstract.php on line 73



      I have debugged the code and found out that the issue is created by some old quotes associated to my user that are still active and have not items associated with it.



      If I check the problematic quote in the Db it has items_count = 0 any way Mage_Sales_Model_Resource_Quote_Item_Collection::_assignProducts()method try to load an item using null as Id :



       $product = $productCollection->getItemById($item->getProductId());


      This trigger the above error.



      Now the fast fix it to set to is_active = 0 in all these quote, something like:



       UPDATE `sales_flat_quote` SET `is_active` = 0 WHERE `is_active` = 1 AND `items_count`= 0 and customer_id is not null and customer_id <> 0


      Question



      Anyway I would like to understand the following points:



      1. Is it normal to have old quotes (also multiple for same user) with 0 items and is_active = 1 ?

      2. Is ok to delete all these quotes ? ( I have 10000+ quotes like this )

      Any suggestion is welcome







      orders quote debug






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 9 '15 at 5:01









      FraFra

      4,575115194




      4,575115194





      bumped to the homepage by Community 4 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 4 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















          1 Answer
          1






          active

          oldest

          votes


















          0














          If it is throwing for all the customers then you can delete sales_flat_quote_item table. If this happens only for particular customer then do the following thing. In this case, all the quotes wont be deleted.



          1. Get the customer id from sales_flat_quote_address(column name: customer_id) table. Here you can get the specific quote id(column name in table is quote_id) which is causing the problem.


          Example: SELECT quote_id FROM sales_flat_quote_address where
          customer_id=23423




          1. Now, go to sales_flat_quote_item then delete the particular records which is causing the problem.


          Example: DELETE FROM sales_flat_quote_item WHERE quote_id=43535







          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%2f63121%2fquote-with-no-items-add-to-cart-error%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














            If it is throwing for all the customers then you can delete sales_flat_quote_item table. If this happens only for particular customer then do the following thing. In this case, all the quotes wont be deleted.



            1. Get the customer id from sales_flat_quote_address(column name: customer_id) table. Here you can get the specific quote id(column name in table is quote_id) which is causing the problem.


            Example: SELECT quote_id FROM sales_flat_quote_address where
            customer_id=23423




            1. Now, go to sales_flat_quote_item then delete the particular records which is causing the problem.


            Example: DELETE FROM sales_flat_quote_item WHERE quote_id=43535







            share|improve this answer





























              0














              If it is throwing for all the customers then you can delete sales_flat_quote_item table. If this happens only for particular customer then do the following thing. In this case, all the quotes wont be deleted.



              1. Get the customer id from sales_flat_quote_address(column name: customer_id) table. Here you can get the specific quote id(column name in table is quote_id) which is causing the problem.


              Example: SELECT quote_id FROM sales_flat_quote_address where
              customer_id=23423




              1. Now, go to sales_flat_quote_item then delete the particular records which is causing the problem.


              Example: DELETE FROM sales_flat_quote_item WHERE quote_id=43535







              share|improve this answer



























                0












                0








                0







                If it is throwing for all the customers then you can delete sales_flat_quote_item table. If this happens only for particular customer then do the following thing. In this case, all the quotes wont be deleted.



                1. Get the customer id from sales_flat_quote_address(column name: customer_id) table. Here you can get the specific quote id(column name in table is quote_id) which is causing the problem.


                Example: SELECT quote_id FROM sales_flat_quote_address where
                customer_id=23423




                1. Now, go to sales_flat_quote_item then delete the particular records which is causing the problem.


                Example: DELETE FROM sales_flat_quote_item WHERE quote_id=43535







                share|improve this answer















                If it is throwing for all the customers then you can delete sales_flat_quote_item table. If this happens only for particular customer then do the following thing. In this case, all the quotes wont be deleted.



                1. Get the customer id from sales_flat_quote_address(column name: customer_id) table. Here you can get the specific quote id(column name in table is quote_id) which is causing the problem.


                Example: SELECT quote_id FROM sales_flat_quote_address where
                customer_id=23423




                1. Now, go to sales_flat_quote_item then delete the particular records which is causing the problem.


                Example: DELETE FROM sales_flat_quote_item WHERE quote_id=43535








                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Sep 21 '18 at 9:34









                Ansar Husain

                1,765218




                1,765218










                answered Sep 21 '18 at 9:26









                TS GuhanTS Guhan

                12410




                12410



























                    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%2f63121%2fquote-with-no-items-add-to-cart-error%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

                    Disable / Remove link to Product Items in Cart Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?How can I limit products that can be bought / added to cart?Remove item from cartHide “Add to Cart” button if specific products are already in cart“Prettifying” the custom options in cart pageCreate link in cart sidebar to view all added items After limit reachedLink products together in checkout/cartHow to Get product from cart and add it againHide action-edit on cart page if simple productRemoving Cart items - ObserverRemove wishlist items when added to cart

                    Helsingin valtaus Sisällysluettelo Taustaa | Yleistä sotatoimista | Osapuolet | Taistelut Helsingin ympäristössä | Punaisten antautumissuunnitelma | Taistelujen kulku Helsingissä | Valtauksen jälkeen | Tappiot | Muistaminen | Kirjallisuutta | Lähteet | Aiheesta muualla | NavigointivalikkoTeoksen verkkoversioTeoksen verkkoversioGoogle BooksSisällissota Helsingissä päättyi tasan 95 vuotta sittenSaksalaisten ylivoima jyräsi punaisen HelsinginSuomalaiset kuvaavat sotien jälkiä kaupungeissa – katso kuvat ja tarinat tutuilta kulmiltaHelsingin valtaus 90 vuotta sittenSaksalaiset valtasivat HelsinginHyökkäys HelsinkiinHelsingin valtaus 12.–13.4. 1918Saksalaiset käyttivät ihmiskilpiä Helsingin valtauksessa 1918Teoksen verkkoversioTeoksen verkkoversioSaksalaiset hyökkäävät Etelä-SuomeenTaistelut LeppävaarassaSotilaat ja taistelutLeppävaara 1918 huhtikuussa. KapinatarinaHelsingin taistelut 1918Saksalaisten voitonparaati HelsingissäHelsingin valtausta juhlittiinSaksalaisten Helsinki vuonna 1918Helsingin taistelussa kaatuneet valkokaartilaisetHelsinkiin haudatut taisteluissa kaatuneet punaiset12.4.1918 Helsingin valtauksessa saksalaiset apujoukot vapauttavat kaupunginVapaussodan muistomerkkejä Helsingissä ja pääkaupunkiseudullaCrescendo / Vuoden 1918 Kansalaissodan uhrien muistomerkkim

                    Adjektiivitarina Tarinan tekeminen | Esimerkki: ennen | Esimerkki: jälkeen | Navigointivalikko