Merge remote-tracking branch 'origin/master'

zpl 4 years ago
commit ed3d2f510a

@ -28,6 +28,6 @@ public interface AbnormalBillMapper extends BaseMapper<AbnormalBill> {
*/ */
AbnormalBillDto findAllByAbnormalNoDevice(@Param("abnormalBill")AbnormalBill abnormalBill, @Param("language")String language); AbnormalBillDto findAllByAbnormalNoDevice(@Param("abnormalBill")AbnormalBill abnormalBill, @Param("language")String language);
List<AbnormalBill> findCountBySfc(@Param("site")String site,@Param("type")String type,@Param("sfc")String sfc,@Param("status")List<String> status);
} }

@ -186,12 +186,32 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
public String anomalyReportDevice(AbnormalBill abnormalBill,AbnormalBillDispose abnormalBillDispose) { public String anomalyReportDevice(AbnormalBill abnormalBill,AbnormalBillDispose abnormalBillDispose) {
String message = this.generateAbnormalBill(abnormalBill, abnormalBillDispose, null, null); String message = this.generateAbnormalBill(abnormalBill, abnormalBillDispose, null, null);
// List<NcCode> ncByNG = ncCodeService.findNcByNG(abnormalBill.getMessageType(), abnormalBill.getNcCode()); // List<NcCode> ncByNG = ncCodeService.findNcByNG(abnormalBill.getMessageType(), abnormalBill.getNcCode());
// if(ncByNG == null || ncByNG.size() <= 0){ // if(ncByNG == null || ncByNG.size() <= 0){
// throw BusinessException.build("该消息类型下没有该不良代码"); // throw BusinessException.build("该消息类型下没有该不良代码");
// } // }
this.saveOrUpdate(abnormalBill); this.saveOrUpdate(abnormalBill);
abnormalBillDisposeService.saveOrUpdate(abnormalBillDispose); abnormalBillDisposeService.saveOrUpdate(abnormalBillDispose);
if(!StringUtil.isBlank(abnormalBill.getSfc()) ){
List<String> status = new ArrayList<>();
status.add(Constants.PROGRAM_CONFIRM);
status.add(Constants.CANCEL);
status.add(Constants.SHUT_DOWN);
List<AbnormalBill> abnormalBillList = abnormalBillMapper.findCountBySfc(abnormalBill.getSite(), abnormalBill.getType(), abnormalBill.getSfc(), status);
if(abnormalBillList.size() > 1 && !"更新成功".equals(message)){
throw BusinessException.build("设备异常有未处理完成的sfc");
}else if(abnormalBillList.size() > 1 ){
throw BusinessException.build("设备异常有未处理完成的sfc");
}
}
return message; return message;
} }
@ -485,9 +505,21 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
* *
* *
*/ */
if(StringUtil.isBlank(abnormalBill.getSfc()) && !Constants.ABNORMAL_RESRCE.equals(abnormalBill.getType())){ if(StringUtil.isBlank(abnormalBill.getSfc()) && !Constants.ABNORMAL_RESRCE.equals(abnormalBill.getType())) {
throw BusinessException.build("产品条码不能为空"); throw BusinessException.build("产品条码不能为空");
} }
// }else if(!StringUtil.isBlank(abnormalBill.getSfc()) && Constants.ABNORMAL_RESRCE.equals(abnormalBill.getType())){
// AbnormalBill abnormalBill2 = new AbnormalBill();
// abnormalBill2.setType(abnormalBill.getType());
// abnormalBill2.setSfc(abnormalBill.getSfc());
// abnormalBill2.setStatus(Constants.NEW);
// List<AbnormalBill> abnormalBills = this.selectList(abnormalBill2);
// if(abnormalBills.size() > 0 && !"更新成功".equals(message)){
// throw BusinessException.build("设备异常有未处理完成的sfc");
// }else if(abnormalBills.size() > 1){
// throw BusinessException.build("设备异常有未处理完成的sfc");
// }
// }
// if(StringUtil.isBlank(abnormalBill.getResrce())){ // if(StringUtil.isBlank(abnormalBill.getResrce())){
// throw BusinessException.build("设备编号不能为空"); // throw BusinessException.build("设备编号不能为空");
// } // }

@ -1,11 +1,11 @@
package com.foreverwin.mesnac.anomaly.service.impl; package com.foreverwin.mesnac.anomaly.service.impl;
import cn.hutool.core.util.StrUtil;
import cn.hutool.extra.ftp.Ftp; import cn.hutool.extra.ftp.Ftp;
import com.foreverwin.mesnac.anomaly.service.FileUploadedService; import com.foreverwin.mesnac.anomaly.service.FileUploadedService;
import com.foreverwin.mesnac.common.util.StringUtil; import com.foreverwin.mesnac.common.util.StringUtil;
import com.foreverwin.modular.core.exception.BusinessException; import com.foreverwin.modular.core.exception.BusinessException;
import com.foreverwin.modular.core.util.CommonMethods; import com.foreverwin.modular.core.util.CommonMethods;
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply; import org.apache.commons.net.ftp.FTPReply;
@ -164,7 +164,7 @@ public class FileUploadedServiceImpl implements FileUploadedService {
} }
} }
public void uploadImage(MultipartFile fileItem, HttpServletRequest request){ public void uploadImage(FileItem fileItem, HttpServletRequest request){
String site = request.getParameter("site"); String site = request.getParameter("site");
String taskNo = request.getParameter("taskNo"); String taskNo = request.getParameter("taskNo");
String fileType = request.getParameter("fileType"); String fileType = request.getParameter("fileType");
@ -175,7 +175,7 @@ public class FileUploadedServiceImpl implements FileUploadedService {
//上传附件目录:年/月/日 //上传附件目录:年/月/日
String path = LocalDate.now().format(DateTimeFormatter.ofPattern("yyyy/MM/dd"))+"/"+taskNo; String path = LocalDate.now().format(DateTimeFormatter.ofPattern("yyyy/MM/dd"))+"/"+taskNo;
//上传附件名称 //上传附件名称
String fileName = fileItem.getOriginalFilename(); String fileName = fileItem.getName();
try { try {
Ftp ftp = new Ftp(host, port,username,password); Ftp ftp = new Ftp(host, port,username,password);

@ -885,4 +885,27 @@
</if> </if>
</where> </where>
</select> </select>
<select id="findCountBySfc" resultMap="BaseResultMap">
SELECT <include refid="Base_Column_List"></include>
FROM Z_ABNORMAL_BILL
<where>
<if test="site != null and site != ''">
SITE = #{site}
</if>
<if test="status != null and status.size() != 0">
AND STATUS NOT IN
<foreach collection="status" item="item" index="index" separator="," open="(" close=")">
#{item}
</foreach>
</if>
<if test="type != null and type != ''">
AND "TYPE" = #{type}
</if>
<if test="sfc != null and sfc != ''">
AND SFC = #{sfc}
</if>
</where>
</select>
</mapper> </mapper>

@ -125,7 +125,8 @@ public enum HandleEnum {
/**检验任务明细**/ /**检验任务明细**/
INSPECTION_TASK_DETAIL("InspectionTaskDetailBO:","InspectionTaskDetailBO:{0},{1}"), INSPECTION_TASK_DETAIL("InspectionTaskDetailBO:","InspectionTaskDetailBO:{0},{1}"),
/**自报任务**/
SELF_REPORT("SelfReportBO:","SelfReportBO:{0},{1}"),
/**上料**/ /**上料**/
LOAD_INVENTORY("LoadInventoryBO:","LoadInventoryBO:{0},{1}"), LOAD_INVENTORY("LoadInventoryBO:","LoadInventoryBO:{0},{1}"),

@ -0,0 +1,40 @@
package com.foreverwin.mesnac.quality.dto;
public class SelfReportRequest {
private String type;
private String shopOrder;
private String ncGroup;
private String ncCode;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getShopOrder() {
return shopOrder;
}
public void setShopOrder(String shopOrder) {
this.shopOrder = shopOrder;
}
public String getNcGroup() {
return ncGroup;
}
public void setNcGroup(String ncGroup) {
this.ncGroup = ncGroup;
}
public String getNcCode() {
return ncCode;
}
public void setNcCode(String ncCode) {
this.ncCode = ncCode;
}
}

@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model; import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDate; import java.time.LocalDate;
import java.time.LocalDateTime; import java.time.LocalDateTime;
@ -79,7 +80,7 @@ public class SelfReport extends Model<SelfReport> {
* *
*/ */
@TableField("NC_QTY") @TableField("NC_QTY")
private Double ncQty; private BigDecimal ncQty;
/** /**
* *
*/ */
@ -237,11 +238,11 @@ public class SelfReport extends Model<SelfReport> {
this.ncCode = ncCode; this.ncCode = ncCode;
} }
public Double getNcQty() { public BigDecimal getNcQty() {
return ncQty; return ncQty;
} }
public void setNcQty(Double ncQty) { public void setNcQty(BigDecimal ncQty) {
this.ncQty = ncQty; this.ncQty = ncQty;
} }

@ -3,8 +3,16 @@ package com.foreverwin.mesnac.quality.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.foreverwin.mesnac.common.constant.Constants;
import com.foreverwin.mesnac.common.enums.HandleEnum;
import com.foreverwin.mesnac.common.service.AnomalyService;
import com.foreverwin.mesnac.common.service.CommonService;
import com.foreverwin.mesnac.common.util.StringUtil;
import com.foreverwin.mesnac.meapi.dto.SfcDto; import com.foreverwin.mesnac.meapi.dto.SfcDto;
import com.foreverwin.mesnac.production.mapper.SfcCrossMapper; import com.foreverwin.mesnac.production.mapper.SfcCrossMapper;
import com.foreverwin.mesnac.quality.dto.SelfReportRequest;
import com.foreverwin.mesnac.quality.mapper.SelfReportMapper; import com.foreverwin.mesnac.quality.mapper.SelfReportMapper;
import com.foreverwin.mesnac.quality.model.SelfReport; import com.foreverwin.mesnac.quality.model.SelfReport;
import com.foreverwin.mesnac.quality.service.SelfReportService; import com.foreverwin.mesnac.quality.service.SelfReportService;
@ -16,10 +24,13 @@ import org.springframework.context.i18n.LocaleContextHolder;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import java.math.BigDecimal;
import java.time.LocalDate; import java.time.LocalDate;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.UUID;
import java.util.stream.Collectors;
/** /**
* <p> * <p>
@ -38,6 +49,10 @@ public class SelfReportServiceImpl extends ServiceImpl<SelfReportMapper, SelfRep
private SelfReportMapper selfReportMapper; private SelfReportMapper selfReportMapper;
@Autowired @Autowired
private SfcCrossMapper sfcCorssMapper; private SfcCrossMapper sfcCorssMapper;
@Autowired
private AnomalyService anomalyService;
@Autowired
private CommonService commonService;
static final String STATE_NEW="NEW"; static final String STATE_NEW="NEW";
@ -66,15 +81,80 @@ public class SelfReportServiceImpl extends ServiceImpl<SelfReportMapper, SelfRep
@Override @Override
public void doAdd(Map<String, Object> map) { public void doAdd(Map<String, Object> map) {
String site = CommonMethods.getSite(); String site = CommonMethods.getSite();
String user = CommonMethods.getUser();
String sfc = (String)map.get("sfc"); String sfc = (String)map.get("sfc");
String resrce = (String)map.get("resrce"); String resrce = (String)map.get("resrce");
List list = (List)map.get("ncList"); String ncQty = (String)map.get("ncQty");
String comments = (String)map.get("comments");
String location=(String)map.get("location");
List<SelfReportRequest> list = (List<SelfReportRequest>)map.get("ncList");
ObjectMapper mapper = new ObjectMapper();
list = mapper.convertValue(list, new TypeReference<List<SelfReportRequest>>() {});
SfcDto sfcDto = new SfcDto(); SfcDto sfcDto = new SfcDto();
sfcDto.setSfc(sfc); sfcDto.setSfc(sfc);
sfcDto.setResrce(resrce); sfcDto.setResrce(resrce);
Map<String, Object> sfcMapper = sfcCorssMapper.querySfcData(site, LocaleContextHolder.getLocale().getLanguage(), sfcDto); Map<String, Object> sfcData = sfcCorssMapper.querySfcData(site, LocaleContextHolder.getLocale().getLanguage(), sfcDto);
String operationStep = (String)sfcData.get("OPERATION_STEP");
String shopOrder = (String)sfcData.get("SHOP_ORDER");
String item = (String)sfcData.get("ITEM");
List<SelfReportRequest> resrceAbnormalList = list.stream().filter(selfReportRequest -> selfReportRequest.getType().equals(Constants.ABNORMAL_RESRCE)).collect(Collectors.toList());
if (resrceAbnormalList.size()>0){
StringBuilder stringBuilder = new StringBuilder();
for (int i=0;i<resrceAbnormalList.size();i++){
stringBuilder.append(resrceAbnormalList.get(i).getNcCode());
if (i!=resrceAbnormalList.size()-1){
stringBuilder.append(",");
}
}
anomalyService.createAnomalyTask(Constants.ABNORMAL_RESRCE,resrce,shopOrder,sfc,stringBuilder.toString(),location,ncQty,comments);
}
List<SelfReportRequest> otherAbnormalList = list.stream().filter(selfReportRequest -> selfReportRequest.getType().equals(Constants.ABNORMAL_OTHER)).collect(Collectors.toList());
if (otherAbnormalList.size()>0){
anomalyService.createAnomalyTask(Constants.ABNORMAL_RESRCE,resrce,shopOrder,sfc,"",location,ncQty,comments);
}
QueryWrapper<SelfReport> queryWrapper=new QueryWrapper<>();
queryWrapper.eq(SelfReport.SFC,sfc);
queryWrapper.eq(SelfReport.OP_STEP,operationStep);
queryWrapper.eq(SelfReport.STATE,Constants.NEW);
List<SelfReport> selfReports = list(queryWrapper);
if (selfReports.size()>0){
throw new BaseException("存在未处理的自报任务");
}
List<SelfReportRequest> selfReportList = list.stream().filter(selfReportRequest -> selfReportRequest.getType().equals("Z")).collect(Collectors.toList());
if (selfReportList.size()>0){
StringBuilder stringBuilder = new StringBuilder();
for (int i=0;i<selfReportList.size();i++){
stringBuilder.append(selfReportList.get(i).getNcCode());
if (i!=selfReportList.size()-1){
stringBuilder.append(",");
}
}
String taskNo = UUID.randomUUID().toString();
String handle = HandleEnum.SELF_REPORT.getHandle(site, taskNo);
SelfReport selfReport = new SelfReport();
selfReport.setDescription("自报");
selfReport.setHandle(handle);
selfReport.setSite(site);
selfReport.setTaskNo(taskNo);
String workShopBo = commonService.getWorkShopBo(HandleEnum.RESOURCE.getHandle(site, resrce));
selfReport.setWorkCenter(StringUtil.trimHandle(workShopBo));
selfReport.setShopOrder(shopOrder);
selfReport.setItem(item);
selfReport.setOpStep(operationStep);
selfReport.setResrce(resrce);
selfReport.setSfc(sfc);
selfReport.setNcCode(stringBuilder.toString());
selfReport.setNcQty(new BigDecimal(ncQty));
selfReport.setLocation(location);
selfReport.setState(Constants.NEW);
selfReport.setRemark(comments);
selfReport.setCreateUser(user);
selfReport.setCreatedDateTime(LocalDateTime.now());
selfReport.setModifyUser(user);
selfReport.setModifiedDateTime(LocalDateTime.now());
save(selfReport);
}
} }
@Override @Override

Loading…
Cancel
Save