fix: 修复更新es商品索引促销信息时,批量更新分页起始页错误问题

This commit is contained in:
misworga831 2023-04-06 10:28:54 +08:00
parent bc670d263d
commit 675830045d

View File

@ -608,7 +608,7 @@ public class EsGoodsIndexServiceImpl extends BaseElasticsearchService implements
}
private void executeUpdateEsGoodsIndexAll(BasePromotions promotion, String key) {
for (int i = 1; ; i++) {
for (int i = 0; ; i++) {
List<String> skuIds;
//如果storeId不为空则表示是店铺活动
if (promotion.getStoreId() != null && !promotion.getStoreId().equals(PromotionTools.PLATFORM_ID)) {