|
@@ -51,12 +51,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getBargeOperationList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getBargeOperationList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.getBargeOperationList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("selectBargeOperation/{bargeOperationId}")
|
|
@@ -115,12 +114,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getLoadShipList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.getLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getLoadShip/{resultId}")
|
|
@@ -212,12 +210,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> listAllOrders(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.listAllOrders(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.listAllOrders(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -225,9 +222,8 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getBatchList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con){
|
|
|
- return tmsshipFeign.getBatchList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId, con);
|
|
|
+ Integer apiId){
|
|
|
+ return tmsshipFeign.getBatchList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -256,12 +252,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getCapacityList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getCapacityList(mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.getCapacityList(mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -277,10 +272,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getUnLoadShipList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
|
|
|
- return tmsshipFeign.getUnLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.getUnLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getUnloadShip/{resultId}")
|
|
@@ -327,10 +321,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getWaterQualityResultList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
|
|
|
- return tmsshipFeign.getWaterQualityResultList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.getWaterQualityResultList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getWaterQuality/{resultId}")
|
|
@@ -425,12 +418,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- String con,
|
|
|
String status) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getShipMentInstructionsList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con,status);
|
|
|
+ return tmsshipFeign.getShipMentInstructionsList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status);
|
|
|
}
|
|
|
|
|
|
@PostMapping("getShipmentInstructions/{instructionsId}")
|
|
@@ -477,12 +469,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getAmsshipCargoTranferResultList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId,
|
|
|
- String con) {
|
|
|
+ Integer apiId) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getAmsshipCargoTranferResultList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
+ return tmsshipFeign.getAmsshipCargoTranferResultList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
|
|
|
}
|
|
|
@PostMapping("getGroupList")
|
|
|
@ApiOperation(value = "展示收货人列表")
|
|
@@ -566,12 +557,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- String con,
|
|
|
Integer status) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getAmsshipDeliveryAttroneyList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con,status);
|
|
|
+ return tmsshipFeign.getAmsshipDeliveryAttroneyList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status);
|
|
|
}
|
|
|
|
|
|
@PostMapping("insertshipDeliveryAttorney")
|
|
@@ -619,12 +609,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- String con,
|
|
|
Integer status) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getshipDeliveryNoticeList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con,status);
|
|
|
+ return tmsshipFeign.getshipDeliveryNoticeList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status);
|
|
|
}
|
|
|
|
|
|
@PostMapping("insertDeliveryNotice")
|
|
@@ -1242,11 +1231,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer orderType,
|
|
|
- String con,
|
|
|
+ String startTime,
|
|
|
+ String endTime,
|
|
|
String userId,
|
|
|
String userIds
|
|
|
){
|
|
|
- return tmsTruckFeign.getAllEnFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con,userId,userIds);
|
|
|
+ return tmsTruckFeign.getAllEnFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, startTime,endTime,userId,userIds);
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value="通过运输订单id查询物资信息")
|
|
@@ -1437,9 +1427,11 @@ public class TMSController extends BaseRESTfulController {
|
|
|
String con,
|
|
|
String carrierSsoId,
|
|
|
String userId,
|
|
|
- String userIds
|
|
|
+ String userIds,
|
|
|
+ String startTime,
|
|
|
+ String endTime
|
|
|
){
|
|
|
- return tmsTruckFeign.getLeaveFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con, carrierSsoId,userId,userIds);
|
|
|
+ return tmsTruckFeign.getLeaveFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, orderType, con, carrierSsoId,userId,userIds,startTime,endTime);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -2008,8 +2000,48 @@ public class TMSController extends BaseRESTfulController {
|
|
|
String endTime) {
|
|
|
return tmsTruckFeign.getPurInwardReport(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, startTime, endTime);
|
|
|
}
|
|
|
+ @ApiOperation(value="查询内转运输实绩")
|
|
|
+ @PostMapping("/getInwardReport")
|
|
|
+ public Map<String, Object> getInwardReport(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String startTime,
|
|
|
+ String endTime) {
|
|
|
+ return tmsTruckFeign.getInwardReport(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, startTime, endTime);
|
|
|
+ }
|
|
|
@PostMapping("/sendMeasureCommission")
|
|
|
public Map<String, Object> sendMeasureCommission(@RequestBody(required = false) Map<String, Object> map){
|
|
|
return tmsTruckFeign.sendMeasureCommission(map);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value="发送留皮计量委托(neizhuan)")
|
|
|
+ @GetMapping("/sendLiuPiMeasureCommission")
|
|
|
+ public Map<String, Object> sendLiuPiMeasureCommission(String capacityNumber){
|
|
|
+ return tmsTruckFeign.sendLiuPiMeasureCommission(capacityNumber);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="对内转车辆装货点进行统计")
|
|
|
+ @PostMapping("/getLoading")
|
|
|
+ public Map<String, Object> getLoading(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String startTime,
|
|
|
+ String endTime
|
|
|
+ ){
|
|
|
+ return tmsTruckFeign.getLoading(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="对内转车辆装卸货点进行统计")
|
|
|
+ @PostMapping("/getUnLoading")
|
|
|
+ public Map<String, Object> getUnLoading(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String startTime,
|
|
|
+ String endTime
|
|
|
+ ){
|
|
|
+ return tmsTruckFeign.getUnLoading(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, startTime, endTime);
|
|
|
+ }
|
|
|
}
|