task.go 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. package services
  2. import (
  3. "context"
  4. "errors"
  5. "fmt"
  6. "github.com/beego/beego/v2/task"
  7. "hongze/hongze_task/models"
  8. "hongze/hongze_task/services/company_contract"
  9. "hongze/hongze_task/services/data"
  10. "hongze/hongze_task/utils"
  11. "strconv"
  12. "strings"
  13. "sync"
  14. "time"
  15. )
  16. func Task() {
  17. fmt.Println("task start")
  18. //如果是生产环境,才需要走这些任务
  19. if utils.RunMode == "release" {
  20. releaseTask()
  21. }
  22. //每日定时合同处理
  23. handleCompanyContract := task.NewTask("handleCompanyContract", "0 1 2 * * *", company_contract.HandleCompanyContract)
  24. task.AddTask("每日定时合同处理", handleCompanyContract)
  25. //正式->试用
  26. companyTryOut := task.NewTask("companyTryOut", "0 5 2 * * *", CompanyTryOut)
  27. task.AddTask("正式->试用", companyTryOut)
  28. //试用->冻结
  29. companyFreeze := task.NewTask("companyFreeze", "0 10 2 * * *", CompanyFreeze)
  30. task.AddTask("试用->冻结", companyFreeze)
  31. //冻结->流失
  32. companyLoss := task.NewTask("companyLoss", "0 20 2 * * *", CompanyLoss)
  33. task.AddTask("冻结->流失", companyLoss)
  34. //用户产品权限试用-->关闭
  35. companyReportPermissionClose := task.NewTask("companyReportPermissionClose", "0 30 2 * * *", CompanyReportPermissionClose)
  36. task.AddTask("用户产品权限试用-->关闭", companyReportPermissionClose)
  37. //删除日志记录
  38. //deleteReportSaveLog := task.NewTask("deleteReportSaveLog", "0 30 08 * * *", DeleteReportSaveLog)
  39. //task.AddTask("deleteReportSaveLog", deleteReportSaveLog)
  40. // 存量客户数据统计
  41. stackCompanyStatistic := task.NewTask("stackCompanyStatistic", "0 35 2 * * *", StackCompanyStatistic)
  42. task.AddTask("存量客户数据统计", stackCompanyStatistic)
  43. // 定时往同花顺推送报告
  44. sendWaitReport := task.NewTask("sendWaitReport", "0 */1 * * * * ", SendWaitReport)
  45. task.AddTask("定时往同花顺推送报告", sendWaitReport)
  46. // 研报电话会提醒
  47. ybTelRemind := task.NewTask("YbTelRemind", "0 */1 * * * * ", YbTelRemind)
  48. task.AddTask("研报电话会提醒", ybTelRemind)
  49. // 研报沙龙提醒
  50. ybSalonRemind := task.NewTask("ybSalonRemind", "0 */1 * * * * ", YbSalonRemind)
  51. task.AddTask("研报沙龙提醒", ybSalonRemind)
  52. //GetHistoryLzProductDetail()
  53. //GetLzPrice()
  54. //GetLzProductDetail()
  55. //LzExportExcel()
  56. //GetLzProductList()GetLzProductDetail
  57. // 定时新增手工指标数据提醒
  58. addEdbTask := task.NewTask("sendWaitReport", "1 0 2 * * * ", AddEdbTask)
  59. task.AddTask("定时新增手工指标数据提醒", addEdbTask)
  60. //每次服务启动都需要执行一次的
  61. _ = AddEdbTask(nil)
  62. //每日用户阅读数据统计
  63. statisticsUserView := task.NewTask("statisticsUserView", "0 5 2 * * *", StatisticsUserView)
  64. task.AddTask("每日用户阅读数据统计", statisticsUserView)
  65. task.StartTask()
  66. fmt.Println("task end")
  67. }
  68. //生产环境需要走的任务
  69. func releaseTask() {
  70. //隆众调研指标获取
  71. getLzSurveyProduct := task.NewTask("getLzSurveyProduct", "0 5 08-19/1 * * * ", GetLzSurveyProduct)
  72. task.AddTask("getLzSurveyProduct", getLzSurveyProduct)
  73. //隆众调研指标数据获取
  74. getLzSurveyProductData := task.NewTask("getLzSurveyProductData", "0 10 08-19/1 * * * ", GetLzSurveyProductData)
  75. task.AddTask("getLzSurveyProductData", getLzSurveyProductData)
  76. //发送邮件
  77. sendEmail := task.NewTask("sendEmail", "0 0 12 * * 0 ", SendEmail)
  78. task.AddTask("sendEmail", sendEmail)
  79. //oneMinute := task.NewTask("oneMinute", "0 */1 7-23 * * * ", OneMinute)
  80. //task.AddTask("oneMinute", oneMinute)
  81. // 正式/试用 用户到期提醒
  82. companyRemind := task.NewTask("companyRemind", "0 30 08 * * *", CompanyRemind)
  83. task.AddTask("companyRemind", companyRemind)
  84. //潜在客户
  85. freeViewerDetail := task.NewTask("freeViewerDetail", "0 0 9 * * 1 ", FreeViewerDetail)
  86. task.AddTask("潜在客户", freeViewerDetail)
  87. //刷新指标数据
  88. refreshData := task.NewTask("refreshData", "0 1 0,19 * * *", RefreshData)
  89. task.AddTask("refreshData", refreshData)
  90. //刷新交易所指标数据
  91. refreshTradeData := task.NewTask("refreshData", "0 1 4 * * *", RefreshTradeData)
  92. task.AddTask("refreshTradeData", refreshTradeData)
  93. //刷新指标基础数据
  94. refreshBaseData := task.NewTask("refreshBaseData", "0 */30 * * * * ", RefreshBaseData)
  95. task.AddTask("refreshBaseData", refreshBaseData)
  96. //同步弘则数据库中来自,钢联,隆众,有色,人工等基础数据--每隔五分钟,同步一次最新数据
  97. syncBaseData := task.NewTask("syncBaseData", "0 */5 * * * * ", SyncBaseData)
  98. task.AddTask("syncBaseData", syncBaseData)
  99. syncBaseDataExt := task.NewTask("syncBaseDataExt", "0 */30 * * * * ", SyncBaseDataExt)
  100. task.AddTask("syncBaseDataExt", syncBaseDataExt)
  101. // 定时往同花顺同步微信群的截止日期(凌晨4点)
  102. syncThsWxGroupEveryDay := task.NewTask("syncThsWxGroupEveryDay", "0 1 4 * * * ", SyncWxGroupEveryDay)
  103. task.AddTask("定时往同花顺同步微信群的截止日期", syncThsWxGroupEveryDay)
  104. checkDataInterface := task.NewTask("checkDataInterface", "0 */2 * * * * ", data.CheckDataInterface)
  105. task.AddTask("checkDataInterface", checkDataInterface)
  106. checkPbDataInterface := task.NewTask("checkPbDataInterface", "0 */2 * * * * ", data.CheckPbDataInterface)
  107. task.AddTask("checkPbDataInterface", checkPbDataInterface)
  108. //初始化指标更新状态
  109. resetEdbInfoIsUpdate := task.NewTask("resetEdbInfoIsUpdate", "0 0 0 * * *", data.ResetEdbInfoIsUpdate)
  110. task.AddTask("resetEdbInfoIsUpdate", resetEdbInfoIsUpdate)
  111. }
  112. func TaskTest() {
  113. fmt.Println("The task is start")
  114. //companyReportPermissionClose := task.NewTask("companyTryOut", "0 5 0 * * *", CompanyReportPermissionClose)
  115. companyReportPermissionClose := task.NewTask("companyReportPermissionClose", "0/30 * * * * *", CompanyReportPermissionClose)
  116. task.AddTask("用户产品权限试用-->关闭", companyReportPermissionClose)
  117. task.StartTask()
  118. fmt.Println("The task is end")
  119. }
  120. func SendEmail(cont context.Context) (err error) {
  121. //报告历史访问次数
  122. go ReportViewTimes()
  123. //报告访问详情
  124. go ReportViewDetail()
  125. //用户权限统计
  126. go HongzeUsers()
  127. return
  128. }
  129. func OneMinute(cont context.Context) (err error) {
  130. //日度
  131. //FrequencyByDay()
  132. //周度
  133. FrequencyByWeek()
  134. //月度
  135. FrequencyByMonth()
  136. return
  137. }
  138. func RefreshData(cont context.Context) (err error) {
  139. wg := sync.WaitGroup{}
  140. wg.Add(7)
  141. //wind
  142. go data.RefreshDataFromWind(&wg)
  143. //同花顺
  144. go data.RefreshDataFromThs(&wg)
  145. //彭博
  146. go data.RefreshDataFromPb(&wg)
  147. //手工数据
  148. go data.RefreshDataFromManual(&wg)
  149. //隆众数据
  150. go data.RefreshDataFromLz(&wg)
  151. //有色
  152. go data.RefreshDataFromYs(&wg)
  153. //钢联
  154. go data.RefreshDataFromGl(&wg)
  155. wg.Wait()
  156. //计算指标
  157. data.RefreshDataFromCalculateAll()
  158. time.Sleep(2 * time.Second)
  159. data.RefreshNotice()
  160. return
  161. }
  162. // RefreshTradeData 刷新交易所数据
  163. func RefreshTradeData(cont context.Context) (err error) {
  164. wg := sync.WaitGroup{}
  165. wg.Add(5)
  166. //郑商所
  167. go data.RefreshDataFromZz(&wg)
  168. //上期所
  169. go data.RefreshDataFromSh(&wg)
  170. //上期能源
  171. go data.RefreshDataFromShfe(&wg)
  172. //中金所
  173. go data.RefreshDataFromCffex(&wg)
  174. //大商所
  175. go data.RefreshDataFromDl(&wg)
  176. wg.Wait()
  177. //计算指标
  178. data.RefreshDataFromCalculateAll()
  179. return
  180. }
  181. //刷新基础数据
  182. func RefreshBaseData(cont context.Context) (err error) {
  183. now := time.Now()
  184. if now.Hour() == 0 || now.Hour() == 19 {
  185. return nil
  186. }
  187. //同步有色基础指标数据
  188. go data.SyncSmmIndexDataBase()
  189. return
  190. }
  191. //刷新基础数据
  192. func SyncBaseData(cont context.Context) (err error) {
  193. now := time.Now()
  194. if now.Hour() == 0 || now.Hour() == 19 {
  195. return nil
  196. }
  197. //同步钢联基础数据
  198. go data.SyncGlDataBase()
  199. return
  200. }
  201. //刷新基础数据
  202. func SyncBaseDataExt(cont context.Context) (err error) {
  203. now := time.Now()
  204. if now.Hour() == 0 || now.Hour() == 19 {
  205. return nil
  206. }
  207. //同步隆众基础数据
  208. go data.SyncLzDataBase()
  209. //同步手工数据
  210. go data.SyncManualDataBase()
  211. //同步有色基础数据
  212. go data.SyncSmmDataBase()
  213. //刷新图表中,指标的最新日期
  214. go data.SetChartEdbEndDate()
  215. return
  216. }
  217. //func RefreshCalculateData(cont context.Context) (err error) {
  218. // //计算指标
  219. // go data.RefreshDataFromCalculateAll()
  220. // //刷新公历转农历数据
  221. // //go data.RefreshDataFromQuarterAll()
  222. // return
  223. //}
  224. //func Task() {
  225. // fmt.Println("start")
  226. // data.RefreshDataFromCalculateAll()
  227. // //startDate := time.Now().AddDate(-30, 0, 0).UnixNano() / 1e6
  228. //
  229. // //fmt.Println(startDate)
  230. // //fmt.Println(endDate)
  231. // fmt.Println("end")
  232. //}
  233. /*
  234. endData:=time.Now().UnixNano()/1e6
  235. dateTime:=time.Unix(endData/1000,0)
  236. fmt.Println(dateTime)
  237. */
  238. // EdbTaskNameMap 手工指标定时任务名称map集合
  239. var EdbTaskNameMap map[string]map[string]bool
  240. // EdbTaskNameChannel 手工指标定时任务名称channel
  241. var EdbTaskNameChannel chan string
  242. // EdbTaskStopChannel 手工指标定时任务停止channel
  243. var EdbTaskStopChannel chan string
  244. // EdbTaskRunNum 手工指标定时任务开始次数
  245. var EdbTaskRunNum int
  246. // AddEdbTask 新增手工指标数据录入提醒
  247. func AddEdbTask(cont context.Context) (err error) {
  248. //失败列表
  249. failList := make([]string, 0)
  250. defer func() {
  251. if len(failList) > 0 {
  252. fmt.Println("提醒失败:")
  253. for _, v := range failList {
  254. fmt.Println(v)
  255. }
  256. }
  257. }()
  258. list, err := models.GetEdbInfoByFrequencyNotDay()
  259. if err != nil {
  260. fmt.Println("查询获取频度非日度 且 提醒时间不为空 的指标数据失败,Err:", err.Error())
  261. }
  262. //如果还没有初始化map,那么先初始
  263. if EdbTaskNameMap == nil {
  264. EdbTaskNameMap = make(map[string]map[string]bool)
  265. }
  266. tmpEdbTaskNameMap := make(map[string]bool)
  267. // 今天的日期字符串(格式:2021-10-25)
  268. todayStr := time.Now().Format(utils.FormatDate)
  269. //当前周的周一与周日
  270. nowWeekFirstDay := utils.GetNowWeekMonday()
  271. nowWeekLastDay := utils.GetNowWeekLastDay()
  272. //当前月的一号与最后一天
  273. nowMonthFirstDay := utils.GetNowMonthFirstDay()
  274. nowMonthLastDay := utils.GetNowMonthLastDay()
  275. //当前季度的第一天与最后一天
  276. nowQuarterFirstDay := utils.GetNowQuarterFirstDay()
  277. nowQuarterLastDay := utils.GetNowQuarterLastDay()
  278. //当前半年的第一天与最后一天
  279. nowHalfYearFirstDay := utils.GetNowHalfYearFirstDay()
  280. nowHalfYearLastDay := utils.GetNowHalfYearLastDay()
  281. // 当前年的第一天与最后一天
  282. nowYearFirstDay := utils.GetNowYearFirstDay()
  283. nowYearLastDay := utils.GetNowYearLastDay()
  284. debugNoticeUserId := 0 //测试环境,需要发送消息的用户
  285. if utils.RunMode == "debug" {
  286. tmpWxUser, tmpErr := models.GetWxUserByMobile("17634786714")
  287. if tmpErr == nil && tmpWxUser != nil {
  288. //debugNoticeUserId = 44078 //测试环境的话,发送邮箱给颜鹏
  289. debugNoticeUserId = int(tmpWxUser.UserId) //测试环境的话,发送邮箱给嘉豪
  290. }
  291. }
  292. //task.globalTaskManager.adminTaskList
  293. for _, edb := range list {
  294. tmpEdb := edb //指标信息
  295. isNotice := false //是否需要提醒
  296. noticeTime := "12:00:00" //提醒时间
  297. var dataDtTime time.Time
  298. edbData, tmpErr := models.GetLastEdbdataInfo(edb.TradeCode)
  299. if tmpErr != nil {
  300. if tmpErr.Error() != utils.ErrNoRow() {
  301. failList = append(failList, fmt.Sprint(edb.TradeCode, "失败,Err:", tmpErr.Error()))
  302. continue
  303. }
  304. }
  305. //如果确实是有数据的
  306. if edbData != nil {
  307. tmpDataDtTime, _ := time.ParseInLocation(utils.FormatDate, edbData.Dt, time.Now().Location())
  308. dataDtTime = tmpDataDtTime
  309. }
  310. switch edb.Frequency {
  311. case "周度":
  312. modifyDate := nowWeekLastDay //下次更新日期
  313. if edb.NoticeTime != "" {
  314. addDay := 7
  315. noticeArr := strings.Split(edb.NoticeTime, " ")
  316. if len(noticeArr) >= 2 {
  317. noticeTime = noticeArr[1]
  318. }
  319. noticeWeek := noticeArr[0]
  320. switch noticeWeek {
  321. case "周一":
  322. addDay = 1
  323. case "周二":
  324. addDay = 2
  325. case "周三":
  326. addDay = 3
  327. case "周四":
  328. addDay = 4
  329. case "周五":
  330. addDay = 5
  331. case "周六":
  332. addDay = 6
  333. case "周日":
  334. addDay = 7
  335. }
  336. modifyDate = modifyDate.AddDate(0, 0, addDay-7)
  337. }
  338. //如果正好是提醒日,同时本周没有过记录,那么需要提醒
  339. if todayStr == modifyDate.Format(utils.FormatDate) && !nowWeekFirstDay.Before(dataDtTime) {
  340. isNotice = true
  341. }
  342. case "月度":
  343. addDay := 0
  344. modifyDate := nowMonthLastDay //下次更新日期
  345. if edb.NoticeTime != "" {
  346. strArr := strings.Split(edb.NoticeTime, "日")
  347. if len(strArr) >= 2 {
  348. noticeTime = strArr[1]
  349. }
  350. tmpAddDay, tmpErr := strconv.Atoi(strArr[0])
  351. if tmpErr != nil {
  352. continue
  353. }
  354. addDay = tmpAddDay - 1
  355. modifyDate = nowMonthFirstDay.AddDate(0, 0, addDay)
  356. }
  357. //如果正好是提醒日,同时本月没有过记录,那么需要提醒
  358. if todayStr == modifyDate.Format(utils.FormatDate) && !nowMonthFirstDay.Before(dataDtTime) {
  359. isNotice = true
  360. }
  361. case "季度":
  362. //提醒时间
  363. if edb.NoticeTime != "" {
  364. noticeArr := strings.Split(edb.NoticeTime, " ")
  365. if len(noticeArr) >= 2 {
  366. noticeTime = noticeArr[1]
  367. }
  368. }
  369. //每季度更新数据时间
  370. //如果正好是提醒日(每季度最后一天),同时本季度没有过记录,那么需要提醒
  371. if todayStr == nowQuarterLastDay.Format(utils.FormatDate) && !nowQuarterFirstDay.Before(dataDtTime) {
  372. isNotice = true
  373. }
  374. case "半年度":
  375. //提醒时间
  376. if edb.NoticeTime != "" {
  377. noticeArr := strings.Split(edb.NoticeTime, " ")
  378. if len(noticeArr) >= 2 {
  379. noticeTime = noticeArr[1]
  380. }
  381. }
  382. //每半年度更新数据时间
  383. //如果正好是提醒日(每半年度最后一天),同时本半年度没有过记录,那么需要提醒
  384. if todayStr == nowHalfYearLastDay.Format(utils.FormatDate) && !nowHalfYearFirstDay.Before(dataDtTime) {
  385. isNotice = true
  386. }
  387. case "年度":
  388. //提醒时间
  389. if edb.NoticeTime != "" {
  390. noticeArr := strings.Split(edb.NoticeTime, " ")
  391. if len(noticeArr) >= 2 {
  392. noticeTime = noticeArr[1]
  393. }
  394. }
  395. //每年度更新数据时间
  396. //如果正好是提醒日(每年度最后一天),同时半年度没有过记录,那么需要提醒
  397. if todayStr == nowYearLastDay.Format(utils.FormatDate) && !nowYearFirstDay.Before(dataDtTime) {
  398. isNotice = true
  399. }
  400. }
  401. if isNotice {
  402. taskName := "edb_task_" + todayStr + ":" + fmt.Sprint(edb.TradeCode)
  403. //fmt.Println(taskName, ";", edb.SecName)
  404. //定时任务
  405. tmpTaskFunc := func(ctx context.Context) (funcErr error) {
  406. //方法执行结束后,移除定时任务
  407. defer func() {
  408. EdbTaskNameChannel <- taskName
  409. }()
  410. // 匿名方法内判断是否发送提醒,因为可能时间到的时候,发现
  411. funcIsNotice := false
  412. // 再次获取指标数据详情
  413. edbData, tmpErr := models.GetLastEdbdataInfo(tmpEdb.TradeCode)
  414. if tmpErr != nil {
  415. if tmpErr.Error() != utils.ErrNoRow() {
  416. funcErr = tmpErr
  417. return
  418. }
  419. }
  420. if utils.RunMode == "debug" && debugNoticeUserId > 0 {
  421. tmpEdb.UserId = debugNoticeUserId //测试环境的话,发送邮箱给嘉豪
  422. }
  423. //数据过期时间
  424. var funcDataDtTime time.Time
  425. //如果确实是有数据的
  426. if edbData != nil {
  427. tmpDataDtTime, _ := time.ParseInLocation(utils.FormatDate, edbData.Dt, time.Now().Location())
  428. funcDataDtTime = tmpDataDtTime
  429. }
  430. switch tmpEdb.Frequency {
  431. case "周度":
  432. modifyDate := nowWeekLastDay //下次更新日期
  433. if tmpEdb.NoticeTime != "" {
  434. addDay := 7
  435. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  436. if len(noticeArr) >= 2 {
  437. noticeTime = noticeArr[1]
  438. }
  439. noticeWeek := noticeArr[0]
  440. switch noticeWeek {
  441. case "周一":
  442. addDay = 1
  443. case "周二":
  444. addDay = 2
  445. case "周三":
  446. addDay = 3
  447. case "周四":
  448. addDay = 4
  449. case "周五":
  450. addDay = 5
  451. case "周六":
  452. addDay = 6
  453. case "周日":
  454. addDay = 7
  455. }
  456. modifyDate = modifyDate.AddDate(0, 0, addDay-7)
  457. }
  458. //如果正好是提醒日,同时本周没有过记录,那么需要提醒
  459. if todayStr == modifyDate.Format(utils.FormatDate) && !nowWeekFirstDay.Before(funcDataDtTime) {
  460. funcIsNotice = true
  461. }
  462. case "月度":
  463. addDay := 0
  464. modifyDate := nowMonthLastDay //下次更新日期
  465. if tmpEdb.NoticeTime != "" {
  466. strArr := strings.Split(tmpEdb.NoticeTime, "日")
  467. if len(strArr) >= 2 {
  468. noticeTime = strArr[1]
  469. }
  470. tmpAddDay, tmpErr := strconv.Atoi(strArr[0])
  471. if tmpErr != nil {
  472. funcErr = tmpErr
  473. }
  474. addDay = tmpAddDay - 1
  475. modifyDate = nowMonthFirstDay.AddDate(0, 0, addDay)
  476. }
  477. //如果正好是提醒日,同时本月没有过记录,那么需要提醒
  478. if todayStr == modifyDate.Format(utils.FormatDate) && !nowMonthFirstDay.Before(funcDataDtTime) {
  479. funcIsNotice = true
  480. }
  481. case "季度":
  482. //提醒时间
  483. if tmpEdb.NoticeTime != "" {
  484. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  485. if len(noticeArr) >= 2 {
  486. noticeTime = noticeArr[1]
  487. }
  488. }
  489. //每季度更新数据时间
  490. //如果正好是提醒日(每季度最后一天),同时本季度没有过记录,那么需要提醒
  491. if todayStr == nowQuarterLastDay.Format(utils.FormatDate) && !nowQuarterFirstDay.Before(funcDataDtTime) {
  492. funcIsNotice = true
  493. }
  494. case "半年度":
  495. //提醒时间
  496. if tmpEdb.NoticeTime != "" {
  497. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  498. if len(noticeArr) >= 2 {
  499. noticeTime = noticeArr[1]
  500. }
  501. }
  502. //每半年度更新数据时间
  503. //如果正好是提醒日(每半年度最后一天),同时本半年度没有过记录,那么需要提醒
  504. if todayStr == nowHalfYearLastDay.Format(utils.FormatDate) && !nowHalfYearFirstDay.Before(funcDataDtTime) {
  505. funcIsNotice = true
  506. }
  507. case "年度":
  508. //提醒时间
  509. if tmpEdb.NoticeTime != "" {
  510. noticeArr := strings.Split(tmpEdb.NoticeTime, " ")
  511. if len(noticeArr) >= 2 {
  512. noticeTime = noticeArr[1]
  513. }
  514. }
  515. //每年度更新数据时间
  516. //如果正好是提醒日(每年度最后一天),同时半年度没有过记录,那么需要提醒
  517. if todayStr == nowYearLastDay.Format(utils.FormatDate) && !nowYearFirstDay.Before(funcDataDtTime) {
  518. funcIsNotice = true
  519. }
  520. }
  521. //fmt.Println(tmpEdb.TradeCode, " funcIsNotice:", funcIsNotice)
  522. //如果还是要提醒
  523. if funcIsNotice {
  524. //用户微信openid列表数据
  525. openIdList := make([]*models.OpenIdList, 0)
  526. //获取用户信息
  527. isAdmin := true
  528. admin, err := models.GetAdminByAdminId(tmpEdb.UserId)
  529. if err != nil {
  530. if err.Error() == utils.ErrNoRow() {
  531. isAdmin = false
  532. } else {
  533. return err
  534. }
  535. }
  536. if admin == nil {
  537. isAdmin = false
  538. }
  539. if isAdmin {
  540. if admin.Mobile == "" {
  541. } else {
  542. wxUser, err := models.GetWxUserByMobile(admin.Mobile)
  543. if err != nil {
  544. return err
  545. }
  546. if wxUser == nil {
  547. funcErr = errors.New("用户信息不存在:mobile:" + admin.Mobile)
  548. return err
  549. }
  550. tmpOpenidList, err := models.GetUserOpenidListByUserId(int(wxUser.UserId))
  551. if err != nil {
  552. return err
  553. }
  554. openIdList = tmpOpenidList
  555. }
  556. } else {
  557. tmpOpenidList, err := models.GetUserOpenidListByUserId(tmpEdb.UserId)
  558. if err != nil {
  559. return err
  560. }
  561. openIdList = tmpOpenidList
  562. }
  563. //发送消息
  564. if len(openIdList) <= 0 {
  565. funcErr = errors.New("openId 列表为空" + strconv.Itoa(tmpEdb.UserId))
  566. return
  567. }
  568. first := "数据录入提醒"
  569. keyword1 := tmpEdb.SecName
  570. keyword2 := "每周 " + edb.NoticeTime
  571. remark := tmpEdb.SecName + "该更新了"
  572. err = SendWxMsgWithFrequency(first, keyword1, keyword2, remark, openIdList)
  573. if err != nil {
  574. return err
  575. }
  576. //发送成功,记录发送日志
  577. {
  578. sendRecord := new(models.EdbinfoSendMsgRecord)
  579. sendRecord.UserId = tmpEdb.UserId
  580. sendRecord.TradeCode = tmpEdb.TradeCode
  581. sendRecord.CreateTime = time.Now()
  582. err = models.AddEdbinfoSendMsgRecord(sendRecord)
  583. if err != nil {
  584. return err
  585. }
  586. }
  587. }
  588. return
  589. }
  590. //添加定时任务(没有设置通知时间就不进行定时任务通知了)
  591. spec := ``
  592. if noticeTime != "" {
  593. noticeArr := strings.Split(noticeTime, ":")
  594. if len(noticeArr) == 3 {
  595. //spec = ` */20 * * * * * `
  596. spec = fmt.Sprintf(` %s %s %s * * * `, noticeArr[2], noticeArr[1], noticeArr[0])
  597. //定时任务开始的时间
  598. tmpTask := task.NewTask(taskName, spec, tmpTaskFunc)
  599. task.AddTask(taskName, tmpTask)
  600. tmpEdbTaskNameMap[taskName] = true
  601. }
  602. }
  603. }
  604. }
  605. //将当天的手工指标加入到手工指标池去
  606. EdbTaskNameMap[todayStr] = tmpEdbTaskNameMap
  607. //开启协程,用来清除定时任务
  608. go deleteTask()
  609. //如果当前定时任务执行次数大于0次,那么需要往手工指标定时任务停止channel写入数据,用来关闭昨天没有执行的的定时任务
  610. if EdbTaskRunNum > 0 {
  611. //清除昨天的数据
  612. EdbTaskStopChannel <- time.Now().AddDate(0, 0, -1).Format(utils.FormatDate)
  613. }
  614. //手工指标定时任务开始次数累加
  615. EdbTaskRunNum++
  616. return
  617. //fmt.Println(task.NewMapSorter())
  618. }
  619. // deleteTask 清除已通知的任务
  620. func deleteTask() {
  621. for {
  622. select {
  623. case taskName := <-EdbTaskNameChannel:
  624. task.DeleteTask(taskName)
  625. delete(EdbTaskNameMap, taskName)
  626. case dayStr := <-EdbTaskStopChannel: //收到停止信号,先清除掉那一天的定时任务,
  627. for taskName := range EdbTaskNameMap[dayStr] {
  628. task.DeleteTask(taskName)
  629. delete(EdbTaskNameMap, taskName)
  630. }
  631. break
  632. }
  633. }
  634. }