no message
parent
f0f11b8634
commit
c0f56cc502
|
|
@ -182,6 +182,7 @@ public class NioF3AppServiceImpl implements NioF3AppService {
|
||||||
if (item != null) {
|
if (item != null) {
|
||||||
dollyList.add(item.getSpecs());
|
dollyList.add(item.getSpecs());
|
||||||
} else {
|
} else {
|
||||||
|
log.info("未匹配的物料{}", materialCode);
|
||||||
dollyList.add("00000");
|
dollyList.add("00000");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -240,8 +241,8 @@ public class NioF3AppServiceImpl implements NioF3AppService {
|
||||||
|
|
||||||
//验证起点
|
//验证起点
|
||||||
Point point = pointService.validatePoint(bindLargeZy.getSrcPositionCode());
|
Point point = pointService.validatePoint(bindLargeZy.getSrcPositionCode());
|
||||||
if (!BaseStatus.DJ_ZY_DFQ.equals(point.getType())) {
|
if (!BaseStatus.DJ_DFQ.equals(point.getType())) {
|
||||||
throw new BadRequestException(bindLargeZy.getSrcPositionCode() + "不属于大件专用待发区点位");
|
throw new BadRequestException(bindLargeZy.getSrcPositionCode() + "不属于大件待发区点位");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -284,8 +285,8 @@ public class NioF3AppServiceImpl implements NioF3AppService {
|
||||||
|
|
||||||
//验证起点
|
//验证起点
|
||||||
Point point = pointService.validatePoint(bindLarge.getSrcPositionCode());
|
Point point = pointService.validatePoint(bindLarge.getSrcPositionCode());
|
||||||
if (!BaseStatus.DJ_DOLLY_DFQ.equals(point.getType())) {
|
if (!BaseStatus.DJ_DFQ.equals(point.getType())) {
|
||||||
throw new BadRequestException(bindLarge.getSrcPositionCode() + "不属于大件Dolly待发区点位");
|
throw new BadRequestException(bindLarge.getSrcPositionCode() + "不属于大件待发区点位");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,15 +38,9 @@ public interface BaseStatus {
|
||||||
public static String XJ_DFQ = "XJ_DFQ";
|
public static String XJ_DFQ = "XJ_DFQ";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 点位类型-大件Dolly待发区
|
* 点位类型-大件待发区
|
||||||
*/
|
*/
|
||||||
public static String DJ_DOLLY_DFQ = "DJ_DOLLY_DFQ";
|
public static String DJ_DFQ = "DJ_DFQ";
|
||||||
|
|
||||||
/**
|
|
||||||
* 点位类型-大件专用待发区
|
|
||||||
*/
|
|
||||||
public static String DJ_ZY_DFQ = "DJ_ZY_DFQ";
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 输送线
|
* 输送线
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue