Czy ktoś może mi pomóc wyjaśnić Indeksowanie cen w Magento? Używam wersji 1.9.
Moje zadanie : renderowanie polecanych produktów na stronie głównej.
Moje rozwiązanie : Zamiast tworzyć kategorię o nazwie „Wyróżniony produkt”. Utworzyłem atrybut „is_featured”, więc po prostu filtruję produkt z tym atrybutem true, aby uzyskać oczekiwany wynik. Opieraj
się na wbudowanym widżecie Mage_Catalog_Block_Product_Widget_New , moja funkcja pobierania kolekcji produktów zgodnie z definicją:
protected function _getProductCollection()
{
/** @var $collection Mage_Catalog_Model_Resource_Product_Collection */
$collection = Mage::getResourceModel('catalog/product_collection');
$collection->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds());
$collection = $this->_addProductAttributesAndPrices($collection)
->addStoreFilter()
->addAttributeToFilter('is_featured', array('eq' => true))
->setPageSize($this->getProductsCount())
->setCurPage(1);
return $collection;
}
Wynik: niektóre produkty zostały wyświetlone, ale niektórych brakuje. Podczas debugowania SQL widzę:
SELECT
`e`.*,
`cat_index`.`position` AS `cat_index_position`,
`price_index`.`price`,
`price_index`.`tax_class_id`,
`price_index`.`final_price`,
IF(price_index.tier_price IS NOT NULL,
LEAST(price_index.min_price,
price_index.tier_price),
price_index.min_price) AS `minimal_price`,
`price_index`.`min_price`,
`price_index`.`max_price`,
`price_index`.`tier_price`,
`at_is_featured`.`value` AS `is_featured`
FROM
`catalog_product_entity` AS `e`
INNER JOIN
`catalog_category_product_index` AS `cat_index` ON cat_index.product_id = e.entity_id
AND cat_index.store_id = '1'
AND cat_index.visibility IN (2 , 4)
AND cat_index.category_id = '2'
INNER JOIN
`catalog_product_index_price` AS `price_index` ON price_index.entity_id = e.entity_id
AND price_index.website_id = '1'
AND price_index.customer_group_id = 0
INNER JOIN
`catalog_product_entity_int` AS `at_is_featured` ON (`at_is_featured`.`entity_id` = `e`.`entity_id`)
AND (`at_is_featured`.`attribute_id` = '210')
AND (`at_is_featured`.`store_id` = 0)
WHERE
(at_is_featured.value = '1')
LIMIT 6
Problem jest tutaj, katalog_kategoria_indeks_produktu , brakuje jakiegoś produktu w tej tabeli? Ale nie wiem, dlaczego brakuje indeksu niektórych produktów? Próbowałem Re-Index tyle razy bez oczekiwanych rezultatów! Czy ktoś może mi pomóc? Wielkie dzięki!