|
|
|
@ -3,8 +3,13 @@ import com.alibaba.fastjson.JSON;
|
|
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
|
import com.alibaba.fastjson.parser.Feature;
|
|
|
|
|
import com.baomidou.dynamic.datasource.annotation.DS;
|
|
|
|
|
import com.op.common.core.context.SecurityContextHolder;
|
|
|
|
|
import com.op.common.core.utils.DateUtils;
|
|
|
|
|
import com.op.common.core.utils.StringUtils;
|
|
|
|
|
import com.op.common.core.utils.uuid.IdUtils;
|
|
|
|
|
import com.op.common.core.web.domain.AjaxResult;
|
|
|
|
|
import com.op.mes.domain.MesInspectionReport;
|
|
|
|
|
import com.op.mes.domain.ProOrderWorkorder;
|
|
|
|
|
import com.op.mes.mapper.MesInspectionReportMapper;
|
|
|
|
|
import com.op.mes.service.IMesInspectionReportService;
|
|
|
|
|
import org.slf4j.Logger;
|
|
|
|
@ -26,35 +31,82 @@ public class MesInspectionReportServiceImpl implements IMesInspectionReportServi
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
public List selectSelfMutualInspectionList(MesInspectionReport mesInspectionReport) {
|
|
|
|
|
mesInspectionReport.setReportName("ConversionReport");
|
|
|
|
|
//mesInspectionReport.setReportName("ConversionReport");
|
|
|
|
|
List<MesInspectionReport> list = mesInspectionReportMapper.selectSelfMutualInspectionList(mesInspectionReport);
|
|
|
|
|
//1.查询左侧边 列 存入
|
|
|
|
|
String param = "self_mutual_inspection";
|
|
|
|
|
List<String> projectNames = mesInspectionReportMapper.selectProjectName(param);
|
|
|
|
|
List<String> timeArray = mesInspectionReportMapper.selectTimeArray(mesInspectionReport);
|
|
|
|
|
String param = "";
|
|
|
|
|
if(mesInspectionReport.getReportName().equals("ConversionReport")){
|
|
|
|
|
param = "self_mutual_inspection";
|
|
|
|
|
}else if(mesInspectionReport.getReportName().equals("ConversionReportLeft")){
|
|
|
|
|
param = "first_inspection_left";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MesInspectionReport buildDTO = new MesInspectionReport();
|
|
|
|
|
buildDTO.setCheckTimeS("");
|
|
|
|
|
buildDTO.setCheckTimeE("");
|
|
|
|
|
|
|
|
|
|
List<MesInspectionReport> projectNames = mesInspectionReportMapper.selectProjectName(param);
|
|
|
|
|
List<MesInspectionReport> timeArray = mesInspectionReportMapper.selectTimeArray(mesInspectionReport);
|
|
|
|
|
List<Object> listDTO = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
for(String projectName : projectNames){
|
|
|
|
|
Map<String,String> dynamicTime = new LinkedHashMap<>();
|
|
|
|
|
dynamicTime.put("开始-结束",projectName);
|
|
|
|
|
for(MesInspectionReport project : projectNames){
|
|
|
|
|
Map<String,MesInspectionReport> dynamicTime = new LinkedHashMap<>();
|
|
|
|
|
MesInspectionReport dto = new MesInspectionReport();
|
|
|
|
|
dto.setData(project.getProjectName());
|
|
|
|
|
dto.setType("projectName");
|
|
|
|
|
dto.setProjectName(project.getProjectName());//项目名
|
|
|
|
|
dto.setProjectCode(project.getProjectCode());//项目编码
|
|
|
|
|
dynamicTime.put("开始-结束",dto);
|
|
|
|
|
|
|
|
|
|
if(CollectionUtils.isEmpty(timeArray)){
|
|
|
|
|
dynamicTime.put("", "");
|
|
|
|
|
dynamicTime.put(" ", "");
|
|
|
|
|
dynamicTime.put(" ", "");
|
|
|
|
|
dynamicTime.put("", new MesInspectionReport());
|
|
|
|
|
dynamicTime.put(" ", new MesInspectionReport());
|
|
|
|
|
dynamicTime.put(" ", new MesInspectionReport());
|
|
|
|
|
}else{
|
|
|
|
|
for(String time : timeArray){
|
|
|
|
|
for(MesInspectionReport time : timeArray){
|
|
|
|
|
List<MesInspectionReport> result = list.stream()
|
|
|
|
|
.filter(MesInspectionReport -> MesInspectionReport.getTimeArray().equals(time)) // 条件1:符合开始时间结束时间
|
|
|
|
|
.filter(MesInspectionReport-> MesInspectionReport.getInfoName().equals(projectName)) // 条件2:符合当前项目名
|
|
|
|
|
.filter(MesInspectionReport -> MesInspectionReport.getTimeArray().equals(time.getTimeArray())) // 条件1:符合开始时间结束时间
|
|
|
|
|
.filter(MesInspectionReport-> MesInspectionReport.getInfoName().equals(project.getProjectName())) // 条件2:符合当前项目名
|
|
|
|
|
.collect(Collectors.toList()); // 收集结果
|
|
|
|
|
|
|
|
|
|
if(!CollectionUtils.isEmpty(result)){
|
|
|
|
|
if(StringUtils.isNotBlank(result.get(0).getCheckResult())){
|
|
|
|
|
dynamicTime.put(time, result.get(0).getCheckResult());
|
|
|
|
|
if(project.getProjectName().equals("日期码") || project.getProjectName().equals("生产批号")){
|
|
|
|
|
result.get(0).setType("dataCode");
|
|
|
|
|
}else if(project.getProjectName().equals("灌装量/净含量/喷药量")){
|
|
|
|
|
result.get(0).setType("sprayAmount");
|
|
|
|
|
}else{
|
|
|
|
|
result.get(0).setType("rightWrong");
|
|
|
|
|
}
|
|
|
|
|
result.get(0).setData(result.get(0).getCheckResult());
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), result.get(0));
|
|
|
|
|
}else{
|
|
|
|
|
dynamicTime.put(time, "");
|
|
|
|
|
MesInspectionReport result0 = new MesInspectionReport();
|
|
|
|
|
if(project.getProjectName().equals("日期码")|| project.getProjectName().equals("生产批号")){
|
|
|
|
|
result0.setType("dataCode");
|
|
|
|
|
}else if(project.getProjectName().equals("灌装量/净含量/喷药量")){
|
|
|
|
|
result0.setType("sprayAmount");
|
|
|
|
|
}else{
|
|
|
|
|
result0.setType("rightWrong");
|
|
|
|
|
}
|
|
|
|
|
result0.setCheckTimeS(time.getCheckTimeS());
|
|
|
|
|
result0.setCheckTimeE(time.getCheckTimeE());
|
|
|
|
|
result0.setTableLine(time.getTableLine());
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), result0);
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
dynamicTime.put(time, "");
|
|
|
|
|
MesInspectionReport result0 = new MesInspectionReport();
|
|
|
|
|
if(project.getProjectName().equals("日期码")|| project.getProjectName().equals("生产批号")){
|
|
|
|
|
result0.setType("dataCode");
|
|
|
|
|
}else if(project.getProjectName().equals("灌装量/净含量/喷药量")){
|
|
|
|
|
result0.setType("sprayAmount");
|
|
|
|
|
}else{
|
|
|
|
|
result0.setType("rightWrong");
|
|
|
|
|
}
|
|
|
|
|
result0.setCheckTimeS(time.getCheckTimeS());
|
|
|
|
|
result0.setCheckTimeE(time.getCheckTimeE());
|
|
|
|
|
result0.setTableLine(time.getTableLine());
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), result0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -65,17 +117,14 @@ public class MesInspectionReportServiceImpl implements IMesInspectionReportServi
|
|
|
|
|
if(timeArray.size() < 3){
|
|
|
|
|
for(int i = 0 ; i < 3-(timeArray.size()) ; i++){
|
|
|
|
|
if(i == 0){
|
|
|
|
|
dynamicTime.put(string1, "");
|
|
|
|
|
dynamicTime.put(string1,new MesInspectionReport());
|
|
|
|
|
}else if(i == 1){
|
|
|
|
|
dynamicTime.put(string2, "");
|
|
|
|
|
dynamicTime.put(string2,new MesInspectionReport());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
String s = JSON.toJSONString(dynamicTime);
|
|
|
|
|
// Object object = JSON.parseObject(s, Object.class);
|
|
|
|
|
// LinkedHashMap<String, Object> linkedMap = JSON.parseObject(s, LinkedHashMap.class);
|
|
|
|
|
JSONObject object = JSONObject.parseObject(s, Feature.OrderedField);
|
|
|
|
|
log.info("动态添加属性: = {}",object);
|
|
|
|
|
listDTO.add(object);
|
|
|
|
@ -84,11 +133,88 @@ public class MesInspectionReportServiceImpl implements IMesInspectionReportServi
|
|
|
|
|
return listDTO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
//修改表头部和表尾部
|
|
|
|
|
public AjaxResult updateTable(MesInspectionReport mesInspectionReport) {
|
|
|
|
|
mesInspectionReport.setUpdateBy(SecurityContextHolder.getUserName());
|
|
|
|
|
mesInspectionReport.setUpdateTime(DateUtils.getNowDate());
|
|
|
|
|
//更新表头和表尾 也就是数据库的主表内容
|
|
|
|
|
mesInspectionReport.setCreateBy(StringUtils.isBlank(mesInspectionReport.getCreateBy())?
|
|
|
|
|
SecurityContextHolder.getUserName() : mesInspectionReport.getCreateBy());
|
|
|
|
|
mesInspectionReportMapper.updateHeaderFooter(mesInspectionReport);
|
|
|
|
|
|
|
|
|
|
//需要新增的
|
|
|
|
|
List<MesInspectionReport> addList = new ArrayList<>();
|
|
|
|
|
//需要修改的
|
|
|
|
|
List<MesInspectionReport> updateList = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
ArrayList<LinkedHashMap<String, LinkedHashMap<String, Object>>> tableData = mesInspectionReport.getTableData();
|
|
|
|
|
if (tableData!= null) {
|
|
|
|
|
for (LinkedHashMap<String, LinkedHashMap<String, Object>> item : tableData) {
|
|
|
|
|
//提取出来开始结束那一行数据的 项目名字
|
|
|
|
|
String projectName = (String) item.get("开始-结束").get("projectName");
|
|
|
|
|
String projectCode = (String) item.get("开始-结束").get("projectCode");
|
|
|
|
|
|
|
|
|
|
for (Map.Entry<String, LinkedHashMap<String, Object>> entry : item.entrySet()) {
|
|
|
|
|
if(!entry.getKey().equals("开始-结束")){
|
|
|
|
|
LinkedHashMap<String, Object> innerMap = entry.getValue();
|
|
|
|
|
String dataValue = (String) innerMap.get("data");
|
|
|
|
|
String idValue = (String) innerMap.get("id");
|
|
|
|
|
String checkTimeS = (String) innerMap.get("checkTimeS");
|
|
|
|
|
String checkTimeE = (String) innerMap.get("checkTimeE");
|
|
|
|
|
Integer tableLine = (Integer) innerMap.get("tableLine"); //实际上是列的意思
|
|
|
|
|
|
|
|
|
|
//如果是新的需要插入的值 ,那么说明没有id
|
|
|
|
|
if(StringUtils.isBlank(idValue) && StringUtils.isNotBlank(dataValue)){
|
|
|
|
|
MesInspectionReport addDto = new MesInspectionReport();
|
|
|
|
|
addDto.setId(IdUtils.fastSimpleUUID());//自动生成id
|
|
|
|
|
addDto.setBelongTo(mesInspectionReport.getId());//主表id
|
|
|
|
|
addDto.setInfoCode(projectCode);
|
|
|
|
|
addDto.setInfoName(projectName);
|
|
|
|
|
addDto.setCreateTime(DateUtils.getNowDate());
|
|
|
|
|
addDto.setCreateBy(SecurityContextHolder.getUserName());
|
|
|
|
|
addDto.setCheckResult(dataValue);
|
|
|
|
|
addDto.setCheckTimeS(checkTimeS);
|
|
|
|
|
addDto.setCheckTimeE(StringUtils.isBlank(checkTimeE)? "" : checkTimeE);
|
|
|
|
|
addDto.setTableLine(tableLine);
|
|
|
|
|
addDto.setDelFlag("0");
|
|
|
|
|
addList.add(addDto);
|
|
|
|
|
}else if(StringUtils.isNotBlank(idValue) && StringUtils.isNotBlank(dataValue)){
|
|
|
|
|
MesInspectionReport updateDto = new MesInspectionReport();
|
|
|
|
|
updateDto.setId(idValue);
|
|
|
|
|
updateDto.setUpdateBy(SecurityContextHolder.getUserName());
|
|
|
|
|
updateDto.setUpdateTime(DateUtils.getNowDate());
|
|
|
|
|
updateDto.setCheckResult(dataValue);
|
|
|
|
|
updateDto.setCheckTimeS(checkTimeS);
|
|
|
|
|
updateDto.setCheckTimeE(StringUtils.isBlank(checkTimeE)? "" : checkTimeE);
|
|
|
|
|
updateList.add(updateDto);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//更新表的主体部分 也就是数据库的子表
|
|
|
|
|
if(updateList.size() > 0 ){
|
|
|
|
|
mesInspectionReportMapper.updateBatch(updateList);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(addList.size() >0){
|
|
|
|
|
mesInspectionReportMapper.addBatch(addList);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return AjaxResult.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
public MesInspectionReport selfMutualInspectionData(MesInspectionReport mesInspectionReport) {
|
|
|
|
|
//'ConversionReport'
|
|
|
|
|
MesInspectionReport data = mesInspectionReportMapper.selectSelfMutualInspectionData(mesInspectionReport);
|
|
|
|
|
if(mesInspectionReport.getWorkorderId() != null){
|
|
|
|
|
List<ProOrderWorkorder> dateCodeList = mesInspectionReportMapper.getDataCodeList(mesInspectionReport);
|
|
|
|
|
data.setDateCodeList(dateCodeList);
|
|
|
|
|
}
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -99,6 +225,22 @@ public class MesInspectionReportServiceImpl implements IMesInspectionReportServi
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
public List<MesInspectionReport> getProductList(MesInspectionReport mesInspectionReport) {
|
|
|
|
|
List<MesInspectionReport> productList = mesInspectionReportMapper.getProductList(mesInspectionReport);
|
|
|
|
|
return productList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
|
public List<ProOrderWorkorder> getWorkList(MesInspectionReport mesInspectionReport) {
|
|
|
|
|
List<ProOrderWorkorder> workList = mesInspectionReportMapper.getWorkList(mesInspectionReport);
|
|
|
|
|
return workList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////左右报表都不需要
|
|
|
|
|
//首检左报表
|
|
|
|
|
@Override
|
|
|
|
|
@DS("#header.poolName")
|
|
|
|
@ -117,32 +259,32 @@ public class MesInspectionReportServiceImpl implements IMesInspectionReportServi
|
|
|
|
|
List<MesInspectionReport> list = mesInspectionReportMapper.selectSelfMutualInspectionList(mesInspectionReport);
|
|
|
|
|
//2..查询左侧边 列 存入
|
|
|
|
|
String param = "first_inspection_left";
|
|
|
|
|
List<String> projectNames = mesInspectionReportMapper.selectProjectName(param);
|
|
|
|
|
List<MesInspectionReport> projectNames = mesInspectionReportMapper.selectProjectName(param);
|
|
|
|
|
|
|
|
|
|
List<String> timeArray = mesInspectionReportMapper.selectTimeArray(mesInspectionReport);
|
|
|
|
|
List<MesInspectionReport> timeArray = mesInspectionReportMapper.selectTimeArray(mesInspectionReport);
|
|
|
|
|
List<Object> listDTO = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
for(String projectName : projectNames){
|
|
|
|
|
for(MesInspectionReport project : projectNames){
|
|
|
|
|
Map<String,String> dynamicTime = new LinkedHashMap<>();
|
|
|
|
|
dynamicTime.put("开始-结束",projectName);
|
|
|
|
|
dynamicTime.put("开始-结束",project.getProjectName());
|
|
|
|
|
if(CollectionUtils.isEmpty(timeArray)){
|
|
|
|
|
dynamicTime.put("", "");
|
|
|
|
|
dynamicTime.put(" ", "");
|
|
|
|
|
dynamicTime.put(" ", "");
|
|
|
|
|
}else{
|
|
|
|
|
for(String time : timeArray){
|
|
|
|
|
for(MesInspectionReport time : timeArray){
|
|
|
|
|
List<MesInspectionReport> result = list.stream()
|
|
|
|
|
.filter(MesInspectionReport -> MesInspectionReport.getTimeArray().equals(time)) // 条件1:符合开始时间结束时间
|
|
|
|
|
.filter(MesInspectionReport-> MesInspectionReport.getInfoName().equals(projectName)) // 条件2:符合当前项目名
|
|
|
|
|
.filter(MesInspectionReport -> MesInspectionReport.getTimeArray().equals(time.getTimeArray())) // 条件1:符合开始时间结束时间
|
|
|
|
|
.filter(MesInspectionReport-> MesInspectionReport.getInfoName().equals(project.getProjectName())) // 条件2:符合当前项目名
|
|
|
|
|
.collect(Collectors.toList()); // 收集结果
|
|
|
|
|
if(!CollectionUtils.isEmpty(result)){
|
|
|
|
|
if(StringUtils.isNotBlank(result.get(0).getCheckResult())){
|
|
|
|
|
dynamicTime.put(time, result.get(0).getCheckResult());
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), result.get(0).getCheckResult());
|
|
|
|
|
}else{
|
|
|
|
|
dynamicTime.put(time, "");
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), "");
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
dynamicTime.put(time, "");
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -176,32 +318,32 @@ public class MesInspectionReportServiceImpl implements IMesInspectionReportServi
|
|
|
|
|
List<MesInspectionReport> list = mesInspectionReportMapper.selectSelfMutualInspectionList(mesInspectionReport);
|
|
|
|
|
//2..查询左侧边 列 存入
|
|
|
|
|
String param = "first_inspection_right";
|
|
|
|
|
List<String> projectNames = mesInspectionReportMapper.selectProjectName(param);
|
|
|
|
|
List<MesInspectionReport> projectNames = mesInspectionReportMapper.selectProjectName(param);
|
|
|
|
|
|
|
|
|
|
List<String> timeArray = mesInspectionReportMapper.selectTimeArray(mesInspectionReport);
|
|
|
|
|
List<MesInspectionReport> timeArray = mesInspectionReportMapper.selectTimeArray(mesInspectionReport);
|
|
|
|
|
List<Object> listDTO = new ArrayList<>();
|
|
|
|
|
|
|
|
|
|
for(String projectName : projectNames){
|
|
|
|
|
for(MesInspectionReport project : projectNames){
|
|
|
|
|
Map<String,String> dynamicTime = new LinkedHashMap<>();
|
|
|
|
|
dynamicTime.put("开始-结束",projectName);
|
|
|
|
|
dynamicTime.put("开始-结束",project.getProjectName());
|
|
|
|
|
if(CollectionUtils.isEmpty(timeArray)){
|
|
|
|
|
dynamicTime.put("", "");
|
|
|
|
|
dynamicTime.put(" ", "");
|
|
|
|
|
dynamicTime.put(" ", "");
|
|
|
|
|
}else{
|
|
|
|
|
for(String time : timeArray){
|
|
|
|
|
for(MesInspectionReport time : timeArray){
|
|
|
|
|
List<MesInspectionReport> result = list.stream()
|
|
|
|
|
.filter(MesInspectionReport -> MesInspectionReport.getTimeArray().equals(time)) // 条件1:符合开始时间结束时间
|
|
|
|
|
.filter(MesInspectionReport-> MesInspectionReport.getInfoName().equals(projectName)) // 条件2:符合当前项目名
|
|
|
|
|
.filter(MesInspectionReport -> MesInspectionReport.getTimeArray().equals(time.getTimeArray())) // 条件1:符合开始时间结束时间
|
|
|
|
|
.filter(MesInspectionReport-> MesInspectionReport.getInfoName().equals(project.getProjectName())) // 条件2:符合当前项目名
|
|
|
|
|
.collect(Collectors.toList()); // 收集结果
|
|
|
|
|
if(!CollectionUtils.isEmpty(result)){
|
|
|
|
|
if(StringUtils.isNotBlank(result.get(0).getCheckResult())){
|
|
|
|
|
dynamicTime.put(time, result.get(0).getCheckResult());
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), result.get(0).getCheckResult());
|
|
|
|
|
}else{
|
|
|
|
|
dynamicTime.put(time, "");
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), "");
|
|
|
|
|
}
|
|
|
|
|
}else{
|
|
|
|
|
dynamicTime.put(time, "");
|
|
|
|
|
dynamicTime.put(time.getTimeArray(), "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|