|
@@ -1015,7 +1015,7 @@ func GetActivitySpecialSearcheList(condition string, pars []interface{}, conditi
|
|
|
}
|
|
|
|
|
|
//列表
|
|
|
-func GetActivityListNew(condition string, pars []interface{}, uid, startSize, pageSize, playBack, filter int) (items []*ActivityDetail, err error) {
|
|
|
+func GetActivityListNew(condition string, pars []interface{}, uid, startSize, pageSize, playBack, filter int, typeName string) (items []*ActivityDetail, err error) {
|
|
|
var sqlJiontable string
|
|
|
if playBack == 1 {
|
|
|
//sqlJiontable = ` INNER JOIN cygx_activity_voice AS ac ON ac.activity_id = art.activity_id `
|
|
@@ -1039,6 +1039,22 @@ func GetActivityListNew(condition string, pars []interface{}, uid, startSize, pa
|
|
|
sql += condition
|
|
|
}
|
|
|
sql += ` LIMIT ?,?`
|
|
|
+
|
|
|
+ if typeName != ""{
|
|
|
+ typeSlice := strings.Split(typeName, ",")
|
|
|
+ tempCondition := ""
|
|
|
+ for _, s := range typeSlice {
|
|
|
+ if s == "1"{
|
|
|
+ tempCondition += "'专家电话会',"
|
|
|
+ } else if s == "2" {
|
|
|
+ tempCondition += "'分析师电话会',"
|
|
|
+ } else if s == "1,2" {
|
|
|
+ tempCondition += "'专家电话会','分析师电话会',"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ tempCondition = strings.TrimRight(tempCondition, ",")
|
|
|
+ sql = `SELECT * FROM(` + sql + `) AS t WHERE t.activity_type_name IN (` + tempCondition + `)`
|
|
|
+ }
|
|
|
_, err = o.Raw(sql, pars, uid, uid, uid, startSize, pageSize).QueryRows(&items)
|
|
|
return
|
|
|
}
|