|
@@ -168,27 +168,43 @@ public class SystemHomepageController extends BaseController {
|
|
|
return pmDemandService.procurementOfficeWillManipulateTotal();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "采购办首页待办事项(待选取代理)")
|
|
|
- @GetMapping("/procurementOffice/will/waitSelectAgent")
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(采购需求对接)")
|
|
|
+ @GetMapping("/procurementOffice/will/purchaseDemandDocking")
|
|
|
@Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
- public AjaxResult waitSelectAgent() {
|
|
|
- List<PmDemandResVo> resVos = pmDemandService.waitSelectAgent();
|
|
|
+ public AjaxResult purchaseDemandDocking() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.purchaseDemandDocking();
|
|
|
return AjaxResult.success(resVos);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "采购办首页待办事项(待上传招标文件)")
|
|
|
- @GetMapping("/procurementOffice/will/waitUpBidFile")
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(专家意见反馈)")
|
|
|
+ @GetMapping("/procurementOffice/will/expertFeedback")
|
|
|
@Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
- public AjaxResult waitUpBidFile() {
|
|
|
- List<PmDemandResVo> resVos = pmDemandService.waitUpBidFile();
|
|
|
+ public AjaxResult expertFeedback() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.expertFeedback();
|
|
|
return AjaxResult.success(resVos);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "采购办首页待办事项(待发布公告)")
|
|
|
- @GetMapping("/procurementOffice/will/waitAnnouncement")
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(采购文件编制审核)")
|
|
|
+ @GetMapping("/procurementOffice/will/procurementDocumentsReview")
|
|
|
@Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
- public AjaxResult waitAnnouncement() {
|
|
|
- List<PmDemandResVo> resVos = pmDemandService.waitAnnouncement();
|
|
|
+ public AjaxResult procurementDocumentsReview() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.procurementDocumentsReview();
|
|
|
+ return AjaxResult.success(resVos);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(采购公告发布)")
|
|
|
+ @GetMapping("/procurementOffice/will/procurementAnnouncement")
|
|
|
+ @Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
+ public AjaxResult procurementAnnouncement() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.procurementAnnouncement();
|
|
|
+ return AjaxResult.success(resVos);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(标前质疑投诉)")
|
|
|
+ @GetMapping("/procurementOffice/will/preBidQuery")
|
|
|
+ @Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
+ public AjaxResult preBidQuery() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.preBidQuery();
|
|
|
return AjaxResult.success(resVos);
|
|
|
}
|
|
|
|
|
@@ -200,19 +216,27 @@ public class SystemHomepageController extends BaseController {
|
|
|
return AjaxResult.success(resVos);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "采购办首页待办事项(待发布中标公告)")
|
|
|
- @GetMapping("/procurementOffice/will/waitBidAnnouncement")
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(评标结果公告)")
|
|
|
+ @GetMapping("/procurementOffice/will/bidResultAnnouncement")
|
|
|
+ @Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
+ public AjaxResult bidResultAnnouncement() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.bidResultAnnouncement();
|
|
|
+ return AjaxResult.success(resVos);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(流废标处置)")
|
|
|
+ @GetMapping("/procurementOffice/will/wasteBidHandle")
|
|
|
@Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
- public AjaxResult waitBidAnnouncement() {
|
|
|
- List<PmDemandResVo> resVos = pmDemandService.waitBidAnnouncement();
|
|
|
+ public AjaxResult wasteBidHandle() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.wasteBidHandle();
|
|
|
return AjaxResult.success(resVos);
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "采购办首页待办事项(中标公示中)")
|
|
|
- @GetMapping("/procurementOffice/will/biddingPublicity")
|
|
|
+ @ApiOperation(value = "采购办首页待办事项(标后质疑)")
|
|
|
+ @GetMapping("/procurementOffice/will/postBidQuery")
|
|
|
@Log(title = ModularConstans.systemHome, businessType = BusinessType.QUERY)
|
|
|
- public AjaxResult biddingPublicity() {
|
|
|
- List<PmDemandResVo> resVos = pmDemandService.biddingPublicity();
|
|
|
+ public AjaxResult postBidQuery() {
|
|
|
+ List<PmDemandResVo> resVos = pmDemandService.postBidQuery();
|
|
|
return AjaxResult.success(resVos);
|
|
|
}
|
|
|
|