Commit 8770b844 by Huang Linyu

赛事订单, 导出增加 下单渠道字段

parent 8e935a5a
......@@ -62,6 +62,7 @@ public class EventActivityOrderExcelDao extends GenericHibernateDao<EventActivit
+ ",orderitem.communeGuestMinus"
+ ",orderitem.floorPrice"
+ ",od.remark"
+ ",od.platform"
+ ",od.onlineOrderFlag"
+ ",(SELECT ord_payinfo.prePayAmount FROM ord_payinfo WHERE ord_payinfo.OrderID = od.OrderID ORDER BY ord_payinfo.id LIMIT 0,1) as depositAmount"
+ ",orderitem.quantity as quantity"
......
......@@ -122,6 +122,8 @@ public class EventActivityOrderListExcel {
/** The play date. */
private Date playDate;
private String platform;
public String getUid() {
return uid;
......@@ -369,4 +371,12 @@ public class EventActivityOrderListExcel {
this.prePayCardRefundAmount = prePayCardRefundAmount;
}
public String getPlatform() {
return platform;
}
public void setPlatform(String platform) {
this.platform = platform;
}
}
......@@ -937,6 +937,7 @@ public class OpEventActivityOrderService
bean.setContactTel(xsl.getContactTel());
bean.setOrderDate(xsl.getOrderDate());
bean.setPlayDate(xsl.getPlayDate());
bean.setPlatform(xsl.getPlatform());
if (xsl.getOnlineOrderFlag() != null && !xsl.getOnlineOrderFlag()) {
bean.setOrderSourceCategory("线下订单");
} else {
......
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 sign in to comment