rsf-server/src/main/java/com/vincent/rsf/server/manager/controller/MatnrController.java
@@ -137,13 +137,11 @@ @PreAuthorize("hasAuthority('manager:matnr:save')") @ApiOperation(value = "excel表格导入物料信息") @PostMapping("/matnr/import") public R listImport(@RequestParam MultipartFile file) throws Exception { public R listImport(MultipartFile file) throws Exception { if (Objects.isNull(file)) { throw new CoolException("文件不能为空!!"); } matnrService.importExcels(file); return R.ok(); return matnrService.importExcels(file); } }