|
@@ -1285,6 +1285,24 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsTruckFeign.updateLoadingIdAndLoadSq(map);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value="根据运输订单号查询装/卸点、卸货物资、装机备注信息:后台管理 ")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "map", value = "", required = false, dataType = "Map"),
|
|
|
+ })
|
|
|
+ @PostMapping("/selectLoadingIdRemark")
|
|
|
+ public Map<String, Object> selectLoadingIdRemark(@RequestBody(required=false) Map<String, Object> map){
|
|
|
+ return tmsTruckFeign.selectLoadingIdRemark(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="根据运输订单号修改装/卸点、卸货物资、装机备注等:后台管理 ")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "map", value = "", required = false, dataType = "Map"),
|
|
|
+ })
|
|
|
+ @PostMapping("/updateLoadingIdRemark")
|
|
|
+ public Map<String, Object> updateLoadingIdRemark(@RequestBody(required=false) Map<String, Object> map){
|
|
|
+ return tmsTruckFeign.updateLoadingIdRemark(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "查询所有装车实绩")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
|
|
@@ -1587,13 +1605,20 @@ public class TMSController extends BaseRESTfulController {
|
|
|
|
|
|
//****************************************TmstruckMeasureCommissionController*******************************
|
|
|
|
|
|
- @ApiOperation(value = "查询计量委托 ")
|
|
|
+ @ApiOperation(value = "查询计量委托,apiId=521")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "resultId", value = "装车作业实绩ID", required = false, dataType = "Integer"),
|
|
|
})
|
|
|
- @PostMapping("/getAllMeasureCommission/{type}")
|
|
|
- public Map<String, Object> getAllMeasureCommission(@PathVariable("type") Integer type) {
|
|
|
- return tmsTruckFeign.getAllMeasureCommission(type);
|
|
|
+ @PostMapping("/getAllMeasureCommission")
|
|
|
+ public Map<String, Object> getAllMeasureCommission(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String con) {
|
|
|
+ if(mapValue==null){
|
|
|
+ mapValue=new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsTruckFeign.getAllMeasureCommission(mapValue, apiId, pageNum, pageSize, con);
|
|
|
}
|
|
|
|
|
|
//****************************************TmstruckQualityResultController*******************************
|