Bagaimana cara mendapatkan produk yang baru dilihat oleh id pelanggan?

8

Saya ingin mengekspos melalui WS SOAP item yang paling baru dilihat dari pelanggan.

Bagaimana saya bisa menjangkau barang-barang itu? Saya tahu mereka disimpan di 'laporan / product_index_viewed'; Namun, saya tidak tahu mana cara yang tepat untuk mencapai itu.

Inilah yang saya dapatkan sejauh ini:

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;
}
Ramses
sumber

Jawaban:

0
public function getMostViewedProducts()
{       
    /**
     * Number of products to display
     * You may change it to your desired value
     */
    $productCount = 5; 

    /**
     * Get Store ID
     */
    $storeId    = Mage::app()->getStore()->getId();       

    /**
     * Get most viewed product collection
     */
    $products = Mage::getResourceModel('reports/product_collection')
        ->addAttributeToSelect('*')     
        ->setStoreId($storeId)
        ->addStoreFilter($storeId)
        ->addViewsCount()
        ->setPageSize($productCount); 

    Mage::getSingleton('catalog/product_status')
            ->addVisibleFilterToCollection($products);
    Mage::getSingleton('catalog/product_visibility')
            ->addVisibleInCatalogFilterToCollection($products);

    return $products; 
}
hari haran
sumber
Maaf, ini tidak berfungsi untuk saya. Juga, Dalam api, bagaimana saya bisa membuat storeId terkait dengan customerId?
Ramses
1
koleksi ini akan mengembalikan produk yang dilihat untuk toko dan bukan pelanggan.
paj
kode tidak berfungsi
Permata
0

Anda harus menambahkan penyihir pengamat mendeteksi bahwa pengguna melihat produk dan mengembalikan id produk dan id pelanggan dan memasukkannya ke dalam basis data sehingga Anda dapat menggunakannya

MagentoDeveloper
sumber
0

Inilah cara saya akhirnya memecahkan masalah ini

public function getRecentlyViewedByCustomer($customerId, $categoryId, $limit = 5){
    $resource = Mage::getSingleton('core/resource');
    $readConnection = $resource->getConnection('core_read');

    $q = "SELECT DISTINCT report_viewed_product_index.product_id, report_viewed_product_index.added_at "  .
    " FROM report_viewed_product_index " .
    " INNER JOIN catalog_category_product ON catalog_category_product.product_id = report_viewed_product_index.product_id " .
    " WHERE customer_id = " . $customerId;

    if($categoryId > 0){
        $categories = $this->_getCategories($categoryId);
        $q = $q . " AND category_id in (" . $categories . ")";
    }

    $q = $q . " ORDER BY added_at desc LIMIT " . $limit;

    return $readConnection->fetchAll($q);
}
Ramses
sumber