|
|
|
@ -79,7 +79,7 @@ public class ProdBaseMachineInfoServiceImpl implements IProdBaseMachineInfoServi
|
|
|
|
|
.leftJoin(ProdBaseStationInfo.class, ProdBaseStationInfo::getMachineId, ProdBaseMachineInfo::getMachineId)
|
|
|
|
|
.leftJoin(ProdBaseProcessInfo.class, ProdBaseProcessInfo::getProcessId, ProdBaseStationInfo::getProcessId)
|
|
|
|
|
.eq(bo.getMachineId() != null, ProdBaseMachineInfo::getMachineId, bo.getMachineId())
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getMachineCode()), ProdBaseMachineInfo::getMachineCode, bo.getMachineCode())
|
|
|
|
|
.like(StringUtils.isNotBlank(bo.getMachineCode()), ProdBaseMachineInfo::getMachineCode, bo.getMachineCode())
|
|
|
|
|
.like(StringUtils.isNotBlank(bo.getMachineName()), ProdBaseMachineInfo::getMachineName, bo.getMachineName())
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getAssetNumber()), ProdBaseMachineInfo::getAssetNumber, bo.getAssetNumber())
|
|
|
|
|
.eq(StringUtils.isNotBlank(bo.getMachineLocation()), ProdBaseMachineInfo::getMachineLocation, bo.getMachineLocation())
|
|
|
|
@ -131,7 +131,7 @@ public class ProdBaseMachineInfoServiceImpl implements IProdBaseMachineInfoServi
|
|
|
|
|
ProdBaseMachineInfoBo query = new ProdBaseMachineInfoBo();
|
|
|
|
|
query.setMachineCode(entity.getMachineCode());
|
|
|
|
|
MPJLambdaWrapper<ProdBaseMachineInfo> lqw = buildQueryWrapper(query);
|
|
|
|
|
ProdBaseMachineInfo baseProdBaseMachineInfo = baseMapper.selectOne(lqw);
|
|
|
|
|
ProdBaseMachineInfo baseProdBaseMachineInfo = baseMapper.selectOne(lqw);
|
|
|
|
|
if (baseProdBaseMachineInfo != null
|
|
|
|
|
&& !baseProdBaseMachineInfo.getMachineId().equals(entity.getMachineId())) {
|
|
|
|
|
throw new ServiceException("编码已存在");
|
|
|
|
|