Authored by wangnan

fixbug

... ... @@ -96,7 +96,7 @@ public class ProductIndexBaseService {
productIndexIncludeFields.add(ProductIndexEsField.tblCountryId);
productIndexIncludeFields.add(ProductIndexEsField.tblCountryName);
productIndexIncludeFields.add(ProductIndexEsField.customizeTag);
productIndexIncludeFields.add(ProductIndexEsField.customizeTags);
productIndexIncludeFields.add(ProductIndexEsField.matchedPromotions);
productIndexIncludeFields.add(ProductIndexEsField.basePinRatio);
productIndexIncludeFields.add(ProductIndexEsField.breakingRate);
... ... @@ -210,7 +210,7 @@ public class ProductIndexBaseService {
productMap.put("tbl_plane", (tbl_country_id > 0 && tbl_country_id != 86) ? "Y" : "N");
//标签
productMap.put("customize_tag", MapUtils.getObject(map, ProductIndexEsField.customizeTag, new JSONArray()));
productMap.put("customize_tag", MapUtils.getObject(map, ProductIndexEsField.customizeTags, new JSONArray()));
productMap.put("promotion_tag", MapUtils.getObject(map, ProductIndexEsField.matchedPromotions, new JSONArray()));
return productMap;
... ...