activity.go 46 KB

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