Commit 63c01117 by huiyang.chen

返回餐道订单号

parent f9ff8baf
...@@ -1216,6 +1216,7 @@ public class OrderAdapter { ...@@ -1216,6 +1216,7 @@ public class OrderAdapter {
responseVo.setCustomerScorePrompt(customerScorePrompt); responseVo.setCustomerScorePrompt(customerScorePrompt);
//优惠总金额=优惠券金额+满减金额+限时折扣金额 //优惠总金额=优惠券金额+满减金额+限时折扣金额
responseVo.setDiscountTotalAmount(discountTotalAmount); responseVo.setDiscountTotalAmount(discountTotalAmount);
responseVo.setDownstreamThirdOrderCode(ordersBean.getDownstreamThirdOrderCode());
responseVo.setEnableRefund(false); responseVo.setEnableRefund(false);
if (OrderStatus.TAKE_ORDER.getCode().equals(ordersBean.getStatus()) && PayStatus.HAVE_PAID.getCode().equals(ordersBean.getPayStatus())) { if (OrderStatus.TAKE_ORDER.getCode().equals(ordersBean.getStatus()) && PayStatus.HAVE_PAID.getCode().equals(ordersBean.getPayStatus())) {
responseVo.setEnableRefund(true); responseVo.setEnableRefund(true);
......
...@@ -352,6 +352,11 @@ public class QueryOrderResponseVo { ...@@ -352,6 +352,11 @@ public class QueryOrderResponseVo {
*/ */
private Integer bizType; private Integer bizType;
/**
* 麦咖啡餐道订单号
*/
private String downstreamThirdOrderCode;
@Data @Data
public static class OrderStatusFlow { public static class OrderStatusFlow {
/** /**
......
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