|
@@ -779,4 +779,22 @@ public class TMSController extends BaseRESTfulController {
|
|
|
RESTfulResult getDriverDayJobForApp(@RequestBody Map<String,Object> map,Integer apiId) {
|
|
RESTfulResult getDriverDayJobForApp(@RequestBody Map<String,Object> map,Integer apiId) {
|
|
|
return tmsFeign.getDriverDayJobForApp(map,apiId);
|
|
return tmsFeign.getDriverDayJobForApp(map,apiId);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "确认出库", notes = "确认出库")
|
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
|
+ @ApiImplicitParam(name = "map", value = "json格式具体参数", required = true, dataType = "Map<String,Object>")
|
|
|
|
|
+ })
|
|
|
|
|
+ @PostMapping(value = "/outBound")
|
|
|
|
|
+ public RESTfulResult outBound(@RequestBody Map<String, Object> map) {
|
|
|
|
|
+ return tmsFeign.outBound(map);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "撤销出库", notes = "撤销出库")
|
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
|
+ @ApiImplicitParam(name = "map", value = "json格式具体参数", required = true, dataType = "Map<String,Object>")
|
|
|
|
|
+ })
|
|
|
|
|
+ @PostMapping(value = "/revokeOutBound")
|
|
|
|
|
+ public RESTfulResult revokeOutBound(@RequestBody Map<String, Object> map) {
|
|
|
|
|
+ return tmsFeign.revokeOutBound(map);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|