|
@@ -173,6 +173,9 @@ public class CmsOrderController {
|
|
|
if (interestStatus == null) {
|
|
if (interestStatus == null) {
|
|
|
builder.field(RealGoodsInterestUserView::getInterestStatus, "hasPayment").op(Operator.NotEqual);
|
|
builder.field(RealGoodsInterestUserView::getInterestStatus, "hasPayment").op(Operator.NotEqual);
|
|
|
search = beanSearcher.search(RealGoodsInterestUserView.class, builder.build());
|
|
search = beanSearcher.search(RealGoodsInterestUserView.class, builder.build());
|
|
|
|
|
+ } else if (interestStatus != RealGoodsInterestUser.Status.hasPayment) {
|
|
|
|
|
+ builder.field(RealGoodsInterestUserView::getInterestStatus, interestStatus.name());
|
|
|
|
|
+ search = beanSearcher.search(RealGoodsInterestUserView.class, builder.build());
|
|
|
} else {
|
|
} else {
|
|
|
search = new SearchResult<>();
|
|
search = new SearchResult<>();
|
|
|
SearchResult<RealGoodsInterestUserHasPaymentView> search2 = beanSearcher.search(RealGoodsInterestUserHasPaymentView.class, builder.build());
|
|
SearchResult<RealGoodsInterestUserHasPaymentView> search2 = beanSearcher.search(RealGoodsInterestUserHasPaymentView.class, builder.build());
|