Commit 20341373 by huiyang.chen

非外卖单才获取取餐码和排队人数

parent 7598cb8e
......@@ -987,7 +987,8 @@ public class OrderServiceImpl implements Orderservice {
responseMap.put("orderStatus", orderViewStatusDesc.getOrderStatus());
responseMap.put("takeCode","");
responseMap.put("queueIndex","");
if (OrderType.TAKE_OUT.getCode().equals(orderBean.getType()) ){
//非外卖单才获取取餐码和排队人数
if (!OrderType.TAKE_OUT.getCode().equals(orderBean.getType()) ){
responseMap.put("takeCode",orderBean.getOtherCode() );
BaseQueryOrderRequest var1 = new BaseQueryOrderRequest();
......
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