Authored by 胡古飞

商品列表返回保税仓标志

... ... @@ -104,6 +104,7 @@ public class ProductIndexBaseService {
productIndexIncludeFields.add(ProductIndexEsField.sellType);
productIndexIncludeFields.add(ProductIndexEsField.isUfo);
productIndexIncludeFields.add(ProductIndexEsField.hasVideo);
productIndexIncludeFields.add(ProductIndexEsField.isBonded);
}
... ... @@ -224,6 +225,9 @@ public class ProductIndexBaseService {
//是否视频商品
productMap.put("has_video", MapUtils.getString(map, ProductIndexEsField.hasVideo, "N"));
//返回是否保税仓商品
productMap.put("is_bonded", MapUtils.getString(map, ProductIndexEsField.isBonded, "N"));
//ufo
productMap.put("is_ufo", MapUtils.getString(map, ProductIndexEsField.isUfo, "N"));
if (MapUtils.getString(productMap, "is_ufo", "N").equalsIgnoreCase("Y")) {
... ...