|
@@ -970,6 +970,16 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsTrainFeign.getUnloadingPointName();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ //下拉框
|
|
|
+ @ApiOperation(value = "获取货权转移图片")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ })
|
|
|
+ @PostMapping(value = "/downLoadDeilveryNotice")
|
|
|
+ public Map<String, Object> downLoadDeilveryNotice(@RequestParam Integer noticeId) {
|
|
|
+ return tmsshipFeign.downLoadDeilveryNotice(noticeId);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "获取卸车路径名称")
|
|
|
@ApiImplicitParams({
|
|
|
})
|
|
@@ -1926,9 +1936,10 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
String startTime,
|
|
|
String endTime,
|
|
|
- Integer orderType
|
|
|
+ Integer orderType,
|
|
|
+ String con
|
|
|
){
|
|
|
- return tmsTruckFeign.getRLFLReport(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime, orderType);
|
|
|
+ return tmsTruckFeign.getRLFLReport(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime, orderType,con);
|
|
|
}
|
|
|
@ApiOperation(value="查询销售统计报表")
|
|
|
@PostMapping("/getAllSaleReport")
|
|
@@ -2218,8 +2229,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
String startTime,
|
|
|
String endTime,
|
|
|
- String con){
|
|
|
- return tmsTruckFeign.getCapacityByDefend(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize,startTime,endTime,con);
|
|
|
+ String con,
|
|
|
+ String yes){
|
|
|
+ return tmsTruckFeign.getCapacityByDefend(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize,startTime,endTime,con,yes);
|
|
|
}
|
|
|
|
|
|
@ApiOperation("厂外抵达作业")
|