Browse Source

feat(ifsInventory): add inventory query controller and endpoint

master
常熟吴彦祖 3 months ago
parent
commit
6815915a06
  1. 4
      src/main/java/com/gaotao/modules/api/service/impl/WcsApiServiceImpl.java
  2. 8
      src/main/java/com/gaotao/modules/automatedWarehouse/service/impl/AutoTaskServiceImpl.java

4
src/main/java/com/gaotao/modules/api/service/impl/WcsApiServiceImpl.java

@ -467,12 +467,12 @@ public class WcsApiServiceImpl implements WcsApiService {
Long logId = null; Long logId = null;
String url = wcsUrl+"warehouseAskStation";
String url = wcsApi+"agv/getAvailableInboundStation";
try { try {
// 记录接口调用日志 // 记录接口调用日志
String requestJson = JSONObject.toJSONString(request); String requestJson = JSONObject.toJSONString(request);
logId = interfaceCallLogService.logInterfaceCall( logId = interfaceCallLogService.logInterfaceCall(
"warehouseAskStation",
"getAvailableInboundStation",
"询问入库站点", "询问入库站点",
requestJson, requestJson,
"55", "55",

8
src/main/java/com/gaotao/modules/automatedWarehouse/service/impl/AutoTaskServiceImpl.java

@ -195,11 +195,11 @@ public class AutoTaskServiceImpl implements AutoTaskService {
null, null,
null, null,
null, null,
"PROCESSING",
"未执行"
);
"PROCESSING",
"未执行"
);
throw e; throw e;
}
}
} }
/** /**

Loading…
Cancel
Save