您的位置 首页

magento 子分类数量不准确,可能为负数的bug修复

有的时候我们添加新品会采用 表格批量上传的方式,也会同时创建新的分类。 这就会导致,查看某个单品时,分类是这样…

有的时候我们添加新品会采用 表格批量上传的方式,也会同时创建新的分类。
这就会导致,查看某个单品时,分类是这样的:
这里写图片描述

正常应该是这样的:
这里写图片描述

调试发现 后台数据 分类表
catalog_category_entity 的 children_count 存在负数
如果启用了索引,那么 catalog_category_flat_sotre_1 这种表中字段 children_count 也存在负数

产生原因大致是因为:通过 api 创建分类导致的,具体代码没有去追踪。

修复方法: 执行SQL


DROP TABLE IF EXISTS `catalog_category_entity_tmp`;
CREATE TABLE catalog_category_entity_tmp LIKE catalog_category_entity;
INSERT INTO catalog_category_entity_tmp SELECT * FROM catalog_category_entity;

UPDATE catalog_category_entity cce
SET children_count =
(
SELECT count(cce2.entity_id)-1 as children_county
FROM catalog_category_entity_tmp cce2
WHERE PATH LIKE CONCAT(cce.path,'%')
);

DROP TABLE catalog_category_entity_tmp;

然后 刷新分类索引 即可

此文章通过 python 爬虫创建,原文是自己的csdn 地址: magento 子分类数量不准确,可能为负数的bug修复

本文来自网络,不代表找知博客立场,转载请注明出处:http://zhaozhiyong.cn/50.html

作者: 于老大

关注微博
返回顶部
//