|
|
@@ -128,41 +128,6 @@ public class SaleInquiryMouldController {
|
|
|
return searchService.searchPurcInquiryMouldIds(keyword, pageParams);
|
|
|
}
|
|
|
|
|
|
-// /**
|
|
|
-// * 作为卖家,收到的模具询价(已过期)
|
|
|
-// *
|
|
|
-// * @param params
|
|
|
-// * @return
|
|
|
-// */
|
|
|
-// @RequestMapping(params = RequestState.END, method = RequestMethod.GET)
|
|
|
-// @ResponseBody
|
|
|
-// public SPage<PurchaseInquiryMould> getEndInquiryMould(PageParams params, String searchFilter) {
|
|
|
-// logger.log("客户模具询价单", "查看收到的客户模具询价单列表(已过期)");
|
|
|
-// JSONObject jsonObject = JSON.parseObject(searchFilter);
|
|
|
-// String keyword = jsonObject.getString("keyword");
|
|
|
-// com.uas.search.b2b.model.PageParams pageParams = searchService.convertPageParams(params, searchFilter);
|
|
|
-// // 当前登录企业作为供应商
|
|
|
-// pageParams.getFilters().put("im_venduu", SystemSession.getUser().getEnterprise().getUu());
|
|
|
-// SearchFilter filter = userService.distribute();
|
|
|
-// if (filter != null && filter.getDistribute() == null) {
|
|
|
-// return null;
|
|
|
-// }
|
|
|
-// if (filter != null && !CollectionUtils.isEmpty(filter.getDistribute())) {
|
|
|
-// List<Object> list = new ArrayList<>();
|
|
|
-// for (Object object : filter.getDistribute()) {
|
|
|
-// list.add(object);
|
|
|
-// }
|
|
|
-// pageParams.getFilters().put("im_enuu", new MultiValue(list, true));
|
|
|
-// }
|
|
|
-// pageParams.getFilters().put("im_status", Status.NOT_REPLY.value());
|
|
|
-// pageParams.getFilters().put("im_overdue", Constant.YES);
|
|
|
-// pageParams.getFilters().put("im_valid", Constant.YES);
|
|
|
-// List<Sort> sortList = new ArrayList<>();
|
|
|
-// sortList.add(new Sort("im_id", false, Type.LONG, new Long(1)));
|
|
|
-// pageParams.getFilters().put(SearchConstants.SORT_KEY, sortList);
|
|
|
-// return searchService.searchPurcInquiryMouldIds(keyword, pageParams);
|
|
|
-// }
|
|
|
-
|
|
|
/**
|
|
|
* 作为卖家,收到的模具询价(已报价)- 搜索
|
|
|
*
|