Commit 0a6393b5 by huiyang.chen

订单汇集

parent 4a26ade0
......@@ -1523,7 +1523,8 @@ public class OrderAdapter {
} else {
if (DeliverStatus.WATINGORDER.getCode().equals(orderBean.getDeliverStatus()) || DeliverStatus.SYSTEMGETORDER.getCode().equals(orderBean.getDeliverStatus())
|| DeliverStatus.ALLOTRIDER.getCode().equals(orderBean.getDeliverStatus())
|| DeliverStatus.RIDERARRIVESTORE.getCode().equals(orderBean.getDeliverStatus())) {
|| DeliverStatus.RIDERARRIVESTORE.getCode().equals(orderBean.getDeliverStatus())
|| DeliverStatus.DELIVERYCOLLECT.getCode().equals(orderBean.getDeliverStatus())) {
orderViewStatusDto.setOrderStatus(OrderViewStatus.RIDERDELIVERY.getCode());
orderViewStatusDto.setOrderStatusDesc("骑手取餐中");
orderViewStatusDto.setOrderStatusDescText("请稍等片刻,美味即将到达哦~");
......
......@@ -24,7 +24,9 @@ public enum DeliverStatus {
RIDERSTARTDELIVERY(5,"开始配送"),
DELIVERYARRIVED(6,"运单送达"),
DELIVERYERROR(7,"运单异常"),
DELIVERYCANCEL(8,"运单取消");
DELIVERYCANCEL(8,"运单取消"),
//麦咖啡专用 运单汇集
DELIVERYCOLLECT(99,"运单汇集");
private Integer code;
private String desc;
......
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