|
@@ -173,6 +173,25 @@ public class MaterialInfoController extends BaseController {
|
|
|
return "modules/sg/managementcenter/materialinfo/importexcel";
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 多文件导出页面
|
|
|
+ */
|
|
|
+ @RequestMapping(value = "/importMore/Form")
|
|
|
+ public String importMoreForm(Model model){
|
|
|
+ return "modules/sg/managementcenter/materialinfo/importmore";
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 项目验证
|
|
|
+ * @param file
|
|
|
+ * @param batch
|
|
|
+ * @return
|
|
|
+ * @throws IOException
|
|
|
+ * @throws InvalidFormatException
|
|
|
+ */
|
|
|
+
|
|
|
@ResponseBody
|
|
|
@RequestMapping(value = "importValidation")
|
|
|
public AjaxJson importValidation(@RequestParam("file")MultipartFile file,String batch) throws IOException, InvalidFormatException {
|