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