我正在创建一个magento扩展。我想以编程方式更新购物车中的商品数量。我使用以下代码显示购物车中的商品。
$quote = Mage::getSingleton('checkout/session')->getQuote();
$cartItems = $quote->getAllVisibleItems();
foreach ($cartItems as $item) {
//Do something
}
我想要的是更新特定产品的购物车数量。我知道可以这样做
$pid=15;
$quote = Mage::getSingleton('checkout/session')->getQuote();
$cartItems = $quote->getAllVisibleItems();
foreach ($cartItems as $item) {
if($pid==$item->getId())
$item->setQty($qty);
}
但我不喜欢这种方法,因为它会通过每个产品来更新单个产品的数量。我想知道是否有办法在一行中更新数量i:e而不使用for循环。
答案 0 :(得分:13)
你有product_id,而不是item_id吗?
如果是这种情况,则在不执行整个项目的情况下无法获得产品ID。
看看Mage_Sales_Model_Quote::getItemByProduct($product);
你会看到它执行整个目录。
基本上我会这样做:
//get Product
$product = Mage::getModel('catalog/product')->load($pid);
//get Item
$item = $quote->getItemByProduct($product);
$quote->getCart()->updateItem(array($item->getId()=>array('qty'=>$qty)));
$quote->getCart()->save();
你应该用一些快速技巧来优化它:
$quote->hasProductId($pid) to check if product is in the cart
和
($qty!=$item->getQty())
检查数量是否已经不错......
请注意,这是未经测试的代码,以及一些帮助您找到解决方案的反思,我没有为您完成这项工作。
亲切的问候,
答案 1 :(得分:2)
我相信它会奏效。试试这个。这节省了我的时间。
public function updateCartAction(){
$item_id = $this->getRequest()->getParam('item_id');
$qty = $this->getRequest()->getParam('qty');
$quote = Mage::getSingleton('checkout/session')->getQuote();
$quote->updateItem($item_id, array( 'qty' => $qty));
$quote->save();
echo "Sssssss";
}
答案 2 :(得分:0)
另一种解决方案
$quote = Mage::getModel('sales/quote')->setStoreId($storeId)->load($cartid);
$cartItems = $quote->getAllItems();
foreach ($cartItems as $item) {
if($cartiemid==$item->getId()){
$item->setQty($qty);
$item->save(); // you need to save the item after qty update
}
}
$quote->save();