我正在尝试将所有用户的购物车迁移到另一个系统。
是否有一种方法可以为每个用户获取购物车中的每个物品?我只需要产品和客户ID
我想当您说购物车时,您的意思是订购项目吗?
我会用SQL执行此操作,因为您需要迁移信息,如果您需要在Magento上使用集合,请告诉我。
SELECT o.customer_id , p.name
FROM sales_flat_quote as o
LEFT JOIN sales_flat_quote_item as i ON i.quote_id = o.entity_id
LEFT JOIN catalog_product_flat_1 as p ON i.product_id = p.entity_id
$list = Mage::getModel('sales/quote')->getCollection();
foreach($list as $li){
$itens = $li->getItemsCollection(); //here we have the itens;
$li->getCustomer()->getName; // here we have the customer name.
foreach($itens as $i){
$i->getName();//itens name;
}
}
您应该看报价表: sales_flat_quote
, sales_flat_quote_item
和 sales_flat_quote_item_option