|
@@ -557,17 +557,18 @@ public class TMSController extends BaseRESTfulController {
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
Integer apiId,
|
|
|
- Integer status) {
|
|
|
+ Integer status,
|
|
|
+ String con) {
|
|
|
if (mapValue == null) {
|
|
|
mapValue = new HashMap<>();
|
|
|
}
|
|
|
- return tmsshipFeign.getAmsshipDeliveryAttroneyList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status);
|
|
|
+ return tmsshipFeign.getAmsshipDeliveryAttroneyList(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId,status,con);
|
|
|
}
|
|
|
|
|
|
@PostMapping("insertshipDeliveryAttorney")
|
|
|
@ApiOperation(value = "新增提货委托")
|
|
|
- Map<String, Object> insertshipDeliveryAttorney(@RequestBody Map<String, Object> amsshipDeliveryAttorney) {
|
|
|
- return tmsshipFeign.insertshipDeliveryAttorney(amsshipDeliveryAttorney);
|
|
|
+ Map<String, Object> insertshipDeliveryAttorney(@RequestBody Map<String, Object> map) {
|
|
|
+ return tmsshipFeign.insertshipDeliveryAttorney(map);
|
|
|
}
|
|
|
|
|
|
@PostMapping("deleteByAttorneyId/{attorneyId}")
|
|
@@ -646,9 +647,9 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.sendDeliveryNotice(noticeId);
|
|
|
}
|
|
|
//船舶动态表
|
|
|
- @PostMapping("/selectAll")
|
|
|
- Map<String, Object> selectAll(){
|
|
|
- return tmsshipFeign.selectAll();
|
|
|
+ @PostMapping("/selectAllShipDynamaics")
|
|
|
+ Map<String, Object> selectAllShipDynamaics(){
|
|
|
+ return tmsshipFeign.selectAllShipDynamaics();
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -2102,6 +2103,7 @@ public class TMSController extends BaseRESTfulController {
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
@ApiOperation(value="查询零星中转统计报表")
|
|
|
@PostMapping("/getLXInwardReport")
|
|
|
public Map<String, Object> getLXInwardReport(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
@@ -2142,4 +2144,23 @@ public class TMSController extends BaseRESTfulController {
|
|
|
public String getReceiptPhoto(@RequestParam String orderNumber){
|
|
|
return tmsTruckFeign.getReceiptPhoto(orderNumber);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation("厂外收货作业")
|
|
|
+ @PostMapping("/getReceivingResult")
|
|
|
+ public Map<String,Object> getReceivingResult(@RequestBody(required = false) Map<String,Object> mapValue,
|
|
|
+ Integer apiId,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ String con,
|
|
|
+ String startTime,
|
|
|
+ String endTime){
|
|
|
+ return tmsTruckFeign.getReceivingResult(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize,con,startTime,endTime);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation("展示收货的照片")
|
|
|
+ @PostMapping("/getReceivingPhoto")
|
|
|
+ public Map<String,Object> getReceivingPhoto(@RequestParam String orderNumber){
|
|
|
+ return tmsTruckFeign.getReceivingPhoto(orderNumber);
|
|
|
+ }
|
|
|
}
|