|
@@ -12,6 +12,7 @@ import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartRequest;
|
|
import org.springframework.web.multipart.MultipartRequest;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
|
|
+import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
|
|
@@ -389,7 +390,9 @@ public interface TmsTruckFeign {
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
@RequestParam("startTime") String startTime,
|
|
@RequestParam("startTime") String startTime,
|
|
@RequestParam("endTime") String endTime,
|
|
@RequestParam("endTime") String endTime,
|
|
- @RequestParam("carrierSsoId") String carrierSsoId
|
|
|
|
|
|
+ @RequestParam("carrierSsoId") String carrierSsoId,
|
|
|
|
+ @RequestParam("orderType") Integer orderType,
|
|
|
|
+ @RequestParam("shipperId") Integer shipperId
|
|
);
|
|
);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/statisticalReport/getAllSaleReportTotal")
|
|
@PostMapping("api/v1/truckTms/statisticalReport/getAllSaleReportTotal")
|
|
@@ -544,7 +547,8 @@ public interface TmsTruckFeign {
|
|
|
|
|
|
@PostMapping("/api/v1/truckTms/tmstruckreceiptresults/getReceivingPhoto")
|
|
@PostMapping("/api/v1/truckTms/tmstruckreceiptresults/getReceivingPhoto")
|
|
Map<String,Object> getReceivingPhoto(@RequestParam String orderNumber);
|
|
Map<String,Object> getReceivingPhoto(@RequestParam String orderNumber);
|
|
-
|
|
|
|
|
|
+ @PostMapping("/api/v1/truckTms/pathDisplay/fullPathVisualizationByCarNumber")
|
|
|
|
+ public Object fullPathVisualizationByCarNumber(@RequestBody HashMap mapValue);
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/fullPath")
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/fullPath")
|
|
public Object fullPath(@RequestParam("orderNumber") String orderNumber) throws Exception;
|
|
public Object fullPath(@RequestParam("orderNumber") String orderNumber) throws Exception;
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/getInTransitTransportation")
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/getInTransitTransportation")
|
|
@@ -593,6 +597,11 @@ public interface TmsTruckFeign {
|
|
@RequestParam(name = "apiId",defaultValue = "472") Integer apiId,
|
|
@RequestParam(name = "apiId",defaultValue = "472") Integer apiId,
|
|
@RequestParam(name = "pageNum") Integer pageNum,
|
|
@RequestParam(name = "pageNum") Integer pageNum,
|
|
@RequestParam(name = "pageSize") Integer pageSize);
|
|
@RequestParam(name = "pageSize") Integer pageSize);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @ApiOperation(value = "获取收货作业照片")
|
|
|
|
+ @PostMapping("/api/v1/truckTms/tmstruckreceiptresults/getReceivingPhotoByUrl")
|
|
|
|
+ public Map<String,Object> getReceivingPhotoByUrl(@RequestParam String orderNumber);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|