|
@@ -224,6 +224,28 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.listAllOrders(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @PostMapping("/getBatchList")
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //框计算计算货权转移中出现的批次
|
|
|
+ @PostMapping("/getBatchListForAttorney")
|
|
|
+ public Map<String, Object> getBatchListForAttorney(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId,
|
|
|
+ String con){
|
|
|
+ return tmsshipFeign.getBatchListForAttorney(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId, con);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 展示船只信息
|
|
|
*
|
|
@@ -238,11 +260,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public Map<String, Object> getCapacityList(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer apiId) {
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getCapacityList(mapValue, pageNum, pageSize, apiId);
|
|
|
+ return tmsshipFeign.getCapacityList(mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -261,9 +284,7 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
String con) {
|
|
|
- if (mapValue == null) {
|
|
|
- mapValue = new HashMap<>();
|
|
|
- }
|
|
|
+
|
|
|
return tmsshipFeign.getUnLoadShipList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
|
|
@@ -478,9 +499,7 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
String con) {
|
|
|
- if (mapValue == null) {
|
|
|
- mapValue = new HashMap<>();
|
|
|
- }
|
|
|
+
|
|
|
return tmsshipFeign.getGroupList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,con);
|
|
|
}
|
|
|
@PostMapping("getMaterialList")
|
|
@@ -1800,4 +1819,22 @@ public class TMSController extends BaseRESTfulController {
|
|
|
){
|
|
|
return tmsTruckFeign.getAllReturnResult(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, orderType, con);
|
|
|
}
|
|
|
+ @ApiOperation(value="提货单 ")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "orderNumber", value = "运输订单号", required = false, dataType = "String"),
|
|
|
+ })
|
|
|
+ @PostMapping("/getBillOrder")
|
|
|
+ public Map<String, Object> getBillOrder(@RequestParam String orderNumber){
|
|
|
+ return tmsTruckFeign.getBillOrder(orderNumber);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="发货通知单 ")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "orderNumber", value = "运输订单号", required = false, dataType = "String"),
|
|
|
+ })
|
|
|
+ @PostMapping("/getDeliveryOrder")
|
|
|
+ public Map<String, Object> getDeliveryOrder(@RequestParam String orderNumber){
|
|
|
+ return tmsTruckFeign.getDeliveryOrder(orderNumber);
|
|
|
+
|
|
|
+ }
|
|
|
}
|