我正在Magento中编写REST API来检索Abandoned购物车详细信息。在API中,我尝试了以下代码。但它不起作用。
$collection = Mage::getResourceModel('reports/quote_collection');
$collection->prepareForAbandonedReport(array(1));
$collection->load();
我为产品数量做了同样的事情。这工作正常。请找到下面的代码,我对废弃的购物车细节检索需要相同的东西。
$collection = Mage::getResourceModel('catalog/product_collection');
$store = $this->_getStore();
$collection->setStoreId($store->getId());
$collection->addAttributeToSelect(array_keys(
$this->getAvailableAttributes($this->getUserType(), Mage_Api2_Model_Resource::OPERATION_ATTRIBUTE_READ)
));
$this->_applyCategoryFilter($collection);
$this->_applyCollectionModifiers($collection);
$products = $collection->load()->toArray();
$size = $collection->getSize();
$productCount = new stdClass();
$productCount->catalog_size=$size;
我在V1.php中编写的上述代码(在REST API文件夹中)。