|
@@ -27,6 +27,7 @@ import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
+import java.util.Comparator;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.Set;
|
|
@@ -78,7 +79,7 @@ public class WechatDeliveryOrderController {
|
|
|
deliveryOrderFilter.setCreateUserId(userId);
|
|
|
// String orderBy = MyOrderParam.buildOrderBy(orderParam, DeliveryOrder.class);
|
|
|
List<DeliveryOrder> deliveryOrderList =
|
|
|
- deliveryOrderService.getDeliveryOrderListWithRelation(deliveryOrderFilter, "create_time");
|
|
|
+ deliveryOrderService.getDeliveryOrderListWithRelation(deliveryOrderFilter, "create_time desc");
|
|
|
deliveryOrderService.maskFieldDataList(deliveryOrderList, null);
|
|
|
|
|
|
//查询订单详情
|
|
@@ -91,6 +92,15 @@ public class WechatDeliveryOrderController {
|
|
|
pageData.getDataList().forEach(e->{
|
|
|
e.setItemList(collect1.get(e.getId()));
|
|
|
});
|
|
|
+ List<DeliveryOrderVo> dataList = pageData.getDataList();
|
|
|
+ dataList.sort(new Comparator<DeliveryOrderVo>() {
|
|
|
+ @Override
|
|
|
+ public int compare(DeliveryOrderVo o1, DeliveryOrderVo o2) {
|
|
|
+ int compareTo = o2.getCreateTime().compareTo(o1.getCreateTime());
|
|
|
+ return compareTo;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ pageData.setDataList(dataList);
|
|
|
return ResponseResult.success(pageData);
|
|
|
}
|
|
|
|
|
@@ -123,6 +133,7 @@ public class WechatDeliveryOrderController {
|
|
|
* @throws Exception
|
|
|
*/
|
|
|
@RequestMapping("/getCalculatedDistance")
|
|
|
+ @SaIgnore
|
|
|
public ResponseResult<String> getCalculatedDistance(@RequestParam("initLongitude") String initLongitude,
|
|
|
@RequestParam("initLatitude") String initLatitude,
|
|
|
@RequestParam("lastLongitude") String lastLongitude,
|
|
@@ -134,8 +145,6 @@ public class WechatDeliveryOrderController {
|
|
|
Double v = MathCalculateUtils.calculateDistance(Double.parseDouble(initLongitude), Double.parseDouble(initLatitude), Double.parseDouble(lastLongitude), Double.parseDouble(lastLatitude));
|
|
|
return ResponseResult.success(v.toString());
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
private ResponseResult<Tuple2<DeliveryOrder, JSONObject>> doBusinessDataVerifyAndConvert(
|
|
|
DeliveryOrderDto deliveryOrderDto,
|
|
|
boolean forUpdate,
|