|
@@ -33,7 +33,7 @@ public class WMSController extends BaseRESTfulController {
|
|
|
@PostMapping("getWmsInboundResult")
|
|
|
@ApiOperation(value = "展示入库实绩信息")
|
|
|
@ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "apiId", value = "90", required = false, dataType = "BigDecimal"),
|
|
|
+ @ApiImplicitParam(name = "apiId", value = "371", required = false, dataType = "BigDecimal"),
|
|
|
})
|
|
|
public Map<String, Object> getWmsInboundResult(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer apiId,
|
|
@@ -805,11 +805,21 @@ public class WMSController extends BaseRESTfulController {
|
|
|
@RequestBody(required = false) List<Map<String,Object>> mps){
|
|
|
return wmsFeign.createRestackMakeResult(keeperId,beforeLevel,afterStackingId,afterWarehouseId,afterBeforeStackingId,resultRemark,mps);
|
|
|
}
|
|
|
+ //PDA根据仓库id查找倒垛单
|
|
|
+ @GetMapping(value = "selectRestackByWarehouseIds")
|
|
|
+ public Map<String, Object> selectRestackByWarehouseIds(@RequestParam("warehouseid") String warehouseid) {
|
|
|
+ return wmsFeign.selectRestackByWarehouseIds(warehouseid);
|
|
|
+ }
|
|
|
//修改实时库存,针对倒垛
|
|
|
@PostMapping(value = "/updateWmspGridMaterialForRestack")
|
|
|
public Map<String,Object> updateWmspGridMaterialForRestack(@RequestBody Map<String,Object> mapValue) {
|
|
|
return wmsFeign.updateWmspGridMaterialForRestack(mapValue);
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ // 根据倒垛单ID获得物资类型
|
|
|
+ @GetMapping(value = "getRestackMakeTypeResult")
|
|
|
+ public Map<String, Object> getRestackMakeTypeResult(@RequestParam("restackMake") String restackMake,
|
|
|
+ @RequestParam("context")String context){
|
|
|
+ return wmsFeign.getRestackMakeTypeResult(restackMake,context);
|
|
|
+ }
|
|
|
}
|