一部の商品がテーブルcatalog_product_index_priceにありません!


11

誰でも私がMagentoの価格インデックスを明確にするのを手伝ってくれる?バージョン1.9を使用しています。
私の仕事:注目の製品をホームページにレンダリングする。
私の解決策:「注目の製品」というカテゴリを作成する代わりに。「is_featured」という属性を作成したので、その属性がtrueの商品をフィルタリングするだけで、期待どおりの結果が得られます。
ビルトインウィジェットMage_Catalog_Block_Product_Widget_Newに基づいて、定義された製品コレクションを取得するための関数:

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

結果:一部の製品は表示されますが、一部が欠落しています。SQLデバッグの場合、次のようになります。

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

問題はここにあります、catalog_category_product_index、このテーブルにいくつかの製品が表示されません。しかし、私は知りません、なぜいくつかの製品のインデックスが欠けているのですか?私は何度も再インデックスを試みましたが、期待した結果はありませんでした!誰でも手伝ってくれる?どうもありがとう!


私は同じ問題を扱っています。運が良ければ?
versalle88

回答:


2

商品が価格インデックスにない場合、通常は現在のWebサイトに関連付けられていないことが原因です。

製品がどのようにインデックス付けされるかを確認するには、価格インデクサーを実行し、Mage_Catalog_Model_Resource_Product_Indexer_Price_Default::_prepareFinalPriceData()285行目付近でクエリをデバッグします(prepare_catalog_product_index_selectイベントがトリガーされた後)。

シンプルな商品です。他の製品タイプについては、対応するインデクサー実装(のサブクラスMage_Catalog_Model_Resource_Product_Indexer_Abstract)でも同じです。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.