سؤال

أحاول الحصول على كمية من المنتجات البسيطة في العربة ولكنها فقط إرجاع الكمية القابلة للتكوين.

كيف يمكنني الحصول على المنتج بسيط الكمية في العربة؟

أنا أستخدم هذا: giveacodicetagpre.

هل كانت مفيدة؟

المحلول

هنا، يجب أن يفعل ذلك ما تحتاجه، ولا تحتاج إلى الوصول إلى كائن المنتج، وهو فقط السعر الذي تحتاجه من خط الإنتاج القابل للتكوين في الاقتباس. giveacodicetagpre.

نصائح أخرى

giveacodicetagpre.

You can get product quantity without looping all items:

$quote = Mage::getSingleton('checkout/session')->getQuote();
$product = Mage::getModel('catalog/product')->load($product_id);
$_item = $quote->getItemByProduct($product);
$qty = $_item->getQty();

use $cart->getAllItems() to get the simple items too.

You can get product quantity without looping all items:

$quote = Mage::getSingleton('checkout/session')->getQuote();
$_item = $quote->getItemByProduct($product);
$qty = $_item->getQty();
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى magento.stackexchange
scroll top