|
|
|
@ -28,20 +28,21 @@ public class RelCodeDetailService extends ServiceImpl<RelCodeDetailMapper, RelCo
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 扫码获取关联
|
|
|
|
|
*
|
|
|
|
|
* @param relCodeDetailRequest
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public RelCodeDetailResponse scanCode(RelCodeDetailRequest relCodeDetailRequest) {
|
|
|
|
|
String curCode = relCodeDetailRequest.getCurCode();
|
|
|
|
|
String parentCode = relCodeDetailRequest.getParentCode();
|
|
|
|
|
if(StrUtil.isBlank(curCode)){
|
|
|
|
|
if (StrUtil.isBlank(curCode)) {
|
|
|
|
|
throw new JsonException("追溯码不能为空");
|
|
|
|
|
}
|
|
|
|
|
if (curCode.endsWith("\u001D")) {
|
|
|
|
|
curCode = curCode.replace("\u001D", "");
|
|
|
|
|
}
|
|
|
|
|
UdiEntity curCodeUdi = FilterUdiUtils.getUdi(curCode);
|
|
|
|
|
if (curCodeUdi == null){
|
|
|
|
|
if (curCodeUdi == null) {
|
|
|
|
|
throw new JsonException("无效条码!");
|
|
|
|
|
}
|
|
|
|
|
RelCodeDetailResponse relCodeDetailResponse = new RelCodeDetailResponse();
|
|
|
|
@ -49,39 +50,39 @@ public class RelCodeDetailService extends ServiceImpl<RelCodeDetailMapper, RelCo
|
|
|
|
|
.eq(BasicProductsEntity::getNameCode, curCodeUdi.getUdi())
|
|
|
|
|
.last("limit 1");
|
|
|
|
|
BasicProductsEntity cur = basicProductsDao.selectOne(cw);
|
|
|
|
|
if(cur == null){
|
|
|
|
|
if (cur == null) {
|
|
|
|
|
throw new JsonException("产品信息不存在");
|
|
|
|
|
}
|
|
|
|
|
//是否已存在数据库中
|
|
|
|
|
List<RelCodeDetail> list = this.baseMapper.selectList(new LambdaQueryWrapper<RelCodeDetail>().eq(RelCodeDetail::getCurCode, curCode));
|
|
|
|
|
if (CollUtil.isNotEmpty(list)){
|
|
|
|
|
if (CollUtil.isNotEmpty(list)) {
|
|
|
|
|
throw new JsonException("当前条码关联关系已被维护!");
|
|
|
|
|
}
|
|
|
|
|
if(StrUtil.isNotBlank(parentCode)){
|
|
|
|
|
if (StrUtil.isNotBlank(parentCode)) {
|
|
|
|
|
if (parentCode.endsWith("\u001D")) {
|
|
|
|
|
parentCode = parentCode.replace("\u001D", "");
|
|
|
|
|
}
|
|
|
|
|
if(StrUtil.equals(curCode,parentCode)){
|
|
|
|
|
if (StrUtil.equals(curCode, parentCode)) {
|
|
|
|
|
throw new JsonException("录入条码重复!");
|
|
|
|
|
}
|
|
|
|
|
UdiEntity parentCodeUdi = FilterUdiUtils.getUdi(parentCode);
|
|
|
|
|
if (parentCodeUdi == null){
|
|
|
|
|
if (parentCodeUdi == null) {
|
|
|
|
|
throw new JsonException("无效父级条码!");
|
|
|
|
|
}
|
|
|
|
|
LambdaQueryWrapper<BasicProductsEntity> pw = new LambdaQueryWrapper<BasicProductsEntity>()
|
|
|
|
|
.eq(BasicProductsEntity::getNameCode, parentCodeUdi.getUdi())
|
|
|
|
|
.last("limit 1");
|
|
|
|
|
BasicProductsEntity parent = basicProductsDao.selectOne(pw);
|
|
|
|
|
if(parent == null){
|
|
|
|
|
if (parent == null) {
|
|
|
|
|
throw new JsonException("父级产品信息不存在");
|
|
|
|
|
}
|
|
|
|
|
if(!StrUtil.equals(parent.getUuid(),cur.getUuid())){
|
|
|
|
|
if (!StrUtil.equals(parent.getUuid(), cur.getUuid())) {
|
|
|
|
|
throw new JsonException("当前条码不是同一产品");
|
|
|
|
|
}
|
|
|
|
|
if(Integer.valueOf(parent.getPackLevel()) - Integer.valueOf(cur.getPackLevel()) != 1){
|
|
|
|
|
if (Integer.valueOf(parent.getPackLevel()) - Integer.valueOf(cur.getPackLevel()) != 1) {
|
|
|
|
|
throw new JsonException("当前条码不属于子条码");
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
} else {
|
|
|
|
|
parentCode = "0";
|
|
|
|
|
}
|
|
|
|
|
relCodeDetailResponse.setCurCode(curCode);
|
|
|
|
@ -99,6 +100,7 @@ public class RelCodeDetailService extends ServiceImpl<RelCodeDetailMapper, RelCo
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 明细列表
|
|
|
|
|
*
|
|
|
|
|
* @param relCodeDetailRequest
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
@ -113,4 +115,16 @@ public class RelCodeDetailService extends ServiceImpl<RelCodeDetailMapper, RelCo
|
|
|
|
|
return this.baseMapper.filterList(relCodeDetailRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public RelCodeDetailResponse findByCode(String code) {
|
|
|
|
|
RelCodeDetailRequest relCodeDetailRequest = new RelCodeDetailRequest();
|
|
|
|
|
relCodeDetailRequest.setCurCode(code);
|
|
|
|
|
List<RelCodeDetailResponse> relCodeDetailResponse = filterList(relCodeDetailRequest);
|
|
|
|
|
if (CollUtil.isNotEmpty(relCodeDetailResponse)) {
|
|
|
|
|
return relCodeDetailResponse.get(0);
|
|
|
|
|
} else {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|