|
|
@@ -179,4 +179,17 @@ public class PurchaseInquiryDetailServiceImpl implements PurchaseInquiryDetailSe
|
|
|
pageInfo.expression(logicalExpression);
|
|
|
return findByPageInfo(pageInfo, keyword, filter);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 查询已报价数据
|
|
|
+ *
|
|
|
+ * @param pageInfo 分页信息
|
|
|
+ * @param filter 过滤条件
|
|
|
+ * @return SPage<PurchaseInquiryDetail>
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public SPage<PurchaseInquiryDetail> findDoneByPageInfo(PageInfo pageInfo, SearchFilter filter) {
|
|
|
+ pageInfo.expression(PredicateUtils.or(PredicateUtils.isNull("inquiry.check"), PredicateUtils.eq("inquiry.check", Constant.NO, false)));
|
|
|
+ return findByPageInfo(pageInfo, null, filter);
|
|
|
+ }
|
|
|
}
|