|
|
@ -817,8 +817,9 @@ public class HaiAnPhysicalInventoryServiceImpl implements HaiAnPhysicalInventory |
|
|
pdaRequest.setPalletId(requestData.getPalletId().trim()); |
|
|
pdaRequest.setPalletId(requestData.getPalletId().trim()); |
|
|
// 调用海安立库服务执行固定出库口Call托盘,关键入参为site+palletId;失败会导致PDA无法拉板到盘点位 - rqrq |
|
|
// 调用海安立库服务执行固定出库口Call托盘,关键入参为site+palletId;失败会导致PDA无法拉板到盘点位 - rqrq |
|
|
HaiAnWcsActionResult actionResult = haiAnPdaAutoWarehouseService.callOutToOutboundPort(pdaRequest); |
|
|
HaiAnWcsActionResult actionResult = haiAnPdaAutoWarehouseService.callOutToOutboundPort(pdaRequest); |
|
|
if (actionResult == null || !Boolean.TRUE.equals(actionResult.getSuccess())) { |
|
|
|
|
|
throw new RuntimeException(actionResult == null ? "海安Call栈板失败" : actionResult.getMessage()); |
|
|
|
|
|
|
|
|
// 海安Call托盘接口失败场景通过抛异常返回,动作结果仅承载mockMode与message;因此仅校验返回体非空 - rqrq |
|
|
|
|
|
if (actionResult == null) { |
|
|
|
|
|
throw new RuntimeException("海安Call栈板失败"); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|