Commit 2e9d1a87 by huiyang.chen

返回餐道订单号

parent 0a6393b5
...@@ -1132,6 +1132,7 @@ public class OrderAdapter { ...@@ -1132,6 +1132,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);
......
...@@ -351,6 +351,11 @@ public class QueryOrderResponseVo { ...@@ -351,6 +351,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