|
@@ -4496,8 +4496,13 @@ public R<Object> customAddContractNode(@RequestBody CustomAddContractNodeDTO dto
|
|
|
}
|
|
|
|
|
|
@Async
|
|
|
- private R getPdfs(InformationQuery query) throws IOException{
|
|
|
- return excelTabClient.getPdfS(query.getWbsId() + "", query.getClassify() + "", query.getContractId() + "");
|
|
|
+ public R getPdfs(InformationQuery query){
|
|
|
+ try {
|
|
|
+ return excelTabClient.getPdfS(query.getWbsId() + "", query.getClassify() + "", query.getContractId() + "");
|
|
|
+ } catch (IOException e) {
|
|
|
+ e.printStackTrace();
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
}
|