|
@@ -1271,6 +1271,108 @@ public class TMSController extends BaseRESTfulController {
|
|
public RESTfulResult updateQualityResult(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
public RESTfulResult updateQualityResult(@RequestBody(required=false) Map<String,Object> mapValue){
|
|
return tmsTruckFeign.updateQualityResult(mapValue);
|
|
return tmsTruckFeign.updateQualityResult(mapValue);
|
|
}
|
|
}
|
|
|
|
+ //*********************************内转物流tms-train*********************************************************************
|
|
|
|
+ @PostMapping("/addTrainLoadResultForConverted")
|
|
|
|
+ @ApiOperation(value = "内转物流新增装车")
|
|
|
|
+ public Map<String,Object> addTrainLoadResultForConverted(Map<String,Object> tmstrainLoadingResult){
|
|
|
|
+ Map<String,Object> resTfulResult = tmsTrainFeign.addTrainLoadResultForConverted(tmstrainLoadingResult);
|
|
|
|
+ return resTfulResult;
|
|
|
|
+ }
|
|
|
|
+ @PostMapping("/selectLoadByResultId/{resultId}")
|
|
|
|
+ @ApiOperation(value = "内转物流通过主键查询车皮装车作业信息")
|
|
|
|
+ public Map<String,Object> selectLoadByResultId(@PathVariable("resultId") BigDecimal resultId){
|
|
|
|
+ Map<String,Object> resTfulResult = tmsTrainFeign.selectLoadByResultId(resultId);
|
|
|
|
+ return resTfulResult;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value="内转查询装车作业信息")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
|
+ @ApiImplicitParam(name = "apiId(203)", value = "动态表头", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
|
|
|
|
+ })
|
|
|
|
+ @PostMapping("/getTmstrainWagonLoadForConverted")
|
|
|
|
+ public Map<String,Object> getTmstrainWagonLoadForConverted(@RequestBody(required=false)
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize
|
|
|
|
+ ){
|
|
|
|
+ return tmsTrainFeign.getTmstrainWagonLoadForConverted(apiId, pageNum, pageSize);
|
|
|
|
+ }
|
|
|
|
+ @PostMapping("/addWagonApprove")
|
|
|
|
+ @ApiOperation(value = "内转物流新增装车")
|
|
|
|
+ public Map<String,Object> addWagonApprove(Map<String,Object> tmstrainLoadingResult){
|
|
|
|
+ Map<String,Object> resTfulResult = tmsTrainFeign.addWagonApprove(tmstrainLoadingResult);
|
|
|
|
+ return resTfulResult;
|
|
|
|
+ }
|
|
|
|
+ @ApiOperation(value="内转查询请车作业信息")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
|
+ @ApiImplicitParam(name = "apiId(199)", value = "动态表头", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
|
|
|
|
+ })
|
|
|
|
+ @PostMapping("/getAllWagonPleaseForConverted")
|
|
|
|
+ public Map<String,Object> getAllWagonPleaseForConverted(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize,
|
|
|
|
+ Integer status
|
|
|
|
+ ){
|
|
|
|
+ if(mapValue == null){
|
|
|
|
+ mapValue = new HashMap<>();
|
|
|
|
+ }
|
|
|
|
+ mapValue.put("status", status);
|
|
|
|
+ return tmsTrainFeign.getTmstrainWagonLoadForConverted(apiId, pageNum, pageSize);
|
|
|
|
+ }
|
|
|
|
+ @PostMapping("/getPleasePlanByResultId/{resultId}")
|
|
|
|
+ @ApiOperation(value = "内转物流通过主键查请车计划")
|
|
|
|
+ public Map<String,Object> getPleasePlanByResultId(@PathVariable("resultId") BigDecimal resultId){
|
|
|
|
+ Map<String,Object> resTfulResult = tmsTrainFeign.getPleasePlanByResultId(resultId);
|
|
|
|
+ return resTfulResult;
|
|
|
|
+ }
|
|
|
|
+ @PostMapping("/getApproveByResultId/{resultId}")
|
|
|
|
+ @ApiOperation(value = "内转物流通过主键查询车皮请车作业信息")
|
|
|
|
+ public Map<String,Object> getApproveByResultId(@PathVariable("resultId") BigDecimal resultId){
|
|
|
|
+ Map<String,Object> resTfulResult = tmsTrainFeign.getApproveByResultId(resultId);
|
|
|
|
+ return resTfulResult;
|
|
|
|
+ }
|
|
|
|
+ @ApiOperation(value="内转查询卸车作业信息")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
|
+ @ApiImplicitParam(name = "apiId(201)", value = "动态表头", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+ @PostMapping("/selectWagonUnLoadResultForConverted")
|
|
|
|
+ public Map<String,Object> selectWagonUnLoadResultForConverted(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize
|
|
|
|
+ ){
|
|
|
|
+ return tmsTrainFeign.selectWagonUnLoadResultForConverted(apiId, pageNum, pageSize);
|
|
|
|
+ }
|
|
|
|
+ @ApiOperation(value="内转查询火车卸货信息")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
|
+ @ApiImplicitParam(name = "apiId(202)", value = "动态表头", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
|
|
|
|
+ @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
|
|
|
|
+
|
|
|
|
+ })
|
|
|
|
+ @PostMapping("/selectTrainUnLoadResultForConverted")
|
|
|
|
+ public Map<String,Object> selectTrainUnLoadResultForConverted(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize
|
|
|
|
+ ){
|
|
|
|
+ return tmsTrainFeign.selectWagonUnLoadResultForConverted(apiId, pageNum, pageSize);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
|
|