Commit 20911fed by ping.wu

老售后单对象排序

parent 9d338258
...@@ -217,6 +217,7 @@ public class OrderCenterSdkAdapter { ...@@ -217,6 +217,7 @@ public class OrderCenterSdkAdapter {
if (orderInfoReqs.getAfterSalesOrderList() != null && orderInfoReqs.getAfterSalesOrderList().size() != 0) { if (orderInfoReqs.getAfterSalesOrderList() != null && orderInfoReqs.getAfterSalesOrderList().size() != 0) {
List<RefundBeanV1> refundList = getOldOrderRefundList(orderInfoReqs.getAfterSalesOrderList()); List<RefundBeanV1> refundList = getOldOrderRefundList(orderInfoReqs.getAfterSalesOrderList());
refundList.sort(Comparator.comparing(RefundBeanV1 :: getCreateTime));
data.setRefundList(refundList); data.setRefundList(refundList);
} }
data.setOrderOperationHistoryList(getOrderOperationHistory(orderInfoReqs.getOrderOperationHistoryList())); data.setOrderOperationHistoryList(getOrderOperationHistory(orderInfoReqs.getOrderOperationHistoryList()));
......
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