工作流 复审 标准类别搜索

This commit is contained in:
gaojiabao
2023-04-28 14:15:56 +08:00
parent 2e19db8cc8
commit 06f7ae6e90
4 changed files with 7 additions and 7 deletions
@@ -501,5 +501,5 @@ public interface workFlowFeignClient {
@RequestMapping(value = "/bat-wkflow/datas/bus-process-new/getSarBussionStandPageNo",method = RequestMethod.POST) @RequestMapping(value = "/bat-wkflow/datas/bus-process-new/getSarBussionStandPageNo",method = RequestMethod.POST)
List<SarBussionessStandState> getSarBussionStandPageNo(@RequestBody List<SarBussionessStandState> rows); List<SarBussionessStandState> getSarBussionStandPageNo(@RequestBody List<SarBussionessStandState> rows);
@RequestMapping(value = "/bat-wkflow/busProcessModel/recieveFile",method = RequestMethod.POST) @RequestMapping(value = "/bat-wkflow/busProcessModel/recieveFile",method = RequestMethod.POST)
void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId); void recieveFile(HttpServletRequest request, HttpServletResponse response ,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId);
} }
@@ -466,7 +466,7 @@ public class workFlowFeignClientImpl {
return workFlowFeignClient.getSarBussionStandPageNo(rows); return workFlowFeignClient.getSarBussionStandPageNo(rows);
} }
public void recieveFile(@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId) { public void recieveFile(HttpServletRequest request, HttpServletResponse response ,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId) {
workFlowFeignClient.recieveFile(fileNm,standNo,pid,taskId); workFlowFeignClient.recieveFile(request,response,fileNm,standNo,fileId);
} }
} }
@@ -1322,8 +1322,8 @@ public class WorkFlowController extends BaseController {
@ApiOperation(value = "|onlyOffice接收文件") @ApiOperation(value = "|onlyOffice接收文件")
@PostMapping("/recieveFile") @PostMapping("/recieveFile")
public void recieveFile(HttpServletRequest request, HttpServletResponse response,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("pid") String pid,@RequestParam("taskId") String taskId){ public void recieveFile(HttpServletRequest request, HttpServletResponse response,@RequestParam("fileNm") String fileNm,@RequestParam("standNo") String standNo,@RequestParam("fileId") String fileId){
workFlowFeignClient.recieveFile(fileNm,standNo,pid,taskId); workFlowFeignClient.recieveFile(request,response,fileNm,standNo,fileId);
} }
} }
@@ -177,8 +177,8 @@ public class WebMvcConfig implements WebMvcConfigurer {
//// //测试接口使用 //// //测试接口使用
// addInterceptor.excludePathPatterns("/api/**"); // addInterceptor.excludePathPatterns("/api/**");
//在线编辑
addInterceptor.excludePathPatterns("/api/lawss/activiti/recieveFile");
// // 添加自定义拦截器,并拦截对应 url // // 添加自定义拦截器,并拦截对应 url