Merge branch 'master' into 5.6-global
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -155,7 +155,7 @@ public class PromotionServiceImpl implements IPromotionService { | @@ -155,7 +155,7 @@ public class PromotionServiceImpl implements IPromotionService { | ||
155 | // 判断 非skn | 155 | // 判断 非skn |
156 | if (StringUtils.isNotBlank(param.getNotProductSkn())) { | 156 | if (StringUtils.isNotBlank(param.getNotProductSkn())) { |
157 | BoolQueryBuilder sknFilter = QueryBuilders.boolQuery(); | 157 | BoolQueryBuilder sknFilter = QueryBuilders.boolQuery(); |
158 | - sknFilter.mustNot(QueryBuilders.termsQuery("productSkn", param.getProductSknStr().split(","))); | 158 | + sknFilter.mustNot(QueryBuilders.termsQuery("productSkn", param.getNotProductSkn().split(","))); |
159 | if (isAnd) { | 159 | if (isAnd) { |
160 | conditionFilter.must(sknFilter); | 160 | conditionFilter.must(sknFilter); |
161 | } else { | 161 | } else { |
-
Please register or login to post a comment