|
|
@ -1553,67 +1553,71 @@ public class AbnormalBillServiceImpl extends ServiceImpl<AbnormalBillMapper, Abn
|
|
|
|
if(StringUtil.isBlank(site)){
|
|
|
|
if(StringUtil.isBlank(site)){
|
|
|
|
site = CommonMethods.getSite();
|
|
|
|
site = CommonMethods.getSite();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
List<ScrapDto> scrapDtoBySfc = null;
|
|
|
|
//根据用户提报上来的sfc和异常单查找主SFC
|
|
|
|
//根据用户提报上来的sfc和异常单查找主SFC
|
|
|
|
Map<String, String> map = this.jgProductionIsScrap(abnormalNo, site, sfc);
|
|
|
|
if (StringUtils.notBlank(abnormalNo)||StringUtils.notBlank(sfc)){
|
|
|
|
String mainSfc = null;
|
|
|
|
Map<String, String> map = this.jgProductionIsScrap(abnormalNo, site, sfc);
|
|
|
|
String abnormalBo = null;
|
|
|
|
String mainSfc = null;
|
|
|
|
if(map != null){
|
|
|
|
String abnormalBo = null;
|
|
|
|
mainSfc = map.get("SFC");
|
|
|
|
if(map != null){
|
|
|
|
abnormalBo = map.get("HANDLE");
|
|
|
|
mainSfc = map.get("SFC");
|
|
|
|
}
|
|
|
|
abnormalBo = map.get("HANDLE");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
List<SplitSfc> splitSfcs = null;
|
|
|
|
List<SplitSfc> splitSfcs = null;
|
|
|
|
SplitSfc splitSfc = new SplitSfc();
|
|
|
|
SplitSfc splitSfc = new SplitSfc();
|
|
|
|
splitSfc.setSite(site);
|
|
|
|
splitSfc.setSite(site);
|
|
|
|
|
|
|
|
|
|
|
|
//判断能否找到该主sfc。
|
|
|
|
//判断能否找到该主sfc。
|
|
|
|
if(StringUtil.isBlank(mainSfc)){
|
|
|
|
if(StringUtil.isBlank(mainSfc)){
|
|
|
|
//判断该用户提报上来的sfc是否为空
|
|
|
|
//判断该用户提报上来的sfc是否为空
|
|
|
|
if(StringUtil.isBlank(sfc)) {
|
|
|
|
if(StringUtil.isBlank(sfc)) {
|
|
|
|
throw new BaseException("该异常单下没有报废的产品条码");
|
|
|
|
throw new BaseException("该异常单下没有报废的产品条码");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//如果不为空,则判断根据这个sfc能从Z_SPLIT_SFC表中查找到主SFC吗,然后在判断主SFC是否已经报废
|
|
|
|
//如果不为空,则判断根据这个sfc能从Z_SPLIT_SFC表中查找到主SFC吗,然后在判断主SFC是否已经报废
|
|
|
|
splitSfc.setSplitSfc(sfc);
|
|
|
|
splitSfc.setSplitSfc(sfc);
|
|
|
|
splitSfcs = splitSfcService.selectList(splitSfc);
|
|
|
|
splitSfcs = splitSfcService.selectList(splitSfc);
|
|
|
|
if(splitSfcs.size()>0){
|
|
|
|
if(splitSfcs.size()>0){
|
|
|
|
Map<String, String> map1 = this.jgProductionIsScrap(abnormalNo, site, splitSfcs.get(0).getSfc());
|
|
|
|
Map<String, String> map1 = this.jgProductionIsScrap(abnormalNo, site, splitSfcs.get(0).getSfc());
|
|
|
|
mainSfc = map1.get("SFC");
|
|
|
|
mainSfc = map1.get("SFC");
|
|
|
|
abnormalBo = map1.get("HANDLE");
|
|
|
|
abnormalBo = map1.get("HANDLE");
|
|
|
|
}else{
|
|
|
|
}else{
|
|
|
|
if(!StringUtil.isBlank(sfc) && !StringUtil.isBlank(abnormalNo)){
|
|
|
|
if(!StringUtil.isBlank(sfc) && !StringUtil.isBlank(abnormalNo)){
|
|
|
|
throw new BaseException("该异常单下的产品条码不是报废");
|
|
|
|
throw new BaseException("该异常单下的产品条码不是报废");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
throw new BaseException("该产品条码的异常方案不是报废");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new BaseException("该产品条码的异常方案不是报废");
|
|
|
|
}else if(StringUtil.isBlank(sfc)){
|
|
|
|
|
|
|
|
//根据异常单找到了主sfc,并且sfc参数为空,找到异常单主sfc下拆分的次sfc
|
|
|
|
|
|
|
|
splitSfc.setSfc(mainSfc);
|
|
|
|
|
|
|
|
splitSfcs = splitSfcService.selectList(splitSfc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}else if(StringUtil.isBlank(sfc)){
|
|
|
|
scrapDtoBySfc = abnormalBillMapper.findScrapDtoBySfc(site, mainSfc,splitSfcs);
|
|
|
|
//根据异常单找到了主sfc,并且sfc参数为空,找到异常单主sfc下拆分的次sfc
|
|
|
|
|
|
|
|
splitSfc.setSfc(mainSfc);
|
|
|
|
//如果用户提报上来的sfc不为空,并且不是主sfc,则把主sfc从scrapDtoBySfc去掉
|
|
|
|
splitSfcs = splitSfcService.selectList(splitSfc);
|
|
|
|
if(!StringUtil.isBlank(sfc) && !sfc.equals(mainSfc)){
|
|
|
|
}
|
|
|
|
for (int i = 0; i < scrapDtoBySfc.size(); i++) {
|
|
|
|
List<ScrapDto> scrapDtoBySfc = abnormalBillMapper.findScrapDtoBySfc(site, mainSfc,splitSfcs);
|
|
|
|
if(scrapDtoBySfc.get(i).getSfc().equals(mainSfc)){
|
|
|
|
|
|
|
|
scrapDtoBySfc.remove(scrapDtoBySfc.get(i));
|
|
|
|
//如果用户提报上来的sfc不为空,并且不是主sfc,则把主sfc从scrapDtoBySfc去掉
|
|
|
|
continue;
|
|
|
|
if(!StringUtil.isBlank(sfc) && !sfc.equals(mainSfc)){
|
|
|
|
}
|
|
|
|
for (int i = 0; i < scrapDtoBySfc.size(); i++) {
|
|
|
|
|
|
|
|
if(scrapDtoBySfc.get(i).getSfc().equals(mainSfc)){
|
|
|
|
|
|
|
|
scrapDtoBySfc.remove(scrapDtoBySfc.get(i));
|
|
|
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(scrapDtoBySfc.size() <= 0){
|
|
|
|
if(scrapDtoBySfc.size() <= 0){
|
|
|
|
throw new BaseException("该产品条码的异常方案不是报废");
|
|
|
|
throw new BaseException("该产品条码的异常方案不是报废");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//查找到责任人,放到表里
|
|
|
|
|
|
|
|
AbnormalBillDispose abnormalBillDispose = new AbnormalBillDispose();
|
|
|
|
//查找到责任人,放到表里
|
|
|
|
abnormalBillDispose.setAbnormalBillBo(abnormalBo);
|
|
|
|
AbnormalBillDispose abnormalBillDispose = new AbnormalBillDispose();
|
|
|
|
List<AbnormalBillDispose> abnormalBillDisposes = abnormalBillDisposeService.selectList(abnormalBillDispose);
|
|
|
|
abnormalBillDispose.setAbnormalBillBo(abnormalBo);
|
|
|
|
if(abnormalBillDisposes.size() > 0){
|
|
|
|
List<AbnormalBillDispose> abnormalBillDisposes = abnormalBillDisposeService.selectList(abnormalBillDispose);
|
|
|
|
for (int i = 0; i < scrapDtoBySfc.size(); i++) {
|
|
|
|
if(abnormalBillDisposes.size() > 0){
|
|
|
|
scrapDtoBySfc.get(i).setDutyUser(abnormalBillDisposes.get(0).getPrincipalUser());
|
|
|
|
for (int i = 0; i < scrapDtoBySfc.size(); i++) {
|
|
|
|
}
|
|
|
|
scrapDtoBySfc.get(i).setDutyUser(abnormalBillDisposes.get(0).getPrincipalUser());
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
scrapDtoBySfc = abnormalBillMapper.findScrapDtoList(site);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return scrapDtoBySfc;
|
|
|
|
return scrapDtoBySfc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|