package com.ozs.web.controller.pm; import com.baomidou.mybatisplus.core.metadata.IPage; import com.ozs.common.core.domain.model.LoginUser; import com.ozs.common.utils.StringUtils; import com.ozs.framework.web.service.TokenService; import com.ozs.pm.doman.PmDemand; import com.ozs.pm.doman.vo.requestVo.PmBookBuildingReqVo; import com.ozs.pm.doman.vo.requestVo.PmDemandReqVo; import com.ozs.pm.doman.vo.responseVo.PmDemandResVo; import com.ozs.pm.service.IPmDemandService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.util.ObjectUtils; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.ozs.common.core.controller.BaseController; import com.ozs.common.core.domain.AjaxResult; import javax.servlet.http.HttpServletRequest; import javax.validation.constraints.NotEmpty; import java.util.Date; /** * 采购需求Controller * * @author ruoyi * @date 2023-01-16 */ @Api(tags = "采购需求") @RestController @RequestMapping("/pm/demand") public class PmDemandController extends BaseController { @Autowired private IPmDemandService pmDemandService; @Autowired private TokenService tokenService; /** * 查询采购需求列表 */ @ApiOperation(value = "查询采购需求列表", notes = "参数非必传") @PostMapping("/list") public AjaxResult list(@RequestBody PmDemandReqVo pmDemandReqVo) { IPage page = pmDemandService.selectPmDemandList(pmDemandReqVo,0); return success(page); } /** * 查看详情 */ @ApiOperation(value = "查看详情", notes = "必传demandId和详情类型(1项目计划,2需求建档,3任务下达,4中标信息,5合同信息,6建设情况),其他字段不传") @PostMapping("/view") public AjaxResult view(@RequestBody PmDemandReqVo pmDemandReqVo) { if(pmDemandReqVo.getDemandId() == null){ return AjaxResult.error("demandId不能为空"); } if(StringUtils.isEmpty(pmDemandReqVo.getDetailType())){ return AjaxResult.error("详情的类型不能为空"); } return success(pmDemandService.selectPmDemandByDemandId(pmDemandReqVo.getDemandId(),pmDemandReqVo.getDetailType())); } /** * 需求建档 */ @ApiOperation(value = "需求建档", notes = "必传demandId,根据项目类型必传pmDemandEngineeringResponseVo(3:工程类)、pmDemandEquipResponseVo(0:装备类)、pmDemandMaterialsResponseVo(1:物资类)、pmDemandServeResponseVo(2:服务类)其中之一") @PostMapping("/bookBuilding") public AjaxResult bookBuilding(@NotEmpty(message = "数据为空") @RequestBody PmBookBuildingReqVo pmBookBuildingReqVo, HttpServletRequest request) { try { if (pmBookBuildingReqVo.getDemandId() == null) { return AjaxResult.error("demandId不能为空"); } PmDemand pmDemand = pmDemandService.getById(pmBookBuildingReqVo.getDemandId()); if (ObjectUtils.isEmpty(pmDemand)) { return error("demandId参数错误"); } LoginUser loginUser = tokenService.getLoginUser(request); pmBookBuildingReqVo.setCreateBy(String.valueOf(loginUser.getUserId())); pmBookBuildingReqVo.setCreateTime(new Date()); pmBookBuildingReqVo.setUpdateBy(String.valueOf(loginUser.getUserId())); pmBookBuildingReqVo.setUpdateTime(pmBookBuildingReqVo.getCreateTime()); return toAjax(pmDemandService.bookBuilding(pmBookBuildingReqVo)); } catch (Exception e) { return error(e.getMessage()); } } @ApiOperation(value = "提交采购需求", notes = "必传demandId,其他字段不传") @PostMapping("/commit") public AjaxResult commit(@RequestBody PmDemandReqVo pmDemandReqVo, HttpServletRequest request) { if(pmDemandReqVo.getDemandId() == null){ return AjaxResult.error("demandId不能为空"); } LoginUser loginUser = tokenService.getLoginUser(request); pmDemandReqVo.setUpdateBy(String.valueOf(loginUser.getUserId())); return toAjax(pmDemandService.commit(pmDemandReqVo)); } /** * 查看流程图,获取当前阶段名字 */ @ApiOperation(value = "查看流程图,获取当前阶段名字", notes = "必传demandId,其他字段不传") @PostMapping("/viewFlowChart") public AjaxResult viewFlowChart(@RequestBody PmDemandReqVo pmRequestVo) { if(pmRequestVo.getDemandId() == null){ return AjaxResult.error("demandId不能为空"); } return success(pmDemandService.viewFlowChart(pmRequestVo.getDemandId())); } /** * 查看流程图,鼠标移到对应模块后,显示悬浮框提示 */ @ApiOperation(value = "查看流程图,鼠标移到对应模块后,显示悬浮框提示", notes = "必传demandId和模块名称,其他字段不传") @PostMapping("/getModuleInfo") public AjaxResult getModuleInfo(@RequestBody PmDemandReqVo pmRequestVo) { if(pmRequestVo.getDemandId() == null){ return AjaxResult.error("demandId不能为空"); } if(pmRequestVo.getModuleName() == null){ return AjaxResult.error("模块名称不能为空"); } return success(pmDemandService.getModuleInfo(pmRequestVo.getDemandId(),pmRequestVo.getModuleName())); } /** * 审核单位查询采购需求列表 */ @ApiOperation(value = "审核单位查询采购需求列表", notes = "参数非必传") @PostMapping("/examineList") public AjaxResult examineList(@RequestBody PmDemandReqVo pmDemandReqVo) { IPage page = pmDemandService.selectPmDemandList(pmDemandReqVo,1); return success(page); } @ApiOperation(value = "审核采购需求通过", notes = "必传demandId和上传附件,其他字段不传") @PostMapping("/reviewTo") public AjaxResult reviewTo(@RequestBody PmDemandReqVo pmDemandReqVo, HttpServletRequest request) { if(pmDemandReqVo.getDemandId() == null){ return AjaxResult.error("demandId不能为空"); } if(pmDemandReqVo.getSysFileRefs() == null || pmDemandReqVo.getSysFileRefs().size() == 0){ return AjaxResult.error("上传附件不能为空"); } LoginUser loginUser = tokenService.getLoginUser(request); pmDemandReqVo.setUpdateBy(String.valueOf(loginUser.getUserId())); return toAjax(pmDemandService.reviewTo(pmDemandReqVo)); } @ApiOperation(value = "审核采购需求退回", notes = "必传demandId和退回原因,其他字段不传") @PostMapping("/reviewReturn") public AjaxResult reviewReturn(@RequestBody PmDemandReqVo pmDemandReqVo, HttpServletRequest request) { if(pmDemandReqVo.getDemandId() == null){ return AjaxResult.error("demandId不能为空"); } if(StringUtils.isEmpty(pmDemandReqVo.getRefuseReason())){ return AjaxResult.error("退回原因不能为空"); } LoginUser loginUser = tokenService.getLoginUser(request); pmDemandReqVo.setUpdateBy(String.valueOf(loginUser.getUserId())); return toAjax(pmDemandService.reviewReturn(pmDemandReqVo)); } }