我想从magento模块中将商品添加到购物车。所以我在会话中使用了以下代码。
$customerId=108;
$customer=getModel('customer/customer')->load($customerId);
$storeIds = Mage::app()->getWebsite(1)->getStoreIds();
$quote = Mage::getModel('sales/quote')
->setSharedStoreIds($storeIds)
->loadByCustomer($customer);
if($quote)
{
$collection = $quote->getItemsCollection(false);
if ($collection->count() > 0)
{
foreach( $collection as $item )
{
Mage::log($item->getQty());
}
}
}
现在我想在没有guest用户会话的情况下做同样的事情。我搜索了解决方案但没有运气,magento有没有办法做到这一点? 感谢