activity.go 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473
  1. package cygx
  2. import (
  3. "encoding/json"
  4. "fmt"
  5. "github.com/rdlucklib/rdluck_tools/paging"
  6. "hongze/hz_crm_api/controllers"
  7. "hongze/hz_crm_api/models"
  8. "hongze/hz_crm_api/models/cygx"
  9. "hongze/hz_crm_api/services"
  10. cygxService "hongze/hz_crm_api/services/cygx"
  11. "hongze/hz_crm_api/services/elastic"
  12. "hongze/hz_crm_api/utils"
  13. "strconv"
  14. "strings"
  15. "time"
  16. )
  17. // 活动
  18. type ActivityCoAntroller struct {
  19. controllers.BaseAuthController
  20. }
  21. // @Title 活动客户列表
  22. // @Description 活动客户列表接口
  23. // @Param IsZxdy query bool false "是否展示专项调研类型"
  24. // @Success 200 {object} cygx.ActivityCcustomerTypeList
  25. // @router /activity/customerTypelist [get]
  26. func (this *ActivityCoAntroller) List() {
  27. br := new(models.BaseResponse).Init()
  28. defer func() {
  29. this.Data["json"] = br
  30. this.ServeJSON()
  31. }()
  32. isZxdy, _ := this.GetBool("IsZxdy", false)
  33. sysUser := this.SysUser
  34. if sysUser == nil {
  35. br.Msg = "请登录"
  36. br.ErrMsg = "请登录,SysUser Is Empty"
  37. br.Ret = 408
  38. return
  39. }
  40. resp := new(cygx.ActivityCcustomerTypeList)
  41. var condition string
  42. if !isZxdy {
  43. condition += ` AND is_activity = 1 `
  44. } else {
  45. condition += ` AND is_apecial = 1 `
  46. }
  47. list, err := cygx.GetActivityCcustomerTypeList(condition)
  48. if err != nil {
  49. br.Msg = "获取失败"
  50. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  51. return
  52. }
  53. resp.List = list
  54. br.Ret = 200
  55. br.Success = true
  56. br.Msg = "获取成功"
  57. br.Data = resp
  58. }
  59. // @Title 活动内容的保存与发布
  60. // @Description 活动内容的保存与发布接口
  61. // @Param request body cygx.ActivityRep true "type json string"
  62. // @Success 200 操作成功
  63. // @router /activity/PreserveAndPublish [post]
  64. func (this *ActivityCoAntroller) PreserveAndPublish() {
  65. br := new(models.BaseResponse).Init()
  66. defer func() {
  67. this.Data["json"] = br
  68. this.ServeJSON()
  69. }()
  70. AdminUser := this.SysUser
  71. if AdminUser == nil {
  72. br.Msg = "请登录"
  73. br.ErrMsg = "请登录,用户信息为空"
  74. br.Ret = 408
  75. return
  76. }
  77. var req cygx.ActivityRep
  78. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  79. if err != nil {
  80. br.Msg = "参数解析异常!"
  81. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  82. return
  83. }
  84. if req.Body == "" {
  85. br.Msg = "内容不可为空"
  86. return
  87. }
  88. //不限制人数的,强制改为全部客户可见
  89. if req.LimitPeopleNum == 0 {
  90. req.VisibleRange = 2
  91. req.IsMakerShow = 0
  92. req.Scale = ""
  93. req.CustomerTypeIds = ""
  94. }
  95. if req.IsResearchPoints == 0 {
  96. req.SiginupDeadline = ""
  97. }
  98. activityId := req.ActivityId
  99. labelType := req.LabelType
  100. labelList := req.List
  101. activityTypeId := req.ActivityTypeId
  102. scale := req.Scale
  103. voiceList := req.VoiceList
  104. videoDetail := req.VideoDetail
  105. isBClass := req.IsBClass
  106. isResearchPoints := req.IsResearchPoints
  107. isShowHz := req.IsShowHz
  108. isResearch := req.IsResearch //是否是研选类型的活动
  109. if isResearch {
  110. req.PermissionName = utils.CHART_PERMISSION_NAME_MF_YANXUAN
  111. }
  112. var items []*cygx.CygxActivity
  113. //temporaryLabel := req.TemporaryLabel
  114. industrialManagementIdS := req.IndustrialManagementIdS
  115. industrialSubjectIdS := req.IndustrialSubjectIdS
  116. body := req.Body
  117. customerTypeIds := req.CustomerTypeIds
  118. if req.VisibleRange != 1 {
  119. req.VisibleRange = 2
  120. }
  121. //公司调研电话会,增加【外部资源】勾选项,其他的强制过滤
  122. if req.ActivityTypeId != 3 {
  123. req.IsExternalLabel = 0
  124. }
  125. isExternalLabel := req.IsExternalLabel
  126. pointsSet := req.PointsSet
  127. isNeedEmail := req.IsNeedEmail
  128. siginupDeadline := req.SiginupDeadline
  129. if customerTypeIds != "" {
  130. condition := ` AND customer_type_id IN (` + customerTypeIds + `)`
  131. listValue, err := cygx.GetActivityCcustomerTypeList(condition)
  132. if err != nil {
  133. br.Msg = "活动可见套餐类型错误,请核实"
  134. return
  135. }
  136. req.CustomerTypeIds = ""
  137. for _, v := range listValue {
  138. req.CustomerTypeIds += v.PermissionValue + ","
  139. }
  140. req.CustomerTypeIds = strings.TrimRight(req.CustomerTypeIds, ",")
  141. }
  142. if len(voiceList) > 0 && videoDetail != nil {
  143. br.Msg = "音频与视频只能上传一个"
  144. return
  145. }
  146. body = strings.Replace(body, "  ", "", -1)
  147. body = strings.Replace(body, " ", "", -1)
  148. slice := strings.Split(body, "<hr>")
  149. if activityId == 0 {
  150. if activityTypeId == 1 {
  151. if labelType != 1 && labelType != 2 {
  152. br.Msg = "请选择主题标签"
  153. return
  154. }
  155. }
  156. }
  157. var industrialActivityItemsList [][]*cygx.CygxIndustrialActivityGroupManagement
  158. var subjectActivityItemsList [][]*cygx.CygxIndustrialActivityGroupSubject
  159. var industryAndSubjectNameItems []*cygx.IndustryAndSubjectName
  160. var industrialNames string
  161. var industrialSubjectNames string
  162. industryIds := make([]int, 0)
  163. for _, vLabel := range labelList {
  164. var industrialActivityItems []*cygx.CygxIndustrialActivityGroupManagement
  165. var subjectActivityItems []*cygx.CygxIndustrialActivityGroupSubject
  166. if vLabel.IndustrialManagementIdS != "" {
  167. industrialManagementIdS = vLabel.IndustrialManagementIdS
  168. industrialSubjectIdS = vLabel.IndustrialSubjectIdS
  169. if industrialManagementIdS == "" {
  170. br.Msg = "请选择产业"
  171. return
  172. }
  173. industrialManagementIdS = strings.Replace(industrialManagementIdS, " ", "", -1)
  174. industrialManagementList := strings.Split(industrialManagementIdS, ",")
  175. for _, v := range industrialManagementList {
  176. industrialActivityItem := new(cygx.CygxIndustrialActivityGroupManagement)
  177. industrialManagementId, err := strconv.Atoi(v)
  178. if err != nil {
  179. br.Msg = "参数解析异常!"
  180. br.ErrMsg = "产业ID不规范,Err:" + err.Error() + industrialManagementIdS
  181. return
  182. }
  183. industryIds = append(industryIds, industrialManagementId)
  184. industrialActivityItem.CreateTime = time.Now()
  185. industrialActivityItem.IndustrialManagementId = industrialManagementId
  186. industrialActivityItem.ActivityId = activityId
  187. industrialActivityItem.Source = 1
  188. industrialActivityItems = append(industrialActivityItems, industrialActivityItem)
  189. }
  190. if industrialSubjectIdS != "" {
  191. industrialSubjectIdList := strings.Split(industrialSubjectIdS, ",")
  192. for _, v := range industrialSubjectIdList {
  193. subjectActivityItem := new(cygx.CygxIndustrialActivityGroupSubject)
  194. industrialSubjectId, err := strconv.Atoi(v)
  195. if err != nil {
  196. br.Msg = "参数解析异常!"
  197. br.ErrMsg = "标的ID不规范,Err:" + err.Error() + industrialManagementIdS
  198. return
  199. }
  200. subjectActivityItem.CreateTime = time.Now()
  201. subjectActivityItem.IndustrialSubjectId = industrialSubjectId
  202. subjectActivityItem.ActivityId = activityId
  203. subjectActivityItem.Source = 1
  204. subjectActivityItems = append(subjectActivityItems, subjectActivityItem)
  205. }
  206. }
  207. //产业名称
  208. if industrialManagementIdS != "" {
  209. industrialNames, err = cygx.GetindustrialManagementNames(industrialManagementIdS)
  210. if err != nil {
  211. br.Msg = "参数解析异常!"
  212. br.ErrMsg = "产业ID不规范,Err:" + err.Error() + industrialManagementIdS
  213. return
  214. }
  215. }
  216. //标的名称
  217. if industrialSubjectIdS != "" {
  218. industrialSubjectNames, err = cygx.GetindustrialSubjectNames(industrialSubjectIdS)
  219. if err != nil {
  220. br.Msg = "参数解析异常!"
  221. br.ErrMsg = "标的ID不规范,Err:" + err.Error() + industrialSubjectIdS
  222. return
  223. }
  224. } else {
  225. industrialSubjectNames = ""
  226. }
  227. }
  228. if len(industrialActivityItems) == 0 {
  229. industrialActivityItems = make([]*cygx.CygxIndustrialActivityGroupManagement, 0)
  230. }
  231. if len(subjectActivityItems) == 0 {
  232. subjectActivityItems = make([]*cygx.CygxIndustrialActivityGroupSubject, 0)
  233. }
  234. industrialActivityItemsList = append(industrialActivityItemsList, industrialActivityItems)
  235. subjectActivityItemsList = append(subjectActivityItemsList, subjectActivityItems)
  236. //合并产业以及标的的名称
  237. industryAndSubjectNameItem := new(cygx.IndustryAndSubjectName)
  238. industryAndSubjectNameItem.IndustryNames = industrialNames
  239. industryAndSubjectNameItem.SubjectNames = industrialSubjectNames
  240. industryAndSubjectNameItem.TemporaryLabel = vLabel.TemporaryLabel
  241. industrialNames = ""
  242. industrialSubjectNames = ""
  243. industryAndSubjectNameItems = append(industryAndSubjectNameItems, industryAndSubjectNameItem)
  244. }
  245. if labelType == 1 || labelType == 0 {
  246. if len(slice) > len(industrialActivityItemsList) {
  247. for k := range slice {
  248. if k > 0 {
  249. if len(industrialActivityItemsList) > 0 {
  250. industrialActivityItemsList = append(industrialActivityItemsList, industrialActivityItemsList[0])
  251. }
  252. if len(subjectActivityItemsList) > 0 {
  253. subjectActivityItemsList = append(subjectActivityItemsList, subjectActivityItemsList[0])
  254. }
  255. if len(industryAndSubjectNameItems) > 0 {
  256. industryAndSubjectNameItems = append(industryAndSubjectNameItems, industryAndSubjectNameItems[0])
  257. }
  258. }
  259. }
  260. }
  261. }
  262. if labelType == 2 {
  263. if len(slice) != len(labelList) {
  264. br.Msg = "活动和主题个数不符,请核实"
  265. return
  266. }
  267. }
  268. permissionName := req.PermissionName
  269. List := cygxService.GetActChartPermissionList()
  270. var haveCheck bool
  271. for _, v := range List {
  272. if permissionName == v.PermissionName {
  273. haveCheck = true
  274. }
  275. }
  276. if !haveCheck {
  277. br.Msg = "行业名称:" + permissionName + "不存在"
  278. return
  279. }
  280. if strings.Contains(permissionName, utils.CHART_PERMISSION_NAME_YANXUAN) {
  281. permissionName = utils.CHART_PERMISSION_NAME_MF_YANXUAN
  282. }
  283. //charInfo, errCategory := cygx.GetCategoryInfoById(req.ChartPermissionId)
  284. charInfo, errCategory := cygx.GetCategoryInfoByName(permissionName)
  285. if errCategory != nil {
  286. br.Msg = "请选择所属行业"
  287. br.ErrMsg = "获取所属行业信息失败,Err:" + errCategory.Error()
  288. return
  289. }
  290. if charInfo.PermissionName == "宏观经济" {
  291. charInfo.PermissionName = "宏观"
  292. }
  293. activityTypeInfo, errType := cygx.GetActivityTypeDetailById(activityTypeId)
  294. if errType != nil {
  295. br.Msg = "请选择活动类型"
  296. br.ErrMsg = "获取活动类型信息失败,Err:" + errType.Error()
  297. return
  298. }
  299. var activeState int
  300. var checkYidong bool
  301. if req.ActivityId > 0 {
  302. activityInfo, errInfo := cygx.GetAddActivityInfoById(req.ActivityId)
  303. if errInfo != nil {
  304. br.Msg = "活动不存在"
  305. br.ErrMsg = "活动ID错误,ActivityId:" + strconv.Itoa(req.ActivityId)
  306. return
  307. }
  308. if activityInfo.ActiveState > 1 {
  309. activeState = activityInfo.ActiveState
  310. }
  311. if activityInfo.YidongActivityId != "" {
  312. checkYidong = true
  313. }
  314. //校验活动后台管理员、销售是否有修改权限
  315. havePower, popupMsg, err := cygxService.CheckActivityUpdatePower(AdminUser.AdminId, activityInfo)
  316. if err != nil {
  317. br.Msg = "获取管理员身份信息失败"
  318. br.ErrMsg = "获取管理员身份信息失败,Err:" + err.Error()
  319. return
  320. }
  321. if !havePower {
  322. br.Msg = popupMsg
  323. return
  324. }
  325. }
  326. var itemPointsSet = new(cygx.CygxActivityPointsSet)
  327. var itemPointsSetOld = new(cygx.CygxActivityPointsSetRsq)
  328. if activityId > 0 {
  329. itemPointsSetOld, err = cygx.GetCygxActivityPointsSetDetail(activityId)
  330. if err != nil && err.Error() != utils.ErrNoRow() {
  331. br.Msg = "获取信息失败"
  332. br.ErrMsg = "GetCygxActivityPointsSetDetail,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  333. return
  334. }
  335. }
  336. //校验研选扣点内容,对于已结束的活动不做点数校验
  337. if isResearchPoints == 1 {
  338. errMsg, itemResp, err := cygxService.CheckActivityPointsSet(pointsSet, activityId)
  339. if errMsg != "" {
  340. br.Msg = errMsg
  341. return
  342. }
  343. if err != nil {
  344. br.Msg = "操作失败"
  345. br.ErrMsg = "操作失败,Err:" + err.Error()
  346. return
  347. }
  348. itemPointsSet = itemResp
  349. }
  350. for k, v := range slice {
  351. //如果内容不存在 时间:字段则不予处理
  352. if strings.Contains(v, "时间:") || strings.Contains(v, "时间:") {
  353. slicebr := strings.Split(v, "<br")
  354. //浏览器兼容处理
  355. if len(slicebr) > 5 {
  356. v = strings.Replace(v, "br", "p", -1)
  357. }
  358. v = strings.Replace(v, "<p><br></p>", "", -1) //删除空标签,兼容标题顶部空格、换行
  359. v = strings.Replace(v, "<p><p></p>", "", -1)
  360. v = strings.Replace(v, "<p></p>", "", -1)
  361. v = strings.Replace(v, "<p><p>", "", -1)
  362. v = strings.Replace(v, "<br>", "", -1)
  363. v = strings.Replace(v, "<p id=\"isPasted\"></p>", "", -1)
  364. item, errstr := cygxService.ActivityBodyAnalysis(v, activeState, req)
  365. if len(errstr) > 0 {
  366. br.Msg = errstr
  367. br.IsSendEmail = false
  368. return
  369. }
  370. var temporaryLabel string
  371. if len(labelList) == 1 {
  372. temporaryLabel = labelList[0].TemporaryLabel
  373. } else {
  374. temporaryLabel = labelList[k].TemporaryLabel
  375. }
  376. item.TemporaryLabel = temporaryLabel
  377. item.IsBClass = isBClass
  378. if item.ReportLink != "" {
  379. articleIdLink, err := cygxService.GetReportLinkToArticleid(item.ReportLink)
  380. if err != nil {
  381. br.Msg = "操作失败"
  382. br.ErrMsg = "解析报告链接ID失败,Err:" + err.Error()
  383. return
  384. }
  385. item.ArticleId = articleIdLink
  386. }
  387. //if k == 0 && item.Label == "" {
  388. // br.Msg = "请填写活动标签"
  389. // return
  390. //}
  391. item.AdminId = AdminUser.AdminId
  392. item.AdminName = AdminUser.RealName
  393. item.Body = v
  394. item.ChartPermissionName = charInfo.PermissionName
  395. item.ChartPermissionNames = req.PermissionName
  396. item.ChartPermissionId = charInfo.ChartPermissionId
  397. item.ActivityTypeName = activityTypeInfo.ActivityTypeName
  398. item.ActivityTypeId = activityTypeInfo.ActivityTypeId
  399. item.CustomerTypeIds = req.CustomerTypeIds
  400. item.LimitPeopleNum = req.LimitPeopleNum
  401. item.IsMakerShow = req.IsMakerShow
  402. item.VisibleRange = req.VisibleRange
  403. item.PublishDate = time.Now()
  404. item.IsYidongConduct = req.IsYidongConduct
  405. item.IsCanOutboundCall = req.IsCanOutboundCall
  406. item.IsNeedEmail = isNeedEmail
  407. item.SiginupDeadline = siginupDeadline
  408. if isResearchPoints == 1 {
  409. item.IsResearchPoints = 1
  410. }
  411. //当不限制人数的时候,强制改为全部客户可见
  412. //if req.LimitPeopleNum == 0 {
  413. // item.VisibleRange = 2
  414. //}
  415. ////除了C类电话会其他类型的会议,强制改为全部客户可见
  416. //if req.ActivityTypeId != 7 {
  417. // item.VisibleRange = 2
  418. //}
  419. item.CreateTime = time.Now()
  420. item.LastUpdatedTime = time.Now()
  421. item.Scale = scale
  422. item.IsExternalLabel = isExternalLabel
  423. item.IsAllCustomerType = req.IsAllCustomerType
  424. item.IsShowHz = isShowHz
  425. item.ChartPermissionIdDeputy = charInfo.ChartPermissionId
  426. item.ChartPermissionNameDeputy = charInfo.PermissionName
  427. if len(labelList) == 1 {
  428. item.IsCanAppointmentMinutes = labelList[0].IsCanAppointmentMinutes
  429. } else {
  430. item.IsCanAppointmentMinutes = labelList[k].IsCanAppointmentMinutes
  431. }
  432. if item.ActivityName == "" {
  433. br.Msg = "请填写活动名称"
  434. return
  435. }
  436. if item.ActivityTime == "" {
  437. br.Msg = "请填写活动时间"
  438. return
  439. }
  440. //过滤标题中的符号,同步进门财经的时候使用
  441. newActivityName := item.ActivityName
  442. newActivityName = strings.Replace(newActivityName, "【", "", -1)
  443. newActivityName = strings.Replace(newActivityName, "】", "", -1)
  444. newActivityName = strings.Replace(newActivityName, "-", "", -1)
  445. newActivityName = strings.Replace(newActivityName, "—", "", -1)
  446. newActivityName = strings.Replace(newActivityName, " ", "", -1)
  447. newActivityName = strings.Replace(newActivityName, ":", "", -1)
  448. item.ActivityNameTask = newActivityName
  449. if !checkYidong {
  450. if activityTypeId == 1 {
  451. if item.Expert == "" {
  452. br.Msg = "请填写专家信息"
  453. return
  454. }
  455. if item.Host == "" {
  456. br.Msg = "请填写主持人信息"
  457. return
  458. }
  459. }
  460. if activityTypeId == 2 {
  461. if item.Speaker == "" {
  462. br.Msg = "请填写主讲人信息"
  463. return
  464. }
  465. }
  466. if activityTypeId == 3 {
  467. if item.DistinguishedGuest == "" {
  468. br.Msg = "请填写嘉宾信息"
  469. return
  470. }
  471. if item.Host == "" {
  472. br.Msg = "请填写主持人信息"
  473. return
  474. }
  475. }
  476. if activityTypeId == 4 {
  477. if item.DistinguishedGuest == "" {
  478. br.Msg = "请填写嘉宾信息"
  479. return
  480. }
  481. if item.Host == "" {
  482. br.Msg = "请填写主持人信息"
  483. return
  484. }
  485. if req.LimitPeopleNum == 0 {
  486. br.Msg = "请填写参会限制人数"
  487. return
  488. }
  489. }
  490. if activityTypeId == 5 {
  491. if item.Expert == "" {
  492. br.Msg = "请填写专家信息"
  493. return
  494. }
  495. if req.LimitPeopleNum == 0 {
  496. br.Msg = "请填写参会限制人数"
  497. return
  498. }
  499. }
  500. if activityTypeId == 6 {
  501. if item.Speaker == "" {
  502. br.Msg = "请填写主讲人信息"
  503. return
  504. }
  505. if req.LimitPeopleNum == 0 {
  506. br.Msg = "请填写参会限制人数"
  507. return
  508. }
  509. }
  510. }
  511. if req.LimitPeopleNum > 0 {
  512. item.IsLimitPeople = 1
  513. }
  514. if req.DoType == 1 {
  515. item.PublishStatus = 1
  516. }
  517. //当临时标的不为空的时候,标签为临时标的,否则为所选产业跟标的的组合
  518. if temporaryLabel != "" {
  519. item.Label = temporaryLabel
  520. } else {
  521. var labelNewStr string
  522. industrialNames = industryAndSubjectNameItems[k].IndustryNames
  523. industrialSubjectNames = industryAndSubjectNameItems[k].SubjectNames
  524. if industrialNames == "" && industrialSubjectNames != "" {
  525. labelNewStr = industrialSubjectNames
  526. } else if industrialNames != "" && industrialSubjectNames != "" {
  527. labelNewStr = industrialNames + "-" + industrialSubjectNames
  528. } else if industrialNames != "" && industrialSubjectNames == "" {
  529. labelNewStr = industrialNames
  530. }
  531. item.Label = labelNewStr
  532. if len(labelList) == 1 {
  533. item.IsShowSubjectName = labelList[0].IsShowSubjectName
  534. } else {
  535. item.IsShowSubjectName = labelList[k].IsShowSubjectName
  536. }
  537. }
  538. if item.ActivityTypeId == 2 {
  539. if item.ReportLink == "" {
  540. if labelList[k].IndustrialSubjectIdS != "" {
  541. item.ReportLink, err = cygxService.ActivityReportLink(item, labelList[k].IndustrialSubjectIdS)
  542. if err != nil {
  543. br.Msg = "发布失败"
  544. br.ErrMsg = "发布失败自动获取报告链接失败,Err:" + err.Error()
  545. return
  546. }
  547. }
  548. } else {
  549. sliceArt := strings.Split(item.ReportLink, "/")
  550. if len(sliceArt) > 0 {
  551. articleId, err := strconv.Atoi(sliceArt[len(sliceArt)-1])
  552. if err != nil {
  553. br.Msg = "报告链接格式错误!"
  554. return
  555. }
  556. detailArt, err := cygx.GetArticleIdInfoByArticleId(articleId)
  557. if err != nil {
  558. br.Msg = "内容不存在"
  559. br.ErrMsg = "操作失败,Err:" + err.Error()
  560. return
  561. }
  562. //类型ID 医药(医享会:28 、药调研:301)、消费【渠道新声:32】、科技【科技前言:79】、智造【匠心智造:84】
  563. if detailArt.CategoryId != 28 && detailArt.CategoryId != 301 && detailArt.CategoryId != 32 && detailArt.CategoryId != 79 && detailArt.CategoryId != 84 {
  564. item.IsHideAppointment = 1
  565. }
  566. }
  567. }
  568. }
  569. items = append(items, item)
  570. var errAct error
  571. if req.ActivityId == 0 {
  572. } else {
  573. if len(slice) > 1 {
  574. br.Msg = "文本格式错误,请删除多余活动"
  575. return
  576. }
  577. item.ActivityId = req.ActivityId
  578. activityInfo, errInfo := cygx.GetAddActivityInfoById(req.ActivityId)
  579. if activityInfo == nil {
  580. br.Msg = "活动不存在"
  581. br.ErrMsg = "活动ID错误,ActivityId:" + strconv.Itoa(req.ActivityId)
  582. return
  583. }
  584. if errInfo != nil {
  585. br.Msg = "操作失败"
  586. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  587. return
  588. }
  589. if item.PublishStatus == 0 {
  590. item.PublishStatus = activityInfo.PublishStatus
  591. }
  592. if req.DoType == 1 {
  593. item.AdminId = AdminUser.AdminId
  594. item.AdminName = AdminUser.RealName
  595. item.PublishDate = time.Now()
  596. item.IsCancel = 0
  597. } else {
  598. item.AdminId = activityInfo.AdminId
  599. item.AdminName = activityInfo.AdminName
  600. item.PublishDate = utils.StrTimeToTime(activityInfo.PublishDate)
  601. }
  602. //音频
  603. itemVoice := new(cygx.CygxActivityVoice)
  604. //var itemVoiceList []*cygx.CygxActivityVoice
  605. if len(voiceList) > 0 {
  606. for _, vo := range voiceList {
  607. itemVoice.ActivityId = activityId
  608. itemVoice.VoiceName = vo.Name
  609. itemVoice.VoiceUrl = vo.Url
  610. itemVoice.VoicePlaySeconds = vo.PlaySeconds
  611. itemVoice.CreateTime = time.Now()
  612. }
  613. }
  614. //视频
  615. itemVideo := new(cygx.CygxActivityVideo)
  616. if videoDetail != nil {
  617. itemVideo.VideoName = videoDetail.VideoName
  618. itemVideo.ActivityId = activityId
  619. itemVideo.VideoDuration = videoDetail.VideoDuration
  620. itemVideo.VideoUrl = videoDetail.VideoUrl
  621. itemVideo.ModifyDate = time.Now().Format(utils.FormatDateTime)
  622. itemVideo.CreateTime = time.Now().Format(utils.FormatDateTime)
  623. }
  624. //删除原有的视频数据
  625. //if itemVideo.VideoUrl != "" {
  626. videoDetail, err := cygx.GetCygxActivityVideoReqDetail(activityId)
  627. if err != nil && err.Error() != utils.ErrNoRow() {
  628. br.Msg = "获取信息失败"
  629. br.ErrMsg = "GetCygxActivityVideoReqDetail,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  630. return
  631. }
  632. if videoDetail != nil {
  633. go cygxService.UpdateResourceData(videoDetail.VideoId, "activityvideo", "delete", time.Now().Format(utils.FormatDateTime))
  634. }
  635. //}
  636. //if itemVoice.VoiceUrl != "" {
  637. voiceReqList, err := cygx.GetCygxActivityVoiceReqList(activityId)
  638. if err != nil && err.Error() != utils.ErrNoRow() {
  639. br.Msg = "获取信息失败"
  640. br.ErrMsg = "GetCygxActivityVoiceReqList,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  641. return
  642. }
  643. if len(voiceReqList) > 0 {
  644. for _, voice := range voiceReqList {
  645. go cygxService.UpdateResourceData(voice.ActivityVoiceId, "activityvoice", "delete", time.Now().Format(utils.FormatDateTime))
  646. }
  647. }
  648. //}
  649. //如果活动信息有如下变更则做消息推送
  650. voiceIdNew, videoIdNew, err := cygx.EditActivity(item, activityInfo.PublishStatus, industrialActivityItemsList, subjectActivityItemsList, itemVoice, itemVideo, itemPointsSet)
  651. if err != nil {
  652. br.Msg = "操作失败"
  653. br.ErrMsg = "操作失败,Err:" + err.Error()
  654. return
  655. }
  656. //更新活动音频
  657. if int(voiceIdNew) > 0 {
  658. go cygxService.UpdateResourceData(int(voiceIdNew), "activityvoice", "add", activityInfo.ActivityTime)
  659. }
  660. //更新活动视频
  661. if int(videoIdNew) > 0 {
  662. go cygxService.UpdateResourceData(int(videoIdNew), "activityvideo", "add", activityInfo.ActivityTime)
  663. }
  664. errAct = err
  665. if activityInfo.PublishStatus == 1 && activityInfo.ActivityTimeText != item.ActivityTimeText {
  666. go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ActivityTimeText, item.ActivityTimeText, "timeType")
  667. }
  668. oldExpert, _ := cygx.GetReportContentTextSub(activityInfo.Expert)
  669. newExpert, _ := cygx.GetReportContentTextSub(item.Expert)
  670. if activityInfo.PublishStatus == 1 && oldExpert != newExpert {
  671. go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, oldExpert, newExpert, "expertType")
  672. }
  673. if activityInfo.PublishStatus == 1 && activityInfo.Address != item.Address {
  674. go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.Address, item.Address, "addressType")
  675. }
  676. if activityInfo.PublishStatus == 1 && activityInfo.ParticipationCode != item.ParticipationCode {
  677. go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.ParticipationCode, item.ParticipationCode, "participationCode")
  678. }
  679. if activityInfo.PublishStatus == 1 && activityInfo.Theme != item.Theme {
  680. go services.SendWxMsgWithCygxActivityUpdateTime(req.ActivityId, activityInfo.Theme, item.Theme, "Theme")
  681. }
  682. //对于限制人数的活动,如果修改改了可见范围,对于新增的那一部分做新的推送
  683. if req.DoType == 0 && activityInfo.PublishStatus == 1 && activityInfo.ActiveState == 1 && activityInfo.LimitPeopleNum != "0" {
  684. if activityInfo.CustomerTypeIds != req.CustomerTypeIds || activityInfo.Scale != req.Scale || activityInfo.IsMakerShow != req.IsMakerShow || activityInfo.VisibleRange != req.VisibleRange {
  685. go cygxService.DoActivityOnenIdWxTemplateMsg(activityId)
  686. }
  687. }
  688. //已结束或者进行中的活动修改时间后,修改活动状态以及重新发送邮件附件
  689. if activeState != 0 && activeState != 1 {
  690. resultTime := utils.StrTimeToTime(item.ActivityTime) //时间字符串格式转时间格式
  691. if time.Now().Before(resultTime) {
  692. err := cygx.EditActivityStatus(req.ActivityId)
  693. if err != nil {
  694. br.Msg = "发布失败"
  695. br.ErrMsg = "发布失败,Err:" + err.Error()
  696. return
  697. }
  698. }
  699. }
  700. //修改活动人数限制之后,对于因为人数已满而失败的用户,推送模板消息
  701. if activityInfo.PublishStatus == 1 && activityInfo.IsLimitPeople != 0 && activityInfo.LimitPeopleNum != strconv.Itoa(req.LimitPeopleNum) {
  702. go cygxService.SendWxMsgWithCygxActivityUpdateLimitPeople(req.ActivityId)
  703. }
  704. go cygxService.YiDongSaveRoadshowDetail(activityId)
  705. //如果活动名称有变更就生成新的签到码
  706. if activityInfo.ActivityName != item.ActivityName || activityInfo.SigninImg == "" {
  707. go cygxService.MakeActivitySigninImg(req.ActivityId)
  708. }
  709. //如果活动之前是发布的状态,那么就对公司的扣点进行更新(涉及到新老公司的扣点返点,不放在Redis统一处理了)
  710. if activityInfo.PublishStatus == 1 {
  711. go cygxService.UpdateYanXuanActivityPointsBillOldComapny(activityInfo, AdminUser.AdminId, itemPointsSet, itemPointsSetOld) //活动发布以及取消发布处理研选扣点
  712. }
  713. //如果活动之前是未发布的状态,现在又发布了那么就对公司的扣点进行更新
  714. //if req.DoType == 1 && activityInfo.PublishStatus == 0 {
  715. // go cygxService.YanXuanActivityPointsBillActivityPublishAndCancel(activityId, AdminUser.AdminId, 1) //活动发布以及取消发布处理研选扣点
  716. //}
  717. }
  718. if errAct != nil {
  719. br.Msg = "发布失败"
  720. br.ErrMsg = "发布失败,Err:" + errAct.Error()
  721. return
  722. }
  723. //go cygxService.YanXuanActivityPointsBillActivityEdit(activityId, AdminUser.AdminId) //活动编辑处理研选扣点
  724. }
  725. }
  726. if req.ActivityId == 0 {
  727. _, activityIdArr, err := cygx.AddActivity(items, industrialActivityItemsList, subjectActivityItemsList, itemPointsSet)
  728. if err != nil {
  729. br.Msg = "发布失败"
  730. br.ErrMsg = "发布失败,Err:" + err.Error()
  731. return
  732. }
  733. //如果是添加多条活动那么就推送多次
  734. for _, v := range activityIdArr {
  735. if req.DoType == 1 {
  736. go func() {
  737. //同时添加多个活动的时候,避免协程开的过多
  738. cygxService.DoActivityOnenIdWxTemplateMsg(v)
  739. cygxService.UpdateResourceData(v, "activity", "add", time.Now().Format(utils.FormatDateTime))
  740. cygxService.YiDongSaveRoadshowDetail(v)
  741. cygxService.YanXuanActivityPointsBillActivityPublishAndCancel(v, AdminUser.AdminId, 1) //活动发布以及取消发布处理研选扣
  742. elastic.AddComprehensiveActivity(v) // Es添加活动
  743. }()
  744. }
  745. go cygxService.MakeActivitySigninImg(v)
  746. }
  747. } else {
  748. if req.DoType == 1 {
  749. go cygxService.DoActivityOnenIdWxTemplateMsg(req.ActivityId)
  750. go cygxService.UpdateResourceData(req.ActivityId, "activity", "add", time.Now().Format(utils.FormatDateTime))
  751. go cygxService.YanXuanActivityPointsBillActivityPublishAndCancel(activityId, AdminUser.AdminId, 1) //活动发布以及取消发布处理研选扣点
  752. }
  753. //如果二次编辑的时候,取消了易董办会选项,那么就对易董发送取消发布到广场的通知
  754. if req.IsYidongConduct == 0 {
  755. go cygxService.YiDongUpdateActivityStatus(activityId)
  756. }
  757. }
  758. // 查研观向7.4-更新产业布局时间
  759. if len(industryIds) > 0 {
  760. go cygxService.UpdateIndustryLayoutTime(industryIds, false)
  761. }
  762. //添加操作日志记录
  763. br.Ret = 200
  764. br.Success = true
  765. br.Msg = "操作成功"
  766. br.IsAddLog = true
  767. }
  768. // @Title 活动列表
  769. // @Description 获取活动列表接口
  770. // @Param PageSize query int true "每页数据条数"
  771. // @Param CurrentIndex query int true "当前页页码,从1开始"
  772. // @Param PublishStatus query int false "发布状态 ,0未发布,1已发布,3已取消,传2查询所有"
  773. // @Param ChartPermissionId query string false "行业id"
  774. // @Param ActivityTypeId query string false "活动类型id"
  775. // @Param StartDate query string false "开始时间 ,列如2021-03-06 "
  776. // @Param EndDate query string false "结束时间,列如2021-03-06 "
  777. // @Param PublishStartDate query string false "发布开始时间 ,列如2021-03-06 "
  778. // @Param PublishEndDate query string false "发布结束时间,列如2021-03-06 "
  779. // @Param KeyWord query string false "搜索关键词"
  780. // @Param ActiveState query string false "活动进行状态 未开始:NotStarted、进行中HaveInHand、已结束Complete"
  781. // @Param IsResearch query bool true "是否为研选"
  782. // @Success 200 {object} cygx.GetCygxActivityListRep
  783. // @router /activity/list [get]
  784. func (this *ActivityCoAntroller) ActivityList() {
  785. br := new(models.BaseResponse).Init()
  786. defer func() {
  787. this.Data["json"] = br
  788. this.ServeJSON()
  789. }()
  790. sysUser := this.SysUser
  791. if sysUser == nil {
  792. br.Msg = "请登录"
  793. br.ErrMsg = "请登录,SysUser Is Empty"
  794. return
  795. }
  796. pageSize, _ := this.GetInt("PageSize")
  797. currentIndex, _ := this.GetInt("CurrentIndex")
  798. publishStatus, _ := this.GetInt("PublishStatus")
  799. chartPermissionId, _ := this.GetInt("ChartPermissionId")
  800. ActivityTypeId, _ := this.GetInt("ActivityTypeId")
  801. startDate := this.GetString("StartDate")
  802. endDate := this.GetString("EndDate")
  803. publishStartDate := this.GetString("PublishStartDate")
  804. publishEndDate := this.GetString("PublishEndDate")
  805. keyWord := this.GetString("KeyWord")
  806. activeState := this.GetString("ActiveState")
  807. activityLabel := this.GetString("ActivityLabel") // 查研观向7.4-活动标签
  808. isResearch, _ := this.GetBool("IsResearch", false) // 是否为研选 查研观向11.0 (研选活动独立显示)
  809. if activeState != "HaveInHand" && activeState != "Complete" {
  810. activeState = "NotStarted"
  811. }
  812. var startSize int
  813. if pageSize <= 0 {
  814. pageSize = utils.PageSize20
  815. }
  816. if currentIndex <= 0 {
  817. currentIndex = 1
  818. }
  819. startSize = utils.StartIndex(currentIndex, pageSize)
  820. var condition string
  821. var pars []interface{}
  822. //condition += ` FROM cygx_activity as art WHERE 1= 1 `
  823. if keyWord != "" {
  824. condition += ` AND (art.activity_name LIKE '%` + keyWord + `%' ) `
  825. }
  826. if isResearch {
  827. chartPermissionId = utils.CHART_PERMISSION_ID_YANXUAN
  828. } else {
  829. condition += ` AND art.chart_permission_id != '` + strconv.Itoa(utils.CHART_PERMISSION_ID_YANXUAN) + `'`
  830. }
  831. //行业名称
  832. if chartPermissionId > 0 {
  833. condition += ` AND art.chart_permission_id = '` + strconv.Itoa(chartPermissionId) + `'`
  834. }
  835. if startDate != "" {
  836. condition += ` AND art.activity_time >= ` + "'" + startDate + " 00:00:00'"
  837. }
  838. if endDate != "" {
  839. condition += ` AND art.activity_time <= ` + "'" + endDate + " 23:59:59'"
  840. }
  841. //发布时间状态的筛选
  842. if publishStartDate != "" {
  843. condition += ` AND art.publish_date >= ` + "'" + publishStartDate + " 00:00:00'"
  844. publishStatus = 1
  845. }
  846. if publishEndDate != "" {
  847. condition += ` AND art.publish_date <= ` + "'" + publishEndDate + " 23:59:59'"
  848. publishStatus = 1
  849. }
  850. if publishStatus == 0 {
  851. condition += ` AND art.publish_status = 0 AND art.is_cancel = 0 `
  852. } else if publishStatus == 1 {
  853. condition += ` AND art.publish_status = 1 `
  854. } else if publishStatus == 3 {
  855. condition += ` AND art.publish_status = 0 AND art.is_cancel = 1 `
  856. }
  857. if ActivityTypeId > 0 {
  858. condition += ` AND art.activity_type_id = '` + strconv.Itoa(ActivityTypeId) + `'`
  859. }
  860. if activeState == "NotStarted" {
  861. condition += ` AND art.active_state =1 `
  862. } else if activeState == "HaveInHand" {
  863. condition += ` AND art.active_state =2 `
  864. } else {
  865. condition += ` AND art.active_state =3 `
  866. }
  867. // 活动标签
  868. if activityLabel != "" {
  869. condition += ` AND (art.label LIKE '%` + activityLabel + `%' ) `
  870. }
  871. //C类电话会,仅本组销售、部门管理员、admin、权益研究员账号能看到。
  872. if sysUser.Role != "admin" {
  873. conditionPermission, err := cygxService.GetAdminActivityPermission(sysUser, condition)
  874. if err != nil {
  875. br.Msg = "获取失败"
  876. br.ErrMsg = "获取失败,GetAdminActivityPermission Err:" + err.Error()
  877. return
  878. }
  879. condition += ` AND art.visible_range != 1 `
  880. condition += conditionPermission
  881. pars = append(pars, pars)
  882. }
  883. //1专家电话会、2分析师电话会、3公司调研电话会、4公司线下调研、5专家线下沙龙、6分析师线下沙龙
  884. total, err := cygx.GetActivityCount(condition, pars)
  885. if err != nil {
  886. br.Msg = "获取失败"
  887. br.ErrMsg = "获取失败,Err:" + err.Error()
  888. return
  889. }
  890. if activeState == "NotStarted" {
  891. condition += ` ORDER BY art.activity_time ASC `
  892. } else {
  893. condition += ` ORDER BY art.activity_time DESC `
  894. }
  895. list, errList := cygx.GetActivityListAll(condition, pars, startSize, pageSize)
  896. if errList != nil {
  897. br.Msg = "获取失败"
  898. br.ErrMsg = "获取失败,Err:" + errList.Error()
  899. return
  900. }
  901. var activityIds string
  902. for k, v := range list {
  903. if v.ChartPermissionNames != "" {
  904. list[k].ChartPermissionName = v.ChartPermissionNames
  905. }
  906. if v.IsCancel == 1 {
  907. v.PublishStatus = 3
  908. }
  909. activityIds += strconv.Itoa(v.ActivityId) + ","
  910. }
  911. activityIds = strings.TrimRight(activityIds, ",")
  912. mapIndustrial := make(map[int]string)
  913. mapSubject := make(map[string]string)
  914. mapUpload := make(map[int]bool)
  915. if activityIds != "" {
  916. industrialList, err := cygx.GetIndustrialActivityGroupListByactivityIds(activityIds)
  917. if err != nil {
  918. br.Msg = "获取失败"
  919. br.ErrMsg = "获取失败,GetIndustrialActivityGroupListByactivityIds Err:" + err.Error()
  920. return
  921. }
  922. subjectList, err := cygx.GetSubjectActivityGroupListByactivityIds(activityIds)
  923. if err != nil {
  924. br.Msg = "获取失败"
  925. br.ErrMsg = "获取失败,GetSubjectActivityGroupListByactivityIds Err:" + err.Error()
  926. return
  927. }
  928. //合并活动对应的多个标的
  929. for _, v := range subjectList {
  930. mapSubject[fmt.Sprint(v.ActivityId, "_", v.IndustrialManagementId)] += v.SubjectName + "/"
  931. }
  932. //活动对应的产业
  933. for _, v := range industrialList {
  934. var labelSubject string
  935. labelSubject = mapSubject[fmt.Sprint(v.ActivityId, "_", v.IndustrialManagementId)]
  936. if labelSubject != "" {
  937. mapIndustrial[v.ActivityId] += v.IndustryName + "--" + strings.TrimRight(labelSubject, "/") + ","
  938. } else {
  939. mapIndustrial[v.ActivityId] += v.IndustryName + ","
  940. }
  941. }
  942. var conditionupload string
  943. var pars []interface{}
  944. conditionupload = " AND activity_id IN (" + activityIds + ") "
  945. listVideo, err := cygx.GetActivityVideoList(conditionupload, pars)
  946. if err != nil && err.Error() != utils.ErrNoRow() {
  947. br.Msg = "获取失败"
  948. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  949. return
  950. }
  951. if len(listVideo) > 0 {
  952. for _, v := range listVideo {
  953. mapUpload[v.ActivityId] = true
  954. }
  955. }
  956. listVoice, err := cygx.GetActivityVoiceList(conditionupload, pars)
  957. if err != nil && err.Error() != utils.ErrNoRow() {
  958. br.Msg = "获取失败"
  959. br.ErrMsg = "获取数据失败,Err:" + err.Error()
  960. return
  961. }
  962. if len(listVoice) > 0 {
  963. for _, v := range listVoice {
  964. mapUpload[v.ActivityId] = true
  965. }
  966. }
  967. }
  968. for k, v := range list {
  969. if mapIndustrial[v.ActivityId] != "" && v.TemporaryLabel == "" {
  970. list[k].Label = strings.TrimRight(mapIndustrial[v.ActivityId], ",")
  971. }
  972. if v.YidongActivityId != "" {
  973. list[k].ActivityTypeName += utils.YI_DONG_NAME
  974. }
  975. if v.IsYidongConduct == 1 {
  976. list[k].ActivityTypeName += utils.YI_DONG_NAME_TWO
  977. }
  978. list[k].IsUpload = mapUpload[v.ActivityId]
  979. //是否展示签到码
  980. if (v.ActivityTypeId == 5 || v.ActivityTypeId == 6) && v.SigninImg != "" && v.ActiveState == 1 && v.PublishStatus == 1 {
  981. list[k].IsShowSigninButton = true
  982. }
  983. }
  984. if len(list) == 0 {
  985. list = make([]*cygx.CygxActivityList, 0)
  986. }
  987. page := paging.GetPaging(currentIndex, pageSize, total)
  988. resp := new(cygx.GetCygxActivityListRep)
  989. resp.List = list
  990. resp.Paging = page
  991. br.Ret = 200
  992. br.Success = true
  993. br.Msg = "获取成功"
  994. br.Data = resp
  995. }
  996. // @Title 活动详情
  997. // @Description 获取活动详情接口
  998. // @Param ActivityId query int true "活动ID"
  999. // @Success Ret=200 {object} cygx.ActivityDetail
  1000. // @router /activity/detail [get]
  1001. func (this *ActivityCoAntroller) Detail() {
  1002. br := new(models.BaseResponse).Init()
  1003. defer func() {
  1004. this.Data["json"] = br
  1005. this.ServeJSON()
  1006. }()
  1007. AdminUser := this.SysUser
  1008. if AdminUser == nil {
  1009. br.Msg = "请登录"
  1010. br.ErrMsg = "请登录,用户信息为空"
  1011. br.Ret = 408
  1012. return
  1013. }
  1014. activityId, _ := this.GetInt("ActivityId")
  1015. if activityId < 1 {
  1016. br.Msg = "请输入活动ID"
  1017. return
  1018. }
  1019. activityInfo, err := cygx.GetAddActivityInfoById(activityId)
  1020. if err != nil {
  1021. br.Msg = "活动不存在"
  1022. br.ErrMsg = "活动ID错误,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  1023. return
  1024. }
  1025. detail, errDetail := cygx.GetActivityTypeDetailById(activityInfo.ActivityTypeId)
  1026. if errDetail != nil {
  1027. br.Msg = "获取信息失败"
  1028. br.ErrMsg = "获取信息失败,Err:" + errDetail.Error()
  1029. return
  1030. }
  1031. industrialList, err := cygx.GetIndustrialActivityGroupManagementList(activityId, 1)
  1032. if err != nil && err.Error() != utils.ErrNoRow() {
  1033. br.Msg = "获取信息失败"
  1034. br.ErrMsg = "获取活动关联的产业列表信息失败,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  1035. return
  1036. }
  1037. var subjectList []*cygx.SubjectActivityGroupManagementRep
  1038. if len(industrialList) > 0 {
  1039. subjectList, err = cygx.GetSubjectActivityGroupManagementList(activityId, 1)
  1040. if err != nil && err.Error() != utils.ErrNoRow() {
  1041. br.Msg = "获取信息失败"
  1042. br.ErrMsg = "获取活动关联的标的列表信息失败,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  1043. return
  1044. }
  1045. }
  1046. VoiceReqList, err := cygx.GetCygxActivityVoiceReqList(activityId)
  1047. if err != nil && err.Error() != utils.ErrNoRow() {
  1048. br.Msg = "获取信息失败"
  1049. br.ErrMsg = "GetCygxActivityVoiceReqList,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  1050. return
  1051. }
  1052. if len(VoiceReqList) == 0 {
  1053. VoiceReqList = make([]*cygx.CygxActivityVoiceReq, 0)
  1054. }
  1055. VideoDetail, err := cygx.GetCygxActivityVideoReqDetail(activityId)
  1056. if err != nil && err.Error() != utils.ErrNoRow() {
  1057. br.Msg = "获取信息失败"
  1058. br.ErrMsg = "GetCygxActivityVideoReqDetail,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  1059. return
  1060. }
  1061. if activityInfo.CustomerTypeIds != "" {
  1062. customerTypeIdslist := strings.Split(activityInfo.CustomerTypeIds, ",")
  1063. var permissionValueStr string
  1064. for _, v := range customerTypeIdslist {
  1065. permissionValueStr += "'" + v + "',"
  1066. }
  1067. permissionValueStr = strings.TrimRight(permissionValueStr, ",")
  1068. condition := ` AND permission_value IN (` + permissionValueStr + `)`
  1069. listValue, err := cygx.GetActivityCcustomerTypeList(condition)
  1070. if err != nil {
  1071. br.Msg = "活动可见套餐类型错误,请核实"
  1072. br.ErrMsg = "GetActivityCcustomerTypeList,Err:" + err.Error()
  1073. return
  1074. }
  1075. activityInfo.CustomerTypeIds = ""
  1076. for _, v := range listValue {
  1077. activityInfo.CustomerTypeIds += strconv.Itoa(v.CustomerTypeId) + ","
  1078. }
  1079. activityInfo.CustomerTypeIds = strings.TrimRight(activityInfo.CustomerTypeIds, ",")
  1080. }
  1081. if activityInfo.SiginupDeadline == utils.EmptyDateTimeStr {
  1082. activityInfo.SiginupDeadline = ""
  1083. }
  1084. PointsSetDetail, err := cygx.GetCygxActivityPointsSetDetail(activityId)
  1085. if err != nil && err.Error() != utils.ErrNoRow() {
  1086. br.Msg = "获取信息失败"
  1087. br.ErrMsg = "GetCygxActivityPointsSetDetail,Err:" + err.Error() + "activityId:" + strconv.Itoa(activityId)
  1088. return
  1089. }
  1090. if PointsSetDetail != nil {
  1091. if PointsSetDetail.CancelDeadlineType == "0" {
  1092. PointsSetDetail.CancelDeadlineType = ""
  1093. }
  1094. activityInfo.PointsSet = PointsSetDetail
  1095. } else {
  1096. activityInfo.PointsSet = new(cygx.CygxActivityPointsSetRsq)
  1097. }
  1098. //可见范围 1,仅本组可见 、2,全部客户可见 没设置本组可见的,强制设置为全部客户可见
  1099. if activityInfo.VisibleRange == 0 {
  1100. activityInfo.VisibleRange = 2
  1101. }
  1102. //activityInfo.CancelDeadlineType = cygxService.ActivityCancelDeadlineType(activityInfo) //处理活动取消报名截止时间类型展示
  1103. activityInfo.VoiceList = VoiceReqList
  1104. activityInfo.VideoDetail = VideoDetail
  1105. activityInfo.ShowType = detail.ShowType
  1106. activityInfo.ListIndustrial = industrialList
  1107. activityInfo.ListSubject = subjectList
  1108. br.Ret = 200
  1109. br.Success = true
  1110. br.Msg = "获取成功"
  1111. br.Data = activityInfo
  1112. }
  1113. // @Title 活动的发布与取消发布
  1114. // @Description 活动的发布与取消发布接口
  1115. // @Param request body cygx.ActivityIdRep true "type json string"
  1116. // @Success 200 操作成功
  1117. // @router /activity/PublishAndCancel [post]
  1118. func (this *ActivityCoAntroller) PublishAndCancel() {
  1119. br := new(models.BaseResponse).Init()
  1120. defer func() {
  1121. this.Data["json"] = br
  1122. this.ServeJSON()
  1123. }()
  1124. AdminUser := this.SysUser
  1125. if AdminUser == nil {
  1126. br.Msg = "请登录"
  1127. br.ErrMsg = "请登录,用户信息为空"
  1128. br.Ret = 408
  1129. return
  1130. }
  1131. var req cygx.ActivityIdRep
  1132. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1133. if err != nil {
  1134. br.Msg = "参数解析异常!"
  1135. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1136. return
  1137. }
  1138. activityId := req.ActivityId
  1139. item := new(cygx.CygxActivity)
  1140. activityInfo, errInfo := cygx.GetAddActivityInfoById(activityId)
  1141. if activityInfo == nil {
  1142. br.Msg = "操作失败"
  1143. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  1144. return
  1145. }
  1146. if errInfo != nil {
  1147. br.Msg = "操作失败"
  1148. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  1149. return
  1150. }
  1151. //校验活动后台管理员、销售是否有修改权限
  1152. havePower, popupMsg, err := cygxService.CheckActivityUpdatePower(AdminUser.AdminId, activityInfo)
  1153. if err != nil {
  1154. br.Msg = "获取管理员身份信息失败"
  1155. br.ErrMsg = "获取管理员身份信息失败,Err:" + err.Error()
  1156. return
  1157. }
  1158. if !havePower {
  1159. br.Msg = popupMsg
  1160. return
  1161. }
  1162. //if activityInfo.ActiveState != 1 {
  1163. // br.Msg = "活动已经开始,无法修改"
  1164. // return
  1165. //}
  1166. if activityInfo.PublishStatus == 0 {
  1167. item.PublishStatus = 1
  1168. item.IsCancel = 0
  1169. go cygxService.DoActivityOnenIdWxTemplateMsg(activityId)
  1170. go cygxService.UpdateResourceData(activityId, "activity", "add", time.Now().Format(utils.FormatDateTime))
  1171. } else {
  1172. item.PublishStatus = 0
  1173. item.IsCancel = 1
  1174. }
  1175. if activityInfo.PublishStatus == 1 {
  1176. go services.SendWxMsgWithCygxActivity(req.ActivityId)
  1177. //同步活动到最新数据表
  1178. go cygxService.UpdateResourceData(req.ActivityId, "activity", "delete", "")
  1179. }
  1180. item.ActivityId = req.ActivityId
  1181. if item.PublishStatus == 1 {
  1182. item.AdminId = AdminUser.AdminId
  1183. item.AdminName = AdminUser.RealName
  1184. item.PublishDate = time.Now()
  1185. } else {
  1186. item.AdminId = activityInfo.AdminId
  1187. item.AdminName = activityInfo.AdminName
  1188. item.PublishDate = utils.StrTimeToTime(activityInfo.PublishDate)
  1189. }
  1190. err = cygx.ActivityPublishAndCancel(item)
  1191. if err != nil {
  1192. br.Msg = "操作失败"
  1193. br.ErrMsg = "操作失败,Err:" + err.Error()
  1194. return
  1195. }
  1196. if item.PublishStatus == 1 {
  1197. //易董那边重新发布,重新建会
  1198. go cygxService.YiDongSaveRoadshowDetail(activityId)
  1199. } else {
  1200. //易董那边取消发布并删除
  1201. go cygxService.YiDongUpdateActivityPublish(activityId)
  1202. }
  1203. go cygxService.YanXuanActivityPointsBillActivityPublishAndCancel(activityId, AdminUser.AdminId, item.PublishStatus) //活动发布以及取消发布处理研选扣点
  1204. go elastic.AddComprehensiveActivity(activityId) // 同步Es添加活动
  1205. br.Ret = 200
  1206. br.Success = true
  1207. br.Msg = "操作成功"
  1208. br.IsAddLog = true //添加操作日志记录
  1209. }
  1210. // @Title 删除活动
  1211. // @Description 删除活动接口
  1212. // @Param request body cygx.ActivityIdRep true "type json string"
  1213. // @Success Ret=200
  1214. // @router /activity/delete [post]
  1215. func (this *ActivityCoAntroller) Delete() {
  1216. br := new(models.BaseResponse).Init()
  1217. defer func() {
  1218. this.Data["json"] = br
  1219. this.ServeJSON()
  1220. }()
  1221. AdminUser := this.SysUser
  1222. if AdminUser == nil {
  1223. br.Msg = "请登录"
  1224. br.ErrMsg = "请登录,SysUser Is Empty"
  1225. br.Ret = 408
  1226. return
  1227. }
  1228. var req cygx.ActivityIdRep
  1229. err := json.Unmarshal(this.Ctx.Input.RequestBody, &req)
  1230. if err != nil {
  1231. br.Msg = "参数解析异常!"
  1232. br.ErrMsg = "参数解析失败,Err:" + err.Error()
  1233. return
  1234. }
  1235. activityId := req.ActivityId
  1236. if activityId < 1 {
  1237. br.Msg = "请输入活动ID"
  1238. return
  1239. }
  1240. activityInfo, errInfo := cygx.GetAddActivityInfoById(activityId)
  1241. if activityInfo == nil {
  1242. br.Msg = "操作失败"
  1243. br.ErrMsg = "活动ID错误,不存在activityId:" + strconv.Itoa(activityId)
  1244. return
  1245. }
  1246. if errInfo != nil {
  1247. br.Msg = "操作失败"
  1248. br.ErrMsg = "操作失败,Err:" + errInfo.Error()
  1249. return
  1250. }
  1251. //校验活动后台管理员、销售是否有修改权限
  1252. havePower, popupMsg, err := cygxService.CheckActivityUpdatePower(AdminUser.AdminId, activityInfo)
  1253. if err != nil {
  1254. br.Msg = "获取管理员身份信息失败"
  1255. br.ErrMsg = "获取管理员身份信息失败,Err:" + err.Error()
  1256. return
  1257. }
  1258. if !havePower {
  1259. br.Msg = popupMsg
  1260. return
  1261. }
  1262. resultTime := utils.StrTimeToTime(activityInfo.ActivityTime) //时间字符串格式转时间格式
  1263. res := time.Now().Before(resultTime)
  1264. if res == false {
  1265. br.Msg = "活动已结束禁止删除!"
  1266. br.ErrMsg = "活动已结束禁止删除!"
  1267. return
  1268. }
  1269. err = cygx.DeleteActivity(activityId)
  1270. if err != nil {
  1271. br.Msg = "删除信息失败"
  1272. br.ErrMsg = "删除信息失败,Err:" + err.Error()
  1273. return
  1274. }
  1275. //添加操作日志记录
  1276. br.Ret = 200
  1277. br.Success = true
  1278. br.Msg = "已删除"
  1279. br.IsAddLog = true
  1280. }
  1281. // @Title 获取活动行业分类
  1282. // @Description 获取活动行业分类接口
  1283. // @Param IsHideResearch query bool false "是否隐藏买方研选(默认不隐藏)"
  1284. // @Success 200 {object} cygx.ChartPermissionRepMoreList
  1285. // @router /activity/chartPermission/list [get]
  1286. func (this *ActivityCoAntroller) ChartPermissionListAct() {
  1287. br := new(models.BaseResponse).Init()
  1288. defer func() {
  1289. this.Data["json"] = br
  1290. this.ServeJSON()
  1291. }()
  1292. AdminUser := this.SysUser
  1293. if AdminUser == nil {
  1294. br.Msg = "请登录"
  1295. br.ErrMsg = "请登录,用户信息为空"
  1296. br.Ret = 408
  1297. return
  1298. }
  1299. //数据库新加行业分类,与之前的项目权限部分冲突太多,故采用自定义而不去数据库查找
  1300. resp := new(cygx.ChartPermissionRepMoreList)
  1301. // 查研观向7.4-策略后面新增一个宏观
  1302. resp.List = cygxService.GetActChartPermissionList()
  1303. br.Ret = 200
  1304. br.Success = true
  1305. br.Msg = "获取成功"
  1306. br.Data = resp
  1307. }
  1308. // @Title 扣点设置
  1309. // @Description 扣点设置接口
  1310. // @Success 200 {object} cygx.CygxActivityPointsSetConfigListResp
  1311. // @router /activity/pointsSet [get]
  1312. func (this *ActivityCoAntroller) PointsSet() {
  1313. br := new(models.BaseResponse).Init()
  1314. defer func() {
  1315. this.Data["json"] = br
  1316. this.ServeJSON()
  1317. }()
  1318. AdminUser := this.SysUser
  1319. if AdminUser == nil {
  1320. br.Msg = "请登录"
  1321. br.ErrMsg = "请登录,用户信息为空"
  1322. br.Ret = 408
  1323. return
  1324. }
  1325. conf, err := cygx.GetCygxConfigDetailByCode("activity_points_set")
  1326. if err != nil {
  1327. br.Msg = "获取数据失败"
  1328. br.ErrMsg = "买方研选产品介绍信息失败,Err:" + err.Error()
  1329. return
  1330. }
  1331. if conf.ConfigValue == "" {
  1332. br.Msg = "获取失败"
  1333. br.ErrMsg = "买方研选产品介绍信息失败"
  1334. return
  1335. }
  1336. list := new(*cygx.CygxActivityPointsSetConfigListResp)
  1337. if err = json.Unmarshal([]byte(conf.ConfigValue), &list); err != nil {
  1338. br.Msg = "获取失败"
  1339. br.ErrMsg = "买方研选产品介绍信配置值解析失败, Err: " + err.Error()
  1340. return
  1341. }
  1342. br.Ret = 200
  1343. br.Success = true
  1344. br.Msg = "获取成功"
  1345. br.Data = list
  1346. }
  1347. // @Title 权益办会机构搜索
  1348. // @Description 权益办会机构搜索
  1349. // @Param KeyWord query string false "搜索关键词"
  1350. // @Success 200 {object} cygx.ChartPermissionRepMoreList
  1351. // @router /activity/companySearch [get]
  1352. func (this *ActivityCoAntroller) CompanySearch() {
  1353. br := new(models.BaseResponse).Init()
  1354. defer func() {
  1355. this.Data["json"] = br
  1356. this.ServeJSON()
  1357. }()
  1358. AdminUser := this.SysUser
  1359. if AdminUser == nil {
  1360. br.Msg = "请登录"
  1361. br.ErrMsg = "请登录,用户信息为空"
  1362. br.Ret = 408
  1363. return
  1364. }
  1365. keyWord := this.GetString("KeyWord")
  1366. if keyWord == "" {
  1367. br.ErrMsg = "请输入搜索关键词"
  1368. return
  1369. }
  1370. resp := new(cygx.CygxActivitySearcCompanyListResp)
  1371. list, err := cygx.GetCygxActivitySearcCompanyList(keyWord)
  1372. if err != nil {
  1373. br.Msg = "操作失败"
  1374. br.ErrMsg = "操作失败,Err:" + err.Error()
  1375. return
  1376. }
  1377. if len(list) == 0 {
  1378. list = make([]*cygx.CygxActivitySearcCompanyResp, 0)
  1379. }
  1380. resp.List = list
  1381. br.Ret = 200
  1382. br.Success = true
  1383. br.Msg = "获取成功"
  1384. br.Data = resp
  1385. }
  1386. // @Title 报名截止时间设置
  1387. // @Description 报名截止时间设置接口
  1388. // @Success Ret=200
  1389. // @router /activity/deadlineSet [get]
  1390. func (this *ActivityCoAntroller) DeadlineSet() {
  1391. br := new(models.BaseResponse).Init()
  1392. defer func() {
  1393. this.Data["json"] = br
  1394. this.ServeJSON()
  1395. }()
  1396. AdminUser := this.SysUser
  1397. if AdminUser == nil {
  1398. br.Msg = "请登录"
  1399. br.ErrMsg = "请登录,SysUser Is Empty"
  1400. return
  1401. }
  1402. list := make([]cygx.SendGroupStr, 0)
  1403. list = append(list, cygx.SendGroupStr{
  1404. Id: "1",
  1405. Name: "同报名截止时间",
  1406. })
  1407. list = append(list, cygx.SendGroupStr{
  1408. Id: "2",
  1409. Name: "活动开始前24小时",
  1410. })
  1411. list = append(list, cygx.SendGroupStr{
  1412. Id: "3",
  1413. Name: "活动开始前48小时",
  1414. })
  1415. br.Ret = 200
  1416. br.Success = true
  1417. br.Data = list
  1418. }