如何在没有客户会话(作为访客用户)的情况下以maograo的形式将产品添加到购物车?

时间:2015-03-03 10:20:10

标签: php magento session cart

我想从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有没有办法做到这一点? 感谢

0 个答案:

没有答案