|
@@ -1483,6 +1483,27 @@ public class TMSController extends BaseRESTfulController {
|
|
return resTfulResult;
|
|
return resTfulResult;
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ @ApiOperation(value="查询所有的包月作业实绩")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
|
|
+ @ApiImplicitParam(name = "apiId(还没有)", 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("/getTmstruckMonthResult")
|
|
|
|
+ public Map<String,Object> getTmstruckMonthResult(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
|
+ Integer apiId,
|
|
|
|
+ Integer pageNum,
|
|
|
|
+ Integer pageSize
|
|
|
|
+ ){
|
|
|
|
+ return tmsTruckFeign.getTmstruckMonthResult(mapValue,apiId, pageNum, pageSize);
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ *通过运输订单判断下一步是否需要计量,更新汽车衡到计量实绩中
|
|
|
|
+ */
|
|
|
|
+ @PostMapping("/updateTruckCalculate/{orderId}")
|
|
|
|
+ public Map<String,Object> updateTruckCalculate(@PathVariable("orderId") Integer orderId){
|
|
|
|
+ return tmsTruckFeign.isNextNeedJl(orderId);
|
|
|
|
+ }
|
|
}
|
|
}
|