|
@@ -28,8 +28,8 @@ public class QMSController extends BaseRESTfulController {
|
|
@ApiImplicitParam(name = "mapValue", value = "", required = false, dataType = "Map"),
|
|
@ApiImplicitParam(name = "mapValue", value = "", required = false, dataType = "Map"),
|
|
})
|
|
})
|
|
@PostMapping("/addQueueResult")
|
|
@PostMapping("/addQueueResult")
|
|
- public Map<String, Object> addQueueResult(@RequestBody(required = false) Map<String, Object> map){
|
|
|
|
- return qmsTruckFeign.addQueueResult(map);
|
|
|
|
|
|
+ public Map<String, Object> addQueueResult(String vno){
|
|
|
|
+ return qmsTruckFeign.addQueueResult(vno);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -38,8 +38,8 @@ public class QMSController extends BaseRESTfulController {
|
|
@ApiImplicitParam(name = "orderNumber", value = "运输订单号", required = false, dataType = "String"),
|
|
@ApiImplicitParam(name = "orderNumber", value = "运输订单号", required = false, dataType = "String"),
|
|
})
|
|
})
|
|
@PostMapping("/addQueueList")
|
|
@PostMapping("/addQueueList")
|
|
- public Map<String, Object> addQueueList(@RequestBody(required = false) Map<String, Object> mapValue){
|
|
|
|
- return qmsTruckFeign.addQueueList(mapValue);
|
|
|
|
|
|
+ public Map<String, Object> addQueueList(String resultId){
|
|
|
|
+ return qmsTruckFeign.addQueueList(resultId);
|
|
}
|
|
}
|
|
|
|
|
|
@ApiOperation(value="指令接收")
|
|
@ApiOperation(value="指令接收")
|
|
@@ -94,10 +94,11 @@ public class QMSController extends BaseRESTfulController {
|
|
Integer apiId,
|
|
Integer apiId,
|
|
Integer pageNum,
|
|
Integer pageNum,
|
|
Integer pageSize,
|
|
Integer pageSize,
|
|
- Integer gridId,
|
|
|
|
- String con
|
|
|
|
|
|
+ Integer locationId,
|
|
|
|
+ String capacityNumber,
|
|
|
|
+ Integer isSpelling
|
|
){
|
|
){
|
|
- return qmsTruckFeign.getQueueListByQueueUp(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, gridId,con);
|
|
|
|
|
|
+ return qmsTruckFeign.getQueueListByQueueUp(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, locationId,capacityNumber, isSpelling);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -381,4 +382,22 @@ public class QMSController extends BaseRESTfulController {
|
|
String con
|
|
String con
|
|
){return qmsTruckFeign.getWarehouseQueueEndMes(mapValue == null ? new HashMap<>(): mapValue, apiId, pageNum, pageSize,con);
|
|
){return qmsTruckFeign.getWarehouseQueueEndMes(mapValue == null ? new HashMap<>(): mapValue, apiId, pageNum, pageSize,con);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value="钢材科允许进厂")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "网格Id", required = false, dataType = "Map"),
|
|
|
|
+ })
|
|
|
|
+ @PostMapping("/allowEnFactory")
|
|
|
|
+ public Map<String, Object> allowEnFactory(@RequestBody(required=false) Map<String, Object> mapValue){
|
|
|
|
+ return qmsTruckFeign.allowEnFactory(mapValue);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value="APP端司机查看排队信息")
|
|
|
|
+ @GetMapping("getQueueResultByTotalId")
|
|
|
|
+ public Map<String, Object> getQueueResultByTotalId(String resultTotalId){
|
|
|
|
+ return qmsTruckFeign.getQueueResultByTotalId(resultTotalId);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|