Преглед изворни кода

Merge branch 'cygx_8.7' into debug

ziwen пре 2 година
родитељ
комит
ad5f09bcf5
2 измењених фајлова са 19 додато и 17 уклоњено
  1. 2 16
      controllers/activity.go
  2. 17 1
      models/activity.go

+ 2 - 16
controllers/activity.go

@@ -2577,21 +2577,7 @@ func (this *ActivityCoAntroller) ActivityListNew() {
 		return
 		return
 	}
 	}
 
 
-	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, ",")
-		condition += ` AND art.activity_type_name IN (` + tempCondition + `)`
-	}
+
 
 
 	var conditionOrder string
 	var conditionOrder string
 	if activeState == "2" || activeState == "3" {
 	if activeState == "2" || activeState == "3" {
@@ -2612,7 +2598,7 @@ func (this *ActivityCoAntroller) ActivityListNew() {
 
 
 	condition += conditionOrder
 	condition += conditionOrder
 
 
-	list, errList := models.GetActivityListNew(condition, pars, uid, startSize, pageSize, playBack, filter)
+	list, errList := models.GetActivityListNew(condition, pars, uid, startSize, pageSize, playBack, filter, typeName)
 	if errList != nil {
 	if errList != nil {
 		br.Msg = "获取失败"
 		br.Msg = "获取失败"
 		br.ErrMsg = "获取失败,Err:" + errList.Error()
 		br.ErrMsg = "获取失败,Err:" + errList.Error()

+ 17 - 1
models/activity.go

@@ -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
 	var sqlJiontable string
 	if playBack == 1 {
 	if playBack == 1 {
 		//sqlJiontable = ` INNER JOIN cygx_activity_voice AS ac ON ac.activity_id = art.activity_id `
 		//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 += condition
 	}
 	}
 	sql += ` LIMIT ?,?`
 	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)
 	_, err = o.Raw(sql, pars, uid, uid, uid, startSize, pageSize).QueryRows(&items)
 	return
 	return
 }
 }