getItemById($itemId) for Magento Quote Model not working as expected in Magento 2












2














Here is my code, where I'm calling Quote model file and getItemById function.



 public function __construct(
MagentoQuoteModelQuote $quote
) {
$this->quote = $quote;
}

$itemId = "Quote Item ID";
$data = $this->quote->getItemById($itemId);


Above code returns FALSE - even there are 65 Quote Items are exists!





So I checked the Magento core method of getItemById in -




/vendor/magento/module-quote/Model/Quote.php




     /**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}


If I print the $this->getItemsCollection()->getData() then it returns the 65 Item arrays.



But As Magento passing directly the collection object $this->getItemsCollection() in foreach




So It's not going in-side the foreach loop which is expected result.




Is it a Magento bug or I am doing something wrong ?





Edited



Issue is still open for Magento Quote model file.



/vendor/magento/module-quote/Model/Quote.php


As Rohan Hapani's answer we're getting data from MagentoQuoteModelQuoteItem As for now.



But Magento's get getItemById still needs to be fixed.




/vendor/magento/module-quote/Model/Quote.php




/**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}




So open for the solutions :)










share|improve this question
























  • Do you have quote id?
    – Rohan Hapani
    yesterday






  • 1




    No, I have Quote Item ID
    – Aditya Shah
    yesterday
















2














Here is my code, where I'm calling Quote model file and getItemById function.



 public function __construct(
MagentoQuoteModelQuote $quote
) {
$this->quote = $quote;
}

$itemId = "Quote Item ID";
$data = $this->quote->getItemById($itemId);


Above code returns FALSE - even there are 65 Quote Items are exists!





So I checked the Magento core method of getItemById in -




/vendor/magento/module-quote/Model/Quote.php




     /**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}


If I print the $this->getItemsCollection()->getData() then it returns the 65 Item arrays.



But As Magento passing directly the collection object $this->getItemsCollection() in foreach




So It's not going in-side the foreach loop which is expected result.




Is it a Magento bug or I am doing something wrong ?





Edited



Issue is still open for Magento Quote model file.



/vendor/magento/module-quote/Model/Quote.php


As Rohan Hapani's answer we're getting data from MagentoQuoteModelQuoteItem As for now.



But Magento's get getItemById still needs to be fixed.




/vendor/magento/module-quote/Model/Quote.php




/**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}




So open for the solutions :)










share|improve this question
























  • Do you have quote id?
    – Rohan Hapani
    yesterday






  • 1




    No, I have Quote Item ID
    – Aditya Shah
    yesterday














2












2








2







Here is my code, where I'm calling Quote model file and getItemById function.



 public function __construct(
MagentoQuoteModelQuote $quote
) {
$this->quote = $quote;
}

$itemId = "Quote Item ID";
$data = $this->quote->getItemById($itemId);


Above code returns FALSE - even there are 65 Quote Items are exists!





So I checked the Magento core method of getItemById in -




/vendor/magento/module-quote/Model/Quote.php




     /**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}


If I print the $this->getItemsCollection()->getData() then it returns the 65 Item arrays.



But As Magento passing directly the collection object $this->getItemsCollection() in foreach




So It's not going in-side the foreach loop which is expected result.




Is it a Magento bug or I am doing something wrong ?





Edited



Issue is still open for Magento Quote model file.



/vendor/magento/module-quote/Model/Quote.php


As Rohan Hapani's answer we're getting data from MagentoQuoteModelQuoteItem As for now.



But Magento's get getItemById still needs to be fixed.




/vendor/magento/module-quote/Model/Quote.php




/**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}




So open for the solutions :)










share|improve this question















Here is my code, where I'm calling Quote model file and getItemById function.



 public function __construct(
MagentoQuoteModelQuote $quote
) {
$this->quote = $quote;
}

$itemId = "Quote Item ID";
$data = $this->quote->getItemById($itemId);


Above code returns FALSE - even there are 65 Quote Items are exists!





So I checked the Magento core method of getItemById in -




/vendor/magento/module-quote/Model/Quote.php




     /**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}


If I print the $this->getItemsCollection()->getData() then it returns the 65 Item arrays.



But As Magento passing directly the collection object $this->getItemsCollection() in foreach




So It's not going in-side the foreach loop which is expected result.




Is it a Magento bug or I am doing something wrong ?





Edited



Issue is still open for Magento Quote model file.



/vendor/magento/module-quote/Model/Quote.php


As Rohan Hapani's answer we're getting data from MagentoQuoteModelQuoteItem As for now.



But Magento's get getItemById still needs to be fixed.




/vendor/magento/module-quote/Model/Quote.php




/**
* Retrieve item model object by item identifier
*
* @param int $itemId
* @return MagentoQuoteModelQuoteItem|false
*/
public function getItemById($itemId)
{
foreach ($this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
return $item;
}
}

return false;
}




So open for the solutions :)







magento2 model quote bug quoteitem






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday

























asked yesterday









Aditya Shah

3,5452834




3,5452834












  • Do you have quote id?
    – Rohan Hapani
    yesterday






  • 1




    No, I have Quote Item ID
    – Aditya Shah
    yesterday


















  • Do you have quote id?
    – Rohan Hapani
    yesterday






  • 1




    No, I have Quote Item ID
    – Aditya Shah
    yesterday
















Do you have quote id?
– Rohan Hapani
yesterday




Do you have quote id?
– Rohan Hapani
yesterday




1




1




No, I have Quote Item ID
– Aditya Shah
yesterday




No, I have Quote Item ID
– Aditya Shah
yesterday










2 Answers
2






active

oldest

votes


















4














Try to use this below code :



/**
* @var MagentoQuoteModelQuoteItem
*/
protected $_itemModel;

public function __construct(
.........
MagentoQuoteModelQuoteItem $itemModel
.........
)
{
.........
$this->_itemModel = $itemModel;
.........
}

public function yourFunction()
{
$itemId = "Quote Item ID";
$this->_itemModel->load($itemId);
}





share|improve this answer

















  • 1




    Worked like a charm! Thanks bro :)
    – Aditya Shah
    yesterday










  • But still we need to check Why Magento's Quote model function is not working!
    – Aditya Shah
    yesterday










  • I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
    – Raul Sanchez
    yesterday










  • No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
    – Aditya Shah
    yesterday










  • I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
    – Raul Sanchez
    yesterday



















1














Instead of injecting MagentoQuoteModelQuote class in constructor, try injecting MagentoCheckoutModelSession and then



$quote = $this->_session->getQuote();


This assumes your code is working with a frontend active checkout session






share|improve this answer























  • Let me check @Raul
    – Aditya Shah
    yesterday










  • Not working, returning false
    – Aditya Shah
    yesterday










  • mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
    – Raul Sanchez
    yesterday










  • Yes yes of-course
    – Aditya Shah
    yesterday












  • I have updated the answer
    – Raul Sanchez
    yesterday











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%2f256754%2fgetitembyiditemid-for-magento-quote-model-not-working-as-expected-in-magento%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









4














Try to use this below code :



/**
* @var MagentoQuoteModelQuoteItem
*/
protected $_itemModel;

public function __construct(
.........
MagentoQuoteModelQuoteItem $itemModel
.........
)
{
.........
$this->_itemModel = $itemModel;
.........
}

public function yourFunction()
{
$itemId = "Quote Item ID";
$this->_itemModel->load($itemId);
}





share|improve this answer

















  • 1




    Worked like a charm! Thanks bro :)
    – Aditya Shah
    yesterday










  • But still we need to check Why Magento's Quote model function is not working!
    – Aditya Shah
    yesterday










  • I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
    – Raul Sanchez
    yesterday










  • No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
    – Aditya Shah
    yesterday










  • I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
    – Raul Sanchez
    yesterday
















4














Try to use this below code :



/**
* @var MagentoQuoteModelQuoteItem
*/
protected $_itemModel;

public function __construct(
.........
MagentoQuoteModelQuoteItem $itemModel
.........
)
{
.........
$this->_itemModel = $itemModel;
.........
}

public function yourFunction()
{
$itemId = "Quote Item ID";
$this->_itemModel->load($itemId);
}





share|improve this answer

















  • 1




    Worked like a charm! Thanks bro :)
    – Aditya Shah
    yesterday










  • But still we need to check Why Magento's Quote model function is not working!
    – Aditya Shah
    yesterday










  • I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
    – Raul Sanchez
    yesterday










  • No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
    – Aditya Shah
    yesterday










  • I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
    – Raul Sanchez
    yesterday














4












4








4






Try to use this below code :



/**
* @var MagentoQuoteModelQuoteItem
*/
protected $_itemModel;

public function __construct(
.........
MagentoQuoteModelQuoteItem $itemModel
.........
)
{
.........
$this->_itemModel = $itemModel;
.........
}

public function yourFunction()
{
$itemId = "Quote Item ID";
$this->_itemModel->load($itemId);
}





share|improve this answer












Try to use this below code :



/**
* @var MagentoQuoteModelQuoteItem
*/
protected $_itemModel;

public function __construct(
.........
MagentoQuoteModelQuoteItem $itemModel
.........
)
{
.........
$this->_itemModel = $itemModel;
.........
}

public function yourFunction()
{
$itemId = "Quote Item ID";
$this->_itemModel->load($itemId);
}






share|improve this answer












share|improve this answer



share|improve this answer










answered yesterday









Rohan Hapani

5,83721662




5,83721662








  • 1




    Worked like a charm! Thanks bro :)
    – Aditya Shah
    yesterday










  • But still we need to check Why Magento's Quote model function is not working!
    – Aditya Shah
    yesterday










  • I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
    – Raul Sanchez
    yesterday










  • No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
    – Aditya Shah
    yesterday










  • I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
    – Raul Sanchez
    yesterday














  • 1




    Worked like a charm! Thanks bro :)
    – Aditya Shah
    yesterday










  • But still we need to check Why Magento's Quote model function is not working!
    – Aditya Shah
    yesterday










  • I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
    – Raul Sanchez
    yesterday










  • No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
    – Aditya Shah
    yesterday










  • I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
    – Raul Sanchez
    yesterday








1




1




Worked like a charm! Thanks bro :)
– Aditya Shah
yesterday




Worked like a charm! Thanks bro :)
– Aditya Shah
yesterday












But still we need to check Why Magento's Quote model function is not working!
– Aditya Shah
yesterday




But still we need to check Why Magento's Quote model function is not working!
– Aditya Shah
yesterday












I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
– Raul Sanchez
yesterday




I suppose you are not loading the right Quote object (it is normal if you don't have quote_id)
– Raul Sanchez
yesterday












No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
– Aditya Shah
yesterday




No, It is. Please check the /vendor/magento/module-quote/Model/Quote.php file.
– Aditya Shah
yesterday












I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
– Raul Sanchez
yesterday




I mean that $this->quote in your code. It is just the injected object in constructor? without loading any id? If that's the case, that object will provide the method, but it won't content any item
– Raul Sanchez
yesterday













1














Instead of injecting MagentoQuoteModelQuote class in constructor, try injecting MagentoCheckoutModelSession and then



$quote = $this->_session->getQuote();


This assumes your code is working with a frontend active checkout session






share|improve this answer























  • Let me check @Raul
    – Aditya Shah
    yesterday










  • Not working, returning false
    – Aditya Shah
    yesterday










  • mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
    – Raul Sanchez
    yesterday










  • Yes yes of-course
    – Aditya Shah
    yesterday












  • I have updated the answer
    – Raul Sanchez
    yesterday
















1














Instead of injecting MagentoQuoteModelQuote class in constructor, try injecting MagentoCheckoutModelSession and then



$quote = $this->_session->getQuote();


This assumes your code is working with a frontend active checkout session






share|improve this answer























  • Let me check @Raul
    – Aditya Shah
    yesterday










  • Not working, returning false
    – Aditya Shah
    yesterday










  • mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
    – Raul Sanchez
    yesterday










  • Yes yes of-course
    – Aditya Shah
    yesterday












  • I have updated the answer
    – Raul Sanchez
    yesterday














1












1








1






Instead of injecting MagentoQuoteModelQuote class in constructor, try injecting MagentoCheckoutModelSession and then



$quote = $this->_session->getQuote();


This assumes your code is working with a frontend active checkout session






share|improve this answer














Instead of injecting MagentoQuoteModelQuote class in constructor, try injecting MagentoCheckoutModelSession and then



$quote = $this->_session->getQuote();


This assumes your code is working with a frontend active checkout session







share|improve this answer














share|improve this answer



share|improve this answer








edited yesterday

























answered yesterday









Raul Sanchez

1,83231135




1,83231135












  • Let me check @Raul
    – Aditya Shah
    yesterday










  • Not working, returning false
    – Aditya Shah
    yesterday










  • mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
    – Raul Sanchez
    yesterday










  • Yes yes of-course
    – Aditya Shah
    yesterday












  • I have updated the answer
    – Raul Sanchez
    yesterday


















  • Let me check @Raul
    – Aditya Shah
    yesterday










  • Not working, returning false
    – Aditya Shah
    yesterday










  • mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
    – Raul Sanchez
    yesterday










  • Yes yes of-course
    – Aditya Shah
    yesterday












  • I have updated the answer
    – Raul Sanchez
    yesterday
















Let me check @Raul
– Aditya Shah
yesterday




Let me check @Raul
– Aditya Shah
yesterday












Not working, returning false
– Aditya Shah
yesterday




Not working, returning false
– Aditya Shah
yesterday












mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
– Raul Sanchez
yesterday




mmm I assume you are using an existing item_id instead of "Quote Item ID" text, right?
– Raul Sanchez
yesterday












Yes yes of-course
– Aditya Shah
yesterday






Yes yes of-course
– Aditya Shah
yesterday














I have updated the answer
– Raul Sanchez
yesterday




I have updated the answer
– Raul Sanchez
yesterday


















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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2f256754%2fgetitembyiditemid-for-magento-quote-model-not-working-as-expected-in-magento%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

How to reconfigure Docker Trusted Registry 2.x.x to use CEPH FS mount instead of NFS and other traditional...

is 'sed' thread safe

How to make a Squid Proxy server?