|
@@ -249,6 +249,9 @@ func orderList(context *admin.Context) (interface{}, error) {
|
|
|
if t == "23" {
|
|
|
str += " e.product_type = '" + "3A信用认证" + "' and"
|
|
|
}
|
|
|
+ if t == "24" {
|
|
|
+ str += " e.product_type = '" + "权益码" + "' and"
|
|
|
+ }
|
|
|
}
|
|
|
// 订单状态 0:未支付 1:已支付 -1:逻辑删除 -2:已取消 -3 全额退款 3-已付款 4-待付款 -4-部分退款 -5-未退款
|
|
|
if param.OrderStatus != "" {
|
|
@@ -517,7 +520,7 @@ func OrderDetails(context *admin.Context) (interface{}, error) {
|
|
|
} else if param.Type == "结构化数据" || param.Type == "广告" || param.Type == "历史数据导出" ||
|
|
|
param.Type == "线下课程培训" || param.Type == "课程分销" ||
|
|
|
param.Type == "标书制作" || param.Type == "打赏" ||
|
|
|
- param.Type == "ISO体系认证" || param.Type == "3A信用认证" {
|
|
|
+ param.Type == "ISO体系认证" || param.Type == "3A信用认证" || param.Type == "权益码" {
|
|
|
result = SupplementaryOrder(res)
|
|
|
}
|
|
|
// 审核轨迹详情
|
|
@@ -771,6 +774,10 @@ func ExportOrder(context *admin.Context) (interface{}, error) {
|
|
|
product_type = "3A信用认证"
|
|
|
str += " e.product_type = '" + "3A信用认证" + "' and"
|
|
|
}
|
|
|
+ if t == "24" {
|
|
|
+ product_type = "权益码"
|
|
|
+ str += " e.product_type = '" + "权益码" + "' and"
|
|
|
+ }
|
|
|
} else {
|
|
|
product_type = "全部订单查询"
|
|
|
}
|