Browse Source

盘点+其他功能

dev
常熟吴彦祖 2 weeks ago
parent
commit
bfae6c8717
  1. 7
      .gitignore
  2. 5
      src/main/java/com/gaotao/modules/autoWareHourceHaian/service/impl/HaiAnPhysicalInventoryServiceImpl.java

7
.gitignore

@ -24,4 +24,9 @@ target
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
/build/ /build/
.gradle/
.gradle/
# 本地行尾与编辑器配置仅用于开发机,不参与版本提交 - rqrq
.gitattributes
.editorconfig
.vscode/

5
src/main/java/com/gaotao/modules/autoWareHourceHaian/service/impl/HaiAnPhysicalInventoryServiceImpl.java

@ -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栈板失败");
} }
} }

Loading…
Cancel
Save