|
@@ -119,7 +119,7 @@ public Map<String,Object> insertOffsiteLibraryInbound(@RequestBody(required = fa
|
|
Map<String,Object> resTfulResult = wmsFeign.insertOffsiteLibraryInbound(map);
|
|
Map<String,Object> resTfulResult = wmsFeign.insertOffsiteLibraryInbound(map);
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
-//展示实时库存数据
|
|
|
|
|
|
+//展示在途库存数据
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParam(name = "apiId", value = "153", required = false, dataType = "BigDecimal"),
|
|
@ApiImplicitParam(name = "apiId", value = "153", required = false, dataType = "BigDecimal"),
|
|
})
|
|
})
|
|
@@ -170,19 +170,19 @@ public Map<String,Object> insertOutBoundResult(@RequestBody(required = false) Ma
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
//下拉框获取层次
|
|
//下拉框获取层次
|
|
- @PostMapping("/selectGardationNumber")
|
|
|
|
|
|
+ @GetMapping("/selectGardationNumber")
|
|
public Map<String,Object> selectGardationNumber(Integer warehouseid, Integer stackingId){
|
|
public Map<String,Object> selectGardationNumber(Integer warehouseid, Integer stackingId){
|
|
Map<String,Object> resTfulResult = wmsFeign.selectGardationNumber(warehouseid,stackingId);
|
|
Map<String,Object> resTfulResult = wmsFeign.selectGardationNumber(warehouseid,stackingId);
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
//下拉框获取仓库名称
|
|
//下拉框获取仓库名称
|
|
- @PostMapping("/selectWarehouse")
|
|
|
|
|
|
+ @GetMapping("/selectWarehouse")
|
|
public Map<String,Object> selectWarehouse(){
|
|
public Map<String,Object> selectWarehouse(){
|
|
Map<String,Object> resTfulResult = wmsFeign.selectWarehouse();
|
|
Map<String,Object> resTfulResult = wmsFeign.selectWarehouse();
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
//下拉框获取仓库名称
|
|
//下拉框获取仓库名称
|
|
- @PostMapping("/selectStackingId")
|
|
|
|
|
|
+ @GetMapping("/selectStackingId")
|
|
public Map<String,Object> selectStackingId(Integer warehouseid){
|
|
public Map<String,Object> selectStackingId(Integer warehouseid){
|
|
Map<String,Object> resTfulResult = wmsFeign.selectStackingId(warehouseid);
|
|
Map<String,Object> resTfulResult = wmsFeign.selectStackingId(warehouseid);
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
@@ -543,5 +543,14 @@ public Map<String,Object> insertOutBoundResult(@RequestBody(required = false) Ma
|
|
public Map<String,Object> insertIvboundScanResult(@RequestBody(required = false)Map<String,Object>map){
|
|
public Map<String,Object> insertIvboundScanResult(@RequestBody(required = false)Map<String,Object>map){
|
|
return wmsFeign.insertIvboundScanResult(map);
|
|
return wmsFeign.insertIvboundScanResult(map);
|
|
}
|
|
}
|
|
|
|
+/**
|
|
|
|
+ * 根据实绩id查找物资唯一编码是否已经稽核完成
|
|
|
|
+ */
|
|
|
|
+@PostMapping("/selectMaterialSteelIdByReusltId")
|
|
|
|
+@Transactional
|
|
|
|
+public Map<String,Object> selectMaterialSteelIdByReusltId(@RequestBody(required = false)Map<String,Object>map){
|
|
|
|
+ return wmsFeign.selectMaterialSteelIdByReusltId(map);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|