方案: 一个新的空白Magento,其中包含一个类别产品和客户导入以及一些修复程序。
类别结构:
Root
L..Category_parent1 (0 products)
L..Category_child1 (22)
L..Category_child2 (34)
L..Category_parent2 (0)
L..Category_child1 (22)
L..Category_child2 (34)
L..Category_parent3 (0)
L..Category_child1 (22)
L..Category_child2 (0)
L..Category_child2_child1 (22)
L..Category_child2_child2 (34)
L..Category_child3 (10)
我想使用SQL查询或php脚本将子类别中的所有产品复制到其相对父级。 (我不知道是否可以通过Magento管理员这样做。)
期望的结果:
Root
L..Category_parent1 (22 + 34 products)
L..Category_child1 (22)
L..Category_child2 (34)
L..Category_parent2 (22 + 34)
L..Category_child1 (22)
L..Category_child2 (34)
L..Category_parent3 (22 + 22 + 34 + 10)
L..Category_child1 (22)
L..Category_child2 (22 + 34)
L..Category_child2_child1 (22)
L..Category_child2_child2 (34)
L..Category_child3 (10)
UPDATE! 有没有办法只在展示产品上这样做? 以这种方式看到产品与他们自己的类别相关联(只需在列表中的视图布局中进行...)?
答案 0 :(得分:2)
作为部分解决方案:
insert into catalog_category_product_index (
select cat.parent_id, prod.product_id, 1
from catalog_category_product_index prod, catalog_category_entity cat
where prod.category_id = cat.entity_id and cat.level >= 1
);
这应该选择所有内容并将其提升一个级别(直到我们到达根目录)。单独的查询将有助于位置列(当前硬编码为1)。但是,最大的问题是,您期望的结果实际上会使项目超过一个级别,而此查询仅执行一个级别。要真正正确地概括,可以将此查询放入某些代码中,并从最低深度开始重复并向上移动。
希望有所帮助!
谢谢, 乔
答案 1 :(得分:1)
似乎为所有类别设置is_anchor解决了我的问题,但约瑟夫提供的答案回答了问题