Commit 1f7b8224 by 邓杰

配送进程

parent 97e9ad97
......@@ -28,5 +28,9 @@ public class DeliveryStatusAndRiderPositionDto {
* 距离
*/
private Integer distance;
/**
* 门店联系电话
*/
private String storePhone;
}
......@@ -17,6 +17,10 @@ public class OrderRiderResponseVo {
*/
private String deliveryId;
/**
* 门店联系电话
*/
private String storePhone;
/**
* 骑手经度
*/
private String riderLongitude;
......
......@@ -1130,7 +1130,8 @@ public class OrderServiceImpl implements Orderservice {
operation.setOperator(operationHistory.getOperator());
});
responseVo.setOperationList(operationList);
responseVo.setOrderId(deliveryBaseResponse.getData().getDeliveryId());
responseVo.setOrderId(orderBean.getOid());
responseVo.setStorePhone(deliveryBaseResponse.getData().getStorePhone());
String currentPoint[] = deliveryBaseResponse.getData().getCurrentPoint().split(",");
String storePoint[] = deliveryBaseResponse.getData().getStorePoint().split(",");
responseVo.setRiderLongitude(currentPoint[0]);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment