|
|
|
@ -1,5 +1,7 @@ |
|
|
|
|
package org.jeecg.modules.tablex.controller; |
|
|
|
|
|
|
|
|
|
import java.io.File; |
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
|
import java.util.*; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
import java.io.IOException; |
|
|
|
@ -40,10 +42,13 @@ import org.jeecg.modules.tablex.vo.TablexVo; |
|
|
|
|
import org.jeecg.modules.tablex.ws.WebSocketUtils; |
|
|
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil; |
|
|
|
|
import org.jeecgframework.poi.excel.def.NormalExcelConstants; |
|
|
|
|
import org.jeecgframework.poi.excel.def.TemplateExcelConstants; |
|
|
|
|
import org.jeecgframework.poi.excel.entity.ExportParams; |
|
|
|
|
import org.jeecgframework.poi.excel.entity.ImportParams; |
|
|
|
|
import org.jeecgframework.poi.excel.entity.TemplateExportParams; |
|
|
|
|
import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; |
|
|
|
|
import org.jeecg.common.system.base.controller.JeecgController; |
|
|
|
|
import org.jeecgframework.poi.excel.view.JeecgTemplateExcelView; |
|
|
|
|
import org.springframework.beans.BeanUtils; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
@ -291,7 +296,7 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
if (StringUtils.isBlank(originalFilename) || |
|
|
|
|
(!originalFilename.endsWith("xls") && |
|
|
|
|
!originalFilename.endsWith("xlsx"))) { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("文件格式不正确"); |
|
|
|
|
} |
|
|
|
@ -308,13 +313,13 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
//读取excel数据
|
|
|
|
|
list = ExcelImportUtil.importExcel(file.getInputStream(), TablexVo.class, params); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("文件读取失败"); |
|
|
|
|
} |
|
|
|
|
//判断文件中是否存在数据
|
|
|
|
|
if (list == null || list.size() == 0) { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("Excel数据为空"); |
|
|
|
|
} |
|
|
|
@ -338,7 +343,7 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
//判断版本号长度
|
|
|
|
|
String verison = tablexVo.getVerison(); |
|
|
|
|
if (verison.length() > 5) { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("预读入失败,版本号格式错误"); |
|
|
|
|
} |
|
|
|
@ -352,7 +357,7 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
tablexVoService.removeAll(voList); |
|
|
|
|
|
|
|
|
|
if (voList.size() == 0) { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,数据为空"); |
|
|
|
|
} |
|
|
|
@ -366,7 +371,7 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
|
|
|
|
|
String moduleId = voList.get(i).getModuleId(); |
|
|
|
|
if (moduleId == null || moduleId.equals("")){ |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("对应模块填写不能为空"); |
|
|
|
|
} |
|
|
|
@ -374,7 +379,7 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
queryWrapper.eq(Modulex::getId,moduleId); |
|
|
|
|
Modulex modulex = modulexService.getOne(queryWrapper); |
|
|
|
|
if(modulex == null){ |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("对应模块填写错误"); |
|
|
|
|
} |
|
|
|
@ -416,43 +421,70 @@ public class TablexController extends JeecgController<Tablex, ITablexService> { |
|
|
|
|
tablexService.saveSingleBatch(tablexList,loginUser,message); |
|
|
|
|
|
|
|
|
|
} else { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,第" + i + 1 + "行的版本号填写错误!"); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,第" + i + 1 + "行的版本状态填写错误!"); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,第" + i + 1 + "行的实体状态填写错误!"); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,第" + i + 1 + "行的英文名称填写错误!"); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,第" + i + 1 + "行的中文名称填写错误!"); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/*message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("导入失败,第" + i + 1 + "行的对应模块填写错误!"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/* message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.error("文件导入失败"); |
|
|
|
|
} |
|
|
|
|
message.put("isVisible", "false"); |
|
|
|
|
/*message.put("isVisible", "false");*/ |
|
|
|
|
webSocketUtils.sendMessage(loginUser.getId(), message); |
|
|
|
|
return Result.ok("文件导入成功!"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/* //导出实体标准模板
|
|
|
|
|
@RequestMapping(value = "/templateExcel") |
|
|
|
|
public ModelAndView wbsExcelTemplate(HttpServletRequest request, HttpServletResponse response) { |
|
|
|
|
Map<String, Object> map = new HashMap<String, Object>(); |
|
|
|
|
//设置导出文件名称
|
|
|
|
|
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); |
|
|
|
|
Date date = new Date(System.currentTimeMillis()); |
|
|
|
|
String currTime = formatter.format(date); |
|
|
|
|
String fileName = currTime + "-" + "模板.xlsx"; |
|
|
|
|
try { |
|
|
|
|
String url = getClass().getClassLoader().getResource("static").getPath(); |
|
|
|
|
// 模板存放地址 这里写的地址根本拿不到 在其他人的电脑上
|
|
|
|
|
String templateUrl = wordPath + File.separator + "实体表模板.xls"; |
|
|
|
|
TemplateExportParams params = new TemplateExportParams( |
|
|
|
|
templateUrl); |
|
|
|
|
ModelAndView mv = new ModelAndView(new JeecgTemplateExcelView()); |
|
|
|
|
mv.addObject(TemplateExcelConstants.FILE_NAME, fileName); |
|
|
|
|
mv.addObject(TemplateExcelConstants.PARAMS, params); |
|
|
|
|
// 添加模板参数
|
|
|
|
|
mv.addObject(TemplateExcelConstants.MAP_DATA, map); //data
|
|
|
|
|
return mv; |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("下载模板异常--》{}", e); |
|
|
|
|
} |
|
|
|
|
return null; |
|
|
|
|
}*/ |
|
|
|
|
} |
|
|
|
|