Showing
1 changed file
with
4 additions
and
0 deletions
@@ -104,6 +104,7 @@ public class ProductIndexBaseService { | @@ -104,6 +104,7 @@ public class ProductIndexBaseService { | ||
104 | productIndexIncludeFields.add(ProductIndexEsField.sellType); | 104 | productIndexIncludeFields.add(ProductIndexEsField.sellType); |
105 | productIndexIncludeFields.add(ProductIndexEsField.isUfo); | 105 | productIndexIncludeFields.add(ProductIndexEsField.isUfo); |
106 | productIndexIncludeFields.add(ProductIndexEsField.hasVideo); | 106 | productIndexIncludeFields.add(ProductIndexEsField.hasVideo); |
107 | + productIndexIncludeFields.add(ProductIndexEsField.isBonded); | ||
107 | 108 | ||
108 | } | 109 | } |
109 | 110 | ||
@@ -224,6 +225,9 @@ public class ProductIndexBaseService { | @@ -224,6 +225,9 @@ public class ProductIndexBaseService { | ||
224 | //是否视频商品 | 225 | //是否视频商品 |
225 | productMap.put("has_video", MapUtils.getString(map, ProductIndexEsField.hasVideo, "N")); | 226 | productMap.put("has_video", MapUtils.getString(map, ProductIndexEsField.hasVideo, "N")); |
226 | 227 | ||
228 | + //返回是否保税仓商品 | ||
229 | + productMap.put("is_bonded", MapUtils.getString(map, ProductIndexEsField.isBonded, "N")); | ||
230 | + | ||
227 | //ufo | 231 | //ufo |
228 | productMap.put("is_ufo", MapUtils.getString(map, ProductIndexEsField.isUfo, "N")); | 232 | productMap.put("is_ufo", MapUtils.getString(map, ProductIndexEsField.isUfo, "N")); |
229 | if (MapUtils.getString(productMap, "is_ufo", "N").equalsIgnoreCase("Y")) { | 233 | if (MapUtils.getString(productMap, "is_ufo", "N").equalsIgnoreCase("Y")) { |
-
Please register or login to post a comment