Voglio esporre attraverso un SOAP WS gli articoli visualizzati più di recente di un cliente.
Come posso raggiungere quegli articoli? So che sono archiviati in "reports / product_index_viewed"; tuttavia, non so quale sia il modo giusto per raggiungerli.
Ecco cosa ho ottenuto finora:
public function getRecentlyViewedByCustomer($customerId)
{
Mage::log(__METHOD__);
$customer = $this->_getCustomer($customerId);
Mage::log('Getting recently viewed products of '. $customer->getName() .' ('. $customer->getEmail() .'), ID: ' . $customer->getId() );
$productCollection = Mage::getResourceModel('reports/product_index_viewed');
Mage::log(print_r($productCollection, true));
return __METHOD__;
}
public function _getCustomer($customerId)
{
$customer = Mage::getModel('customer/customer')->load($customerId);
return $customer;
}