导出格式

This commit is contained in:
jing's 2023-12-18 21:42:53 +08:00
parent 43186e2433
commit e64f740985
1 changed files with 2 additions and 2 deletions

View File

@ -363,12 +363,12 @@ public class ExportDeviceHelper {
if(StrUtil.isEmpty(item3.getDrawingNo())) {
excelField.setCellSecond(StrUtil.format("{}", item3.getMaterialName()));
}else {
excelField.setCellSecond(StrUtil.format ("{}{}", item3.getDrawingNo(), item3.getMaterialName()));
excelField.setCellSecond(StrUtil.format ("{} {}", item3.getDrawingNo(), item3.getMaterialName()));
}
excelField.setCellThird(StrUtil.format("{}",item3.getChooseStatus() == 1 ? "标配" : "可选")) ;
excelField.setCellFourth(item3.getRemak()); ;
excelField.setCellFourth(item3.getRemak());
items.add(excelField);
}