|
|
@@ -190,6 +190,7 @@ import java.util.regex.Pattern;
|
|
|
|
|
|
import static com.uas.platform.core.persistence.criteria.PredicateUtils.like;
|
|
|
import static org.apache.commons.jexl2.parser.ParserConstants.and;
|
|
|
+import static org.apache.commons.jexl2.parser.ParserConstants.or;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -2594,7 +2595,7 @@ public class GoodsServiceImpl implements GoodsService {
|
|
|
pageInfo.expression(PredicateUtils.eq("storeid", storeid, false));
|
|
|
if (StringUtils.hasText(kindUuid)) {
|
|
|
// 如果包含多个叶子类目ID,则获取所有的叶子类目对应的商品信息
|
|
|
- if (kindUuid.equals("其他")) {
|
|
|
+ if ("其他".equals(kindUuid) || "-10".equals(kindUuid)) {
|
|
|
pageInfo.expression(PredicateUtils.isNull("uuid"));
|
|
|
} else {
|
|
|
if (kindUuid.contains(",")) {
|