2022-03-11 17:33:03 +08:00
|
|
|
|
package com.xkrs.service.impl;
|
2022-03-10 19:24:42 +08:00
|
|
|
|
|
2022-03-16 12:53:49 +08:00
|
|
|
|
import com.xkrs.dao.CraftItemDao;
|
2022-03-11 17:30:56 +08:00
|
|
|
|
import com.xkrs.dao.QcItemDao;
|
|
|
|
|
import com.xkrs.dao.QcSourceDao;
|
2022-03-12 14:43:52 +08:00
|
|
|
|
import com.xkrs.dao.QcSpecDao;
|
2022-03-12 13:52:15 +08:00
|
|
|
|
import com.xkrs.encapsulation.PromptMessageEnum;
|
2022-03-16 12:53:49 +08:00
|
|
|
|
import com.xkrs.model.entity.CraftItemEntity;
|
2022-03-11 17:33:03 +08:00
|
|
|
|
import com.xkrs.model.entity.QcItemEntity;
|
|
|
|
|
import com.xkrs.model.entity.QcSourceEntity;
|
2022-03-12 14:43:52 +08:00
|
|
|
|
import com.xkrs.model.entity.QcSpecEntity;
|
2022-03-11 17:33:03 +08:00
|
|
|
|
import com.xkrs.model.qo.QcSourceQoDelete;
|
|
|
|
|
import com.xkrs.model.qo.QcSourceQoInsert;
|
|
|
|
|
import com.xkrs.service.QcSourceService;
|
|
|
|
|
import com.xkrs.util.Constant;
|
2022-03-12 13:52:15 +08:00
|
|
|
|
import com.xkrs.util.ExcelUploadUtil;
|
2022-03-11 17:33:03 +08:00
|
|
|
|
import com.xkrs.util.LocalDateUtils;
|
|
|
|
|
import com.xkrs.util.LocalStringUtils;
|
2022-03-12 13:52:15 +08:00
|
|
|
|
import org.apache.http.util.TextUtils;
|
2022-03-17 11:02:42 +08:00
|
|
|
|
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
|
|
|
|
|
import org.apache.poi.hssf.util.HSSFColor;
|
|
|
|
|
import org.apache.poi.ss.util.CellRangeAddress;
|
|
|
|
|
import org.apache.poi.xssf.usermodel.*;
|
2022-03-10 20:09:26 +08:00
|
|
|
|
import org.springframework.context.i18n.LocaleContextHolder;
|
2022-03-11 16:07:31 +08:00
|
|
|
|
import org.springframework.stereotype.Service;
|
2022-03-11 16:30:05 +08:00
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
2022-03-10 20:09:26 +08:00
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
2022-03-12 13:52:15 +08:00
|
|
|
|
import javax.transaction.Transactional;
|
2022-03-17 11:02:42 +08:00
|
|
|
|
import java.io.FileOutputStream;
|
2022-03-11 17:03:37 +08:00
|
|
|
|
import java.io.IOException;
|
2022-03-12 13:52:15 +08:00
|
|
|
|
import java.util.*;
|
2022-03-10 19:24:42 +08:00
|
|
|
|
|
2022-03-10 20:50:21 +08:00
|
|
|
|
import static com.xkrs.encapsulation.OutputEncapsulation.outputEncapsulationObject;
|
|
|
|
|
|
2022-03-11 16:07:31 +08:00
|
|
|
|
@Service
|
2022-03-10 19:24:42 +08:00
|
|
|
|
public class QcSourceServiceImpl implements QcSourceService {
|
2022-03-10 20:09:26 +08:00
|
|
|
|
|
|
|
|
|
private Locale locale = LocaleContextHolder.getLocale();
|
|
|
|
|
|
2022-03-16 12:53:49 +08:00
|
|
|
|
@Resource
|
|
|
|
|
private CraftItemDao craftItemDao;
|
|
|
|
|
|
2022-03-11 17:03:37 +08:00
|
|
|
|
@Resource
|
|
|
|
|
private QcItemDao qcItemDao;
|
|
|
|
|
|
2022-03-10 20:09:26 +08:00
|
|
|
|
@Resource
|
|
|
|
|
private QcSourceDao qcSourceDao;
|
|
|
|
|
|
2022-03-12 14:43:52 +08:00
|
|
|
|
@Resource
|
|
|
|
|
private QcSpecDao qcSpecDao;
|
|
|
|
|
|
2022-03-17 11:02:42 +08:00
|
|
|
|
/**
|
|
|
|
|
* 导出excel样式一(表头顺序)
|
|
|
|
|
* 批次号 机器号 物料号 模具号 机种号
|
|
|
|
|
*/
|
|
|
|
|
List<String> EXCEL_HEAD_STYLE_ONE_NO = Arrays.asList("batchNo", "machineNo", "materialNo", "mouldNo", "varietyNo", "craftItemNo");
|
|
|
|
|
List<String> EXCEL_HEAD_STYLE_ONE_NAME = Arrays.asList("批次", "机器", "物料", "模具", "机种", "工艺项目");
|
|
|
|
|
|
2022-03-10 20:50:21 +08:00
|
|
|
|
/**
|
2022-03-11 15:37:06 +08:00
|
|
|
|
* 添加检验数据
|
2022-03-10 20:50:21 +08:00
|
|
|
|
*/
|
2022-03-10 19:33:25 +08:00
|
|
|
|
@Override
|
2022-03-11 16:30:05 +08:00
|
|
|
|
public String insertQcSource(QcSourceQoInsert insertQo, MultipartFile picture) {
|
2022-03-10 20:50:21 +08:00
|
|
|
|
String batchNo = insertQo.getBatchNo();
|
|
|
|
|
String machineNo = insertQo.getMachineNo();
|
|
|
|
|
String materialNo = insertQo.getMaterialNo();
|
|
|
|
|
String mouldNo = insertQo.getMouldNo();
|
|
|
|
|
String varietyNo = insertQo.getVarietyNo();
|
2022-03-16 12:53:49 +08:00
|
|
|
|
String craftItemNo = insertQo.getCraftItemNo();
|
2022-03-10 20:50:21 +08:00
|
|
|
|
String qcItemNo = insertQo.getQcItemNo();
|
|
|
|
|
String qcValue = insertQo.getQcValue();
|
2022-03-16 12:53:49 +08:00
|
|
|
|
Optional<CraftItemEntity> craftItemByNo = craftItemDao.findByCraftItemNo(craftItemNo);
|
|
|
|
|
if (craftItemByNo.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "不存在该工艺项目,请先添加工艺项目!", locale);
|
|
|
|
|
}
|
|
|
|
|
Optional<QcItemEntity> qcItemByNo = qcItemDao.findByQcItemNo(qcItemNo);
|
|
|
|
|
if (qcItemByNo.isEmpty()) {
|
2022-03-11 17:03:37 +08:00
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "不存在该检验项目,请先添加检验项目!", locale);
|
|
|
|
|
}
|
2022-03-16 12:53:49 +08:00
|
|
|
|
if (Constant.QC_ITEM_TYPE_STRING.equals(qcItemByNo.get().getQcItemType())) {
|
2022-03-11 17:03:37 +08:00
|
|
|
|
QcSourceEntity entity = new QcSourceEntity();
|
|
|
|
|
entity.setCreateTime(LocalDateUtils.getCurrentSecond());
|
|
|
|
|
entity.setBatchNo(LocalStringUtils.formatEmptyValue(batchNo));
|
|
|
|
|
entity.setMachineNo(LocalStringUtils.formatEmptyValue(machineNo));
|
|
|
|
|
entity.setMaterialNo(LocalStringUtils.formatEmptyValue(materialNo));
|
|
|
|
|
entity.setMouldNo(LocalStringUtils.formatEmptyValue(mouldNo));
|
|
|
|
|
entity.setVarietyNo(LocalStringUtils.formatEmptyValue(varietyNo));
|
2022-03-16 12:53:49 +08:00
|
|
|
|
entity.setCraftItemNo(LocalStringUtils.formatEmptyValue(craftItemNo));
|
2022-03-11 17:03:37 +08:00
|
|
|
|
entity.setQcItemNo(LocalStringUtils.formatEmptyValue(qcItemNo));
|
|
|
|
|
entity.setQcValue(LocalStringUtils.formatEmptyValue(qcValue));
|
|
|
|
|
qcSourceDao.save(entity);
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS, "添加成功!", locale);
|
|
|
|
|
}
|
2022-03-16 12:53:49 +08:00
|
|
|
|
if (Constant.QC_ITEM_TYPE_PICTURE.equals(qcItemByNo.get().getQcItemType())) {
|
2022-03-11 17:03:37 +08:00
|
|
|
|
if (picture == null) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "上传图片不能为空!", locale);
|
|
|
|
|
}
|
|
|
|
|
String picturePath;
|
|
|
|
|
try {
|
|
|
|
|
picturePath = ExcelUploadUtil.memoryFile(picture, 2);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "上传图片失败!", locale);
|
|
|
|
|
}
|
|
|
|
|
QcSourceEntity entity = new QcSourceEntity();
|
|
|
|
|
entity.setCreateTime(LocalDateUtils.getCurrentSecond());
|
|
|
|
|
entity.setBatchNo(LocalStringUtils.formatEmptyValue(batchNo));
|
|
|
|
|
entity.setMachineNo(LocalStringUtils.formatEmptyValue(machineNo));
|
|
|
|
|
entity.setMaterialNo(LocalStringUtils.formatEmptyValue(materialNo));
|
|
|
|
|
entity.setMouldNo(LocalStringUtils.formatEmptyValue(mouldNo));
|
|
|
|
|
entity.setVarietyNo(LocalStringUtils.formatEmptyValue(varietyNo));
|
2022-03-16 12:53:49 +08:00
|
|
|
|
entity.setCraftItemNo(LocalStringUtils.formatEmptyValue(craftItemNo));
|
2022-03-11 17:03:37 +08:00
|
|
|
|
entity.setQcItemNo(LocalStringUtils.formatEmptyValue(qcItemNo));
|
|
|
|
|
entity.setQcValue(LocalStringUtils.formatEmptyValue(picturePath));
|
|
|
|
|
qcSourceDao.save(entity);
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS, "添加成功!", locale);
|
|
|
|
|
}
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "添加失败!", locale);
|
2022-03-10 19:33:25 +08:00
|
|
|
|
}
|
2022-03-11 10:28:36 +08:00
|
|
|
|
|
|
|
|
|
/**
|
2022-03-11 15:37:06 +08:00
|
|
|
|
* 删除检验数据
|
|
|
|
|
*/
|
2022-03-12 13:52:15 +08:00
|
|
|
|
@Transactional(rollbackOn = Exception.class)
|
2022-03-11 15:37:06 +08:00
|
|
|
|
@Override
|
|
|
|
|
public String deleteQcSource(QcSourceQoDelete deleteQo) {
|
|
|
|
|
Integer id = deleteQo.getId();
|
|
|
|
|
Optional<QcSourceEntity> entityById = qcSourceDao.findById(id);
|
|
|
|
|
if (entityById.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "不存在该检验数据,请先添加检验数据!", locale);
|
|
|
|
|
}
|
|
|
|
|
qcSourceDao.deleteById(id);
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS, "删除成功!", locale);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询检验数据
|
2022-03-11 10:28:36 +08:00
|
|
|
|
*/
|
|
|
|
|
@Override
|
2022-03-16 12:53:49 +08:00
|
|
|
|
public String queryQcSource(String batchNo, String machineNo, String materialNo, String mouldNo, String varietyNo, String craftItemNo) {
|
2022-03-17 11:02:42 +08:00
|
|
|
|
List<CraftItemEntity> craftItemList = craftItemDao.findAll();
|
|
|
|
|
if (craftItemList.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "未添加工艺项目,请先添加工艺项目!", locale);
|
|
|
|
|
}
|
2022-03-12 13:52:15 +08:00
|
|
|
|
List<QcItemEntity> qcItemList = qcItemDao.findAll();
|
|
|
|
|
if (qcItemList.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "未添加检验项目,请先添加检验项目!", locale);
|
2022-03-11 14:09:37 +08:00
|
|
|
|
}
|
2022-03-16 12:53:49 +08:00
|
|
|
|
List<Map<String, Object>> sourceList = qcSourceDao.queryQcSource(LocalStringUtils.formatEmptyValue(batchNo), LocalStringUtils.formatEmptyValue(machineNo), LocalStringUtils.formatEmptyValue(materialNo), LocalStringUtils.formatEmptyValue(mouldNo), LocalStringUtils.formatEmptyValue(varietyNo), LocalStringUtils.formatEmptyValue(craftItemNo));
|
2022-03-12 14:43:52 +08:00
|
|
|
|
List<Map<String, Object>> resultList = generateResultList(sourceList);
|
2022-03-12 13:52:15 +08:00
|
|
|
|
if (resultList.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "暂时没有该检验数据的信息!", locale);
|
2022-03-11 17:23:34 +08:00
|
|
|
|
}
|
2022-03-12 13:52:15 +08:00
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS, resultList, locale);
|
|
|
|
|
}
|
2022-03-11 17:23:34 +08:00
|
|
|
|
|
2022-03-12 14:43:52 +08:00
|
|
|
|
/**
|
|
|
|
|
* 生成返回结果
|
|
|
|
|
*/
|
|
|
|
|
private List<Map<String, Object>> generateResultList(List<Map<String, Object>> sourceList) {
|
2022-03-12 13:52:15 +08:00
|
|
|
|
List<Map<String, Object>> resultList = new ArrayList<>();
|
|
|
|
|
if (sourceList == null || sourceList.isEmpty()) {
|
|
|
|
|
return resultList;
|
|
|
|
|
}
|
|
|
|
|
for (Map<String, Object> source : sourceList) {
|
|
|
|
|
String batchNo = (String) source.getOrDefault("batchNo", "");
|
|
|
|
|
String machineNo = (String) source.getOrDefault("machineNo", "");
|
|
|
|
|
String materialNo = (String) source.getOrDefault("materialNo", "");
|
|
|
|
|
String mouldNo = (String) source.getOrDefault("mouldNo", "");
|
|
|
|
|
String varietyNo = (String) source.getOrDefault("varietyNo", "");
|
2022-03-16 12:53:49 +08:00
|
|
|
|
String craftItemNo = (String) source.getOrDefault("craftItemNo", "");
|
2022-03-12 13:52:15 +08:00
|
|
|
|
String qcItemNo = (String) source.getOrDefault("qcItemNo", "");
|
|
|
|
|
String qcValue = (String) source.getOrDefault("qcValue", "");
|
|
|
|
|
if (TextUtils.isEmpty(qcItemNo) || TextUtils.isEmpty(qcValue)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2022-03-16 12:53:49 +08:00
|
|
|
|
String formatValue = getFormatValue(varietyNo, craftItemNo, qcItemNo, qcValue);
|
2022-03-12 13:52:15 +08:00
|
|
|
|
Map<String, Object> emptyRoom = findEmptyRoom(resultList, batchNo, qcItemNo);
|
|
|
|
|
if (emptyRoom == null) {
|
|
|
|
|
Map<String, Object> newRoom = new HashMap<>();
|
2022-03-17 11:02:42 +08:00
|
|
|
|
newRoom.put(EXCEL_HEAD_STYLE_ONE_NO.get(0), batchNo);
|
|
|
|
|
newRoom.put(EXCEL_HEAD_STYLE_ONE_NO.get(1), machineNo);
|
|
|
|
|
newRoom.put(EXCEL_HEAD_STYLE_ONE_NO.get(2), materialNo);
|
|
|
|
|
newRoom.put(EXCEL_HEAD_STYLE_ONE_NO.get(3), mouldNo);
|
|
|
|
|
newRoom.put(EXCEL_HEAD_STYLE_ONE_NO.get(4), varietyNo);
|
|
|
|
|
newRoom.put(EXCEL_HEAD_STYLE_ONE_NO.get(5), craftItemNo);
|
2022-03-12 14:43:52 +08:00
|
|
|
|
newRoom.put(qcItemNo, formatValue);
|
2022-03-12 13:52:15 +08:00
|
|
|
|
resultList.add(newRoom);
|
|
|
|
|
} else {
|
2022-03-12 14:43:52 +08:00
|
|
|
|
emptyRoom.put(qcItemNo, formatValue);
|
2022-03-12 13:52:15 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return resultList;
|
|
|
|
|
}
|
2022-03-11 17:23:34 +08:00
|
|
|
|
|
2022-03-12 14:43:52 +08:00
|
|
|
|
/**
|
|
|
|
|
* 获取添加了 ##H 或 ##L 后缀的测量值(如果可能的话)
|
|
|
|
|
*/
|
2022-03-16 12:53:49 +08:00
|
|
|
|
private String getFormatValue(String varietyNo, String craftItemNo, String qcItemNo, String qcValue) {
|
|
|
|
|
Optional<QcSpecEntity> existsQcSpecOptional = qcSpecDao.findExistsQcSpec(varietyNo, craftItemNo, qcItemNo);
|
|
|
|
|
if (existsQcSpecOptional.isEmpty()) {
|
2022-03-12 14:43:52 +08:00
|
|
|
|
return qcValue;
|
|
|
|
|
}
|
2022-03-16 12:53:49 +08:00
|
|
|
|
QcSpecEntity existsQcSpec = existsQcSpecOptional.get();
|
|
|
|
|
double valueMax = stringToDouble(existsQcSpec.getMax());
|
|
|
|
|
double valueMin = stringToDouble(existsQcSpec.getMin());
|
2022-03-12 14:43:52 +08:00
|
|
|
|
double value = stringToDouble(qcValue);
|
|
|
|
|
if (valueMax >= 0 && value >= 0 && value >= valueMax) {
|
|
|
|
|
return qcValue + "##H";
|
|
|
|
|
}
|
|
|
|
|
if (valueMin >= 0 && value >= 0 && value <= valueMin) {
|
|
|
|
|
return qcValue + "##L";
|
|
|
|
|
}
|
|
|
|
|
return qcValue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 格式化字符串为Double
|
|
|
|
|
*/
|
|
|
|
|
private Double stringToDouble(String stringValue) {
|
|
|
|
|
try {
|
|
|
|
|
return Double.parseDouble(stringValue);
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
return -1D;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 尝试找到一个qcItemNo有空位置的Map
|
|
|
|
|
*/
|
2022-03-12 13:52:15 +08:00
|
|
|
|
private Map<String, Object> findEmptyRoom(List<Map<String, Object>> mapList, String batchNo, String qcItemNo) {
|
|
|
|
|
if (mapList == null || mapList.isEmpty() || TextUtils.isEmpty(batchNo) || TextUtils.isEmpty(qcItemNo)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
for (Map<String, Object> room : mapList) {
|
|
|
|
|
if (room.getOrDefault("batchNo", "").equals(batchNo)) {
|
|
|
|
|
if (!room.containsKey(qcItemNo)) {
|
|
|
|
|
return room;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return null;
|
2022-03-11 10:28:36 +08:00
|
|
|
|
}
|
2022-03-12 13:52:15 +08:00
|
|
|
|
|
2022-03-17 11:02:42 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 导出Excel表格
|
|
|
|
|
*/
|
|
|
|
|
@Override
|
|
|
|
|
public String exportExcel(String batchNo, String machineNo, String materialNo, String mouldNo, String varietyNo, String craftItemNo) throws Exception {
|
|
|
|
|
List<CraftItemEntity> craftItemList = craftItemDao.findAll();
|
|
|
|
|
if (craftItemList.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "未添加工艺项目,请先添加工艺项目!", locale);
|
|
|
|
|
}
|
|
|
|
|
List<QcItemEntity> qcItemList = qcItemDao.findAll();
|
|
|
|
|
if (qcItemList.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "未添加检验项目,请先添加检验项目!", locale);
|
|
|
|
|
}
|
|
|
|
|
List<Map<String, Object>> sourceList = qcSourceDao.queryQcSource(LocalStringUtils.formatEmptyValue(batchNo), LocalStringUtils.formatEmptyValue(machineNo), LocalStringUtils.formatEmptyValue(materialNo), LocalStringUtils.formatEmptyValue(mouldNo), LocalStringUtils.formatEmptyValue(varietyNo), LocalStringUtils.formatEmptyValue(craftItemNo));
|
|
|
|
|
List<Map<String, Object>> resultList = generateResultList(sourceList);
|
|
|
|
|
List<List<String>> formattedResultList = formatResultList(resultList, qcItemList);
|
|
|
|
|
if (formattedResultList.isEmpty()) {
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.DATA_NONE, "暂时没有该检验数据的信息!", locale);
|
|
|
|
|
}
|
|
|
|
|
doExportExcel(formattedResultList);
|
|
|
|
|
return outputEncapsulationObject(PromptMessageEnum.SUCCESS, "导出成功!", locale);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 格式化结果集数据
|
|
|
|
|
*/
|
|
|
|
|
private List<List<String>> formatResultList(List<Map<String, Object>> resultList, List<QcItemEntity> qcItemList) {
|
|
|
|
|
List<List<String>> formatResultList = new ArrayList<>();
|
|
|
|
|
if (resultList == null || resultList.isEmpty()) {
|
|
|
|
|
return formatResultList;
|
|
|
|
|
}
|
|
|
|
|
List<String> headList = new ArrayList<>(EXCEL_HEAD_STYLE_ONE_NAME);
|
|
|
|
|
for (QcItemEntity qcItemEntity : qcItemList) {
|
|
|
|
|
headList.add(qcItemEntity.getQcItemName());
|
|
|
|
|
}
|
|
|
|
|
formatResultList.add(headList);
|
|
|
|
|
for (Map<String, Object> dataMap : resultList) {
|
|
|
|
|
List<String> dataList = new ArrayList<>();
|
|
|
|
|
dataList.add((String) dataMap.getOrDefault(EXCEL_HEAD_STYLE_ONE_NO.get(0), ""));
|
|
|
|
|
dataList.add((String) dataMap.getOrDefault(EXCEL_HEAD_STYLE_ONE_NO.get(1), ""));
|
|
|
|
|
dataList.add((String) dataMap.getOrDefault(EXCEL_HEAD_STYLE_ONE_NO.get(2), ""));
|
|
|
|
|
dataList.add((String) dataMap.getOrDefault(EXCEL_HEAD_STYLE_ONE_NO.get(3), ""));
|
|
|
|
|
dataList.add((String) dataMap.getOrDefault(EXCEL_HEAD_STYLE_ONE_NO.get(4), ""));
|
|
|
|
|
dataList.add((String) dataMap.getOrDefault(EXCEL_HEAD_STYLE_ONE_NO.get(5), ""));
|
|
|
|
|
for (QcItemEntity entity : qcItemList) {
|
|
|
|
|
String value = (String) dataMap.getOrDefault(entity.getQcItemNo(), "");
|
|
|
|
|
if (Constant.QC_ITEM_TYPE_STRING.equals(entity.getQcItemType())) {
|
|
|
|
|
dataList.add(value);
|
|
|
|
|
} else if (Constant.QC_ITEM_TYPE_PICTURE.equals(entity.getQcItemType())) {
|
|
|
|
|
if (value.startsWith("picture")) {
|
|
|
|
|
dataList.add("http://118.24.27.47:2088/" + value);
|
|
|
|
|
} else {
|
|
|
|
|
dataList.add(value);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
dataList.add(value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
formatResultList.add(dataList);
|
|
|
|
|
}
|
|
|
|
|
return formatResultList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 将格式化后的结果集数据导出为Excel文件
|
|
|
|
|
*/
|
|
|
|
|
private void doExportExcel(List<List<String>> dataListList) throws Exception {
|
|
|
|
|
//创建XSSFWorkbook对象(excel的文档对象)
|
|
|
|
|
XSSFWorkbook workbook = new XSSFWorkbook();
|
|
|
|
|
//建立新的sheet对象(excel的表单)
|
|
|
|
|
XSSFSheet sheet = workbook.createSheet("测量数据表");
|
|
|
|
|
|
|
|
|
|
XSSFCellStyle highCellStyle = workbook.createCellStyle();
|
|
|
|
|
highCellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
|
highCellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
|
XSSFFont highFont = workbook.createFont();
|
|
|
|
|
highFont.setColor(HSSFColor.RED.index);
|
|
|
|
|
highCellStyle.setFont(highFont);
|
|
|
|
|
|
|
|
|
|
XSSFCellStyle lowCellStyle = workbook.createCellStyle();
|
|
|
|
|
lowCellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
|
lowCellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
|
XSSFFont lowFont = workbook.createFont();
|
|
|
|
|
lowFont.setColor(HSSFColor.BLUE.index);
|
|
|
|
|
lowCellStyle.setFont(lowFont);
|
|
|
|
|
|
|
|
|
|
XSSFCellStyle normalCellStyle = workbook.createCellStyle();
|
|
|
|
|
normalCellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);
|
|
|
|
|
normalCellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);
|
|
|
|
|
XSSFFont normalFont = workbook.createFont();
|
|
|
|
|
normalFont.setColor(HSSFColor.BLACK.index);
|
|
|
|
|
normalCellStyle.setFont(normalFont);
|
|
|
|
|
|
|
|
|
|
//在sheet里创建第一行,参数为行索引(excel的行),可以是0~65535之间的任何一个
|
|
|
|
|
XSSFRow titleRow = sheet.createRow(0);
|
|
|
|
|
//创建单元格(excel的单元格,参数为列索引,可以是0~255之间的任何一个
|
|
|
|
|
XSSFCell titleCell = titleRow.createCell(0);
|
|
|
|
|
//设置单元格内容
|
|
|
|
|
titleCell.setCellValue("测量数据导出表");
|
|
|
|
|
titleCell.setCellStyle(normalCellStyle);
|
|
|
|
|
//合并单元格CellRangeAddress构造参数依次表示起始行,截至行,起始列, 截至列
|
|
|
|
|
sheet.addMergedRegion(new CellRangeAddress(0, 0, 0, dataListList.get(0).size() - 1));
|
|
|
|
|
int startRowNum = 1;
|
|
|
|
|
for (int i = 0; i < dataListList.size(); i++) {
|
|
|
|
|
List<String> dataList = dataListList.get(i);
|
|
|
|
|
if (dataList != null && dataList.size() > 0) {
|
|
|
|
|
XSSFRow row = sheet.createRow(i + startRowNum);
|
|
|
|
|
for (int j = 0; j < dataList.size(); j++) {
|
|
|
|
|
XSSFCell cell = row.createCell(j);
|
|
|
|
|
String data = dataList.get(j);
|
|
|
|
|
if (data.contains("##H")) {
|
|
|
|
|
cell.setCellValue(data.split("##")[0]);
|
|
|
|
|
cell.setCellStyle(highCellStyle);
|
|
|
|
|
} else if (data.contains("##L")) {
|
|
|
|
|
cell.setCellValue(data.split("##")[0]);
|
|
|
|
|
cell.setCellStyle(lowCellStyle);
|
|
|
|
|
} else {
|
|
|
|
|
cell.setCellValue(data);
|
|
|
|
|
cell.setCellStyle(normalCellStyle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
//输出Excel文件
|
|
|
|
|
String excelFileName = System.currentTimeMillis() + ".xlsx";
|
|
|
|
|
FileOutputStream output = new FileOutputStream("/Users/liuchengqian/Desktop/DaJiang/excel/" + excelFileName);
|
|
|
|
|
workbook.write(output);
|
|
|
|
|
output.flush();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-03-10 19:24:42 +08:00
|
|
|
|
}
|