cow_cron.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. package crontab
  2. import (
  3. "context"
  4. "fmt"
  5. "kpt-pasture/model"
  6. "kpt-pasture/module/backend"
  7. "kpt-pasture/util"
  8. "time"
  9. "gorm.io/gorm"
  10. pasturePb "gitee.com/xuyiping_admin/go_proto/proto/go/backend/cow"
  11. "gitee.com/xuyiping_admin/pkg/logger/zaplog"
  12. "gitee.com/xuyiping_admin/pkg/xerr"
  13. "go.uber.org/zap"
  14. )
  15. const (
  16. UpdateCowInfo = "UpdateCowInfo"
  17. ImmunizationPlan = "ImmunizationPlan"
  18. SameTimePlan = "SameTimePlan"
  19. WorkOrderMaster = "WorkOrderMaster"
  20. SystemBasicCrontab = "SystemBasicCrontab"
  21. NeckRingOriginal = "NeckRingOriginal"
  22. )
  23. // GenerateAsynqWorkOrder 异步生成工作单
  24. func (e *Entry) GenerateAsynqWorkOrder() error {
  25. if ok := e.IsExistCrontabLog(WorkOrderMaster); ok {
  26. return nil
  27. }
  28. defer func() {
  29. e.CreateCrontabLog(WorkOrderMaster)
  30. }()
  31. workOrderList := make([]*model.WorkOrderMaster, 0)
  32. if err := e.DB.Where("is_show = ?", pasturePb.IsShow_Ok).Find(&workOrderList).Error; err != nil {
  33. return err
  34. }
  35. for _, workOrder := range workOrderList {
  36. timeUnix, err := util.ConvertParseLocalUnix(workOrder.ExecTime)
  37. if timeUnix <= 0 || err != nil {
  38. zaplog.Error("crontab", zap.Any("GenerateWorkOrder", err), zap.Any("execTime", workOrder.ExecTime))
  39. continue
  40. }
  41. nowTime := time.Now().Unix()
  42. if timeUnix < nowTime {
  43. continue
  44. }
  45. execTime := timeUnix - nowTime
  46. task := model.NewTaskWorkOrderPayload(workOrder.Id, time.Duration(execTime)*time.Second)
  47. if _, err = e.AsynqClient.CtxEnqueue(context.Background(), task); err != nil {
  48. zaplog.Error("PushMessage CtxEnqueue", zap.Any("Err", err))
  49. }
  50. }
  51. return nil
  52. }
  53. // Indicators 指标维护
  54. func (e *Entry) Indicators() error {
  55. indicatorsRemarksList := make([]*model.IndicatorsDetails, 0)
  56. if err := e.DB.Model(new(model.IndicatorsDetails)).
  57. Where("is_show = ?", pasturePb.IsShow_Ok).
  58. Find(&indicatorsRemarksList).Error; err != nil {
  59. return err
  60. }
  61. nowTime := time.Now().Format(model.LayoutMonth)
  62. for _, v := range indicatorsRemarksList {
  63. switch v.Kind {
  64. case "all_cow":
  65. pastureIdAllCow := e.FindPastureAllCow()
  66. for pastureId, value := range pastureIdAllCow {
  67. e.UpdatePastureIndicators(pastureId, nowTime, v.Kind, fmt.Sprintf("%d", value))
  68. }
  69. case "calving_interval":
  70. }
  71. }
  72. return nil
  73. }
  74. // UpdateCowInfo 牛只基本信息维护
  75. func (e *Entry) UpdateCowInfo() error {
  76. cowList := make([]*model.Cow, 0)
  77. if err := e.DB.Model(new(model.Cow)).
  78. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  79. Find(&cowList).Error; err != nil {
  80. return err
  81. }
  82. if ok := e.IsExistCrontabLog(UpdateCowInfo); ok {
  83. return nil
  84. }
  85. defer func() {
  86. e.CreateCrontabLog(UpdateCowInfo)
  87. }()
  88. for _, cow := range cowList {
  89. cow.EventInfoUpdate()
  90. if err := e.DB.Model(new(model.Cow)).
  91. Select("day_age", "calving_age", "pregnancy_age", "admission_age", "abortion_age", "cow_type").
  92. Where("id = ?", cow.Id).
  93. Updates(cow).Error; err != nil {
  94. zaplog.Error("Crontab", zap.Any("UpdateCowDayAge", err))
  95. }
  96. }
  97. return nil
  98. }
  99. // ImmunizationPlan 免疫计划,生成工作单
  100. func (e *Entry) ImmunizationPlan() error {
  101. if ok := e.IsExistCrontabLog(ImmunizationPlan); ok {
  102. return nil
  103. }
  104. planList := make([]*model.ImmunizationPlan, 0)
  105. if err := e.DB.Model(new(model.ImmunizationPlan)).
  106. Where("is_show = ?", pasturePb.IsShow_Ok).
  107. Order("pasture_id").
  108. Find(&planList).Error; err != nil {
  109. return xerr.WithStack(err)
  110. }
  111. var todayCount int32 = 0
  112. nowTime := time.Now().Unix()
  113. for _, plan := range planList {
  114. cowList := make([]*model.Cow, 0)
  115. pref := e.DB.Table(fmt.Sprintf("%s as a", new(model.Cow).TableName())).
  116. Select("a.*").
  117. Where("a.pasture_id = ?", plan.PastureId).
  118. Where("a.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  119. Where("NOT EXISTS ( select 1 from event_immunization_plan b where b.pen_id = a.id and b.status = ? and b.plan_day > ?)", plan.Id, pasturePb.IsShow_No, nowTime)
  120. if plan.CowType > 0 {
  121. pref.Where("a.cow_type = ?", plan.CowType)
  122. }
  123. switch plan.Conditions {
  124. case pasturePb.ImmunizationConditions_Days_Age:
  125. pref.Where("a.day_age = ?", plan.Value)
  126. case pasturePb.ImmunizationConditions_Days_After_Delivery:
  127. pref.Where("a.calving_age = ?", plan.Value)
  128. case pasturePb.ImmunizationConditions_Days_Of_Pregnancy:
  129. pref.Where("a.pregnancy_age = ?", plan.Value).
  130. Where("a.is_pregnant = ?", pasturePb.IsShow_Ok)
  131. case pasturePb.ImmunizationConditions_Month:
  132. // todo 待实现月份
  133. continue
  134. case pasturePb.ImmunizationConditions_Admission_Days:
  135. pref.Where("a.admission_age = ?", plan.Value)
  136. case pasturePb.ImmunizationConditions_Other_Vaccine_After:
  137. if plan.ImmunizationPlanId > 0 {
  138. pref.Joins("INNER JOIN event_immunization_plan as b ON b.immunization_plan_id = ? ", plan.ImmunizationPlanId).
  139. Where("b.cow_id = a.id").
  140. Where("DATE_ADD(b.reality_time, INTERVAL ? DAY) = ?", plan.Value, time.Now().Format(model.LayoutDate2)).
  141. Where("b.status = ?", pasturePb.IsShow_Ok)
  142. }
  143. }
  144. if err := pref.Find(&cowList).Error; err != nil {
  145. return xerr.WithStack(err)
  146. }
  147. if len(cowList) <= 0 {
  148. continue
  149. }
  150. todayCount += int32(len(cowList))
  151. penList, _ := e.GetPenMapList()
  152. newImmunizationPlanCowList := model.NewCowImmunizationPlanList(cowList, penList, plan)
  153. newEventItemList := model.NewEventItemList(cowList, pasturePb.CalendarType_Immunisation)
  154. if err := e.DB.Transaction(func(tx *gorm.DB) error {
  155. if err := tx.Create(newImmunizationPlanCowList).Error; err != nil {
  156. return xerr.WithStack(err)
  157. }
  158. if err := tx.Create(newEventItemList).Error; err != nil {
  159. return xerr.WithStack(err)
  160. }
  161. return nil
  162. }); err != nil {
  163. zaplog.Error("ImmunizationPlan", zap.Any("newImmunizationPlanCowList", err), zap.Any("plan", plan), zap.Any("cowList", cowList))
  164. }
  165. var count int64 = 0
  166. if err := e.DB.Model(new(model.EventImmunizationPlan)).
  167. Where("status = ?", pasturePb.IsShow_Ok).
  168. Where("pasture_id = ?", plan.PastureId).
  169. Count(&count).Error; err != nil {
  170. zaplog.Error("Crontab", zap.Any("ImmunizationPlanDefer", err))
  171. }
  172. todayCount += int32(count)
  173. if todayCount > 0 {
  174. e.CreatedCalendar(plan.PastureId, pasturePb.CalendarType_Immunisation, time.Now().Format(model.LayoutDate2), todayCount)
  175. }
  176. e.CreateCrontabLog(ImmunizationPlan)
  177. }
  178. zaplog.Info("ImmunizationPlan", zap.Any("todayCount", todayCount))
  179. return nil
  180. }
  181. // SameTimePlan 同期计划,生成工作单
  182. func (e *Entry) SameTimePlan() error {
  183. if ok := e.IsExistCrontabLog(SameTimePlan); ok {
  184. return nil
  185. }
  186. sameTimeList := make([]*model.SameTime, 0)
  187. if err := e.DB.Model(new(model.SameTime)).
  188. Where("is_show = ?", pasturePb.IsShow_Ok).
  189. Order("pasture_id").
  190. Find(&sameTimeList).Error; err != nil {
  191. return xerr.WithStack(err)
  192. }
  193. if len(sameTimeList) < 0 {
  194. return nil
  195. }
  196. defer func() {
  197. e.CreateCrontabLog(SameTimePlan)
  198. }()
  199. currWeek := time.Now().Weekday()
  200. for _, sameTime := range sameTimeList {
  201. if sameTime == nil {
  202. continue
  203. }
  204. if time.Weekday(sameTime.WeekType) != currWeek {
  205. continue
  206. }
  207. cowList := make([]*model.Cow, 0)
  208. pref := e.DB.Model(new(model.Cow)).
  209. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  210. Where("sex = ?", pasturePb.Genders_Male).
  211. Where("pasture_id = ?", sameTime.PastureId)
  212. switch sameTime.CowType {
  213. case pasturePb.SameTimeCowType_Breeding_Calf:
  214. pref.Where("calving_age >= ?", sameTime.PostpartumDaysStart).
  215. Where("calving_age <= ?", sameTime.PostpartumDaysEnd).
  216. Where("is_pregnant = ?", pasturePb.IsShow_No)
  217. case pasturePb.SameTimeCowType_Empty:
  218. pref.Where(
  219. e.DB.Where("breed_status = ?", pasturePb.BreedStatus_Empty).
  220. Or("breed_status = ?", pasturePb.BreedStatus_Abort),
  221. ).Where("is_pregnant = ?", pasturePb.IsShow_No)
  222. default:
  223. continue
  224. }
  225. if err := pref.Find(&cowList).Error; err != nil {
  226. zaplog.Error("crontab", zap.Any("err", err), zap.Any("sameTime", sameTime))
  227. return xerr.WithStack(err)
  228. }
  229. if len(cowList) <= 0 {
  230. continue
  231. }
  232. if err := e.GenerateCalendarBySameTimePlan(cowList, sameTime); err != nil {
  233. zaplog.Error("crontab",
  234. zap.Any("GenerateCalendarBySameTimePlan", err),
  235. zap.Any("cowList", cowList),
  236. zap.Any("plan", sameTime),
  237. )
  238. continue
  239. }
  240. }
  241. return nil
  242. }
  243. // UpdateSameTime 更新每天同期数据
  244. func (e *Entry) UpdateSameTime() error {
  245. calendarTypeList := backend.CalendarTypeEnumList("")
  246. showDay := time.Now().Format(model.LayoutDate2)
  247. for _, v := range calendarTypeList {
  248. count := int64(0)
  249. if err := e.DB.Model(new(model.EventCowSameTime)).
  250. Where("same_time_type = ?", v.Value).
  251. Where("status = ?", pasturePb.IsShow_No).
  252. Count(&count).Error; err != nil {
  253. zaplog.Error("crontab", zap.Any("UpdateSameTime", err), zap.Any("count", count))
  254. }
  255. if count >= 0 {
  256. continue
  257. }
  258. isExist := int64(0)
  259. if err := e.DB.Model(new(model.Calendar)).
  260. Where("calendar_type = ?", v.Value).
  261. Where("show_day = ?", showDay).
  262. Count(&isExist).Error; err != nil {
  263. continue
  264. }
  265. if isExist <= 0 {
  266. continue
  267. }
  268. if err := e.DB.Model(new(model.Calendar)).
  269. Where("calendar_type = ?", v.Value).
  270. Where("show_day = ?", showDay).
  271. Updates(map[string]interface{}{
  272. "count": count,
  273. }).Error; err != nil {
  274. continue
  275. }
  276. }
  277. return nil
  278. }
  279. // SystemBasicCrontab 基础配置计划任务
  280. func (e *Entry) SystemBasicCrontab() error {
  281. if ok := e.IsExistCrontabLog(SystemBasicCrontab); ok {
  282. return nil
  283. }
  284. defer func() {
  285. e.CreateCrontabLog(SystemBasicCrontab)
  286. }()
  287. systemBasicList := make([]*model.SystemBasic, 0)
  288. if err := e.DB.Model(new(model.SystemBasic)).
  289. Where("is_show = ?", pasturePb.IsShow_Ok).
  290. Where("name IN ?", []string{
  291. model.PregnantCheckForFirst,
  292. model.PregnantCheckForSecond,
  293. model.WeaningAge,
  294. model.PregnancyAge,
  295. }).Find(&systemBasicList).Error; err != nil {
  296. zaplog.Error("crontab", zap.Any("PregnancyCheck", err))
  297. return xerr.WithStack(err)
  298. }
  299. currWeekValue := time.Now().Weekday()
  300. for _, systemBasic := range systemBasicList {
  301. // 周执行
  302. if systemBasic.WeekValue >= 0 && time.Weekday(systemBasic.WeekValue) != currWeekValue {
  303. continue
  304. }
  305. cowList := make([]*model.Cow, 0)
  306. pref := e.DB.Model(new(model.Cow)).
  307. Where("admission_status = ? ", pasturePb.AdmissionStatus_Admission).
  308. Where("pasture_id = ?", systemBasic.PastureId)
  309. switch systemBasic.Name {
  310. case model.PregnantCheckForFirst:
  311. pref.Where("breed_status = ?", pasturePb.BreedStatus_Breeding)
  312. case model.PregnantCheckForSecond: // 过滤初检空怀的牛只
  313. pref.Where("breed_status = ?", pasturePb.BreedStatus_Pregnant)
  314. case model.WeaningAge:
  315. pref.Where("day_age = ?", systemBasic.MinValue)
  316. case model.PregnancyAge:
  317. pref.Where("pregnancy_age >= ?", systemBasic.MinValue).
  318. Where("breed_status = ?", pasturePb.BreedStatus_Pregnant)
  319. default:
  320. continue
  321. }
  322. if systemBasic.ValueType == model.ValueTypeFixed {
  323. pref.Where("day_age = ?", systemBasic.MinValue)
  324. }
  325. if systemBasic.ValueType == model.ValueTypeRange {
  326. pref.Where("day_age >= ?", systemBasic.MinValue).Where("day_age <= ?", systemBasic.MaxValue)
  327. }
  328. if err := pref.Find(&cowList).Error; err != nil {
  329. zaplog.Error("crontab", zap.Any("PregnancyCheck", err), zap.Any("cowList", cowList))
  330. continue
  331. }
  332. if len(cowList) <= 0 {
  333. continue
  334. }
  335. e.InitEventData(cowList, systemBasic)
  336. }
  337. return nil
  338. }
  339. func (e *Entry) InitEventData(cowList []*model.Cow, systemBasic *model.SystemBasic) {
  340. switch systemBasic.Name {
  341. case model.PregnantCheckForFirst, model.PregnantCheckForSecond:
  342. penMap, _ := e.GetPenMapList()
  343. eventPregnantCheckDataList := model.NewEventPregnantCheckList(systemBasic.PastureId, cowList, penMap, systemBasic.Name)
  344. if err := e.DB.Create(eventPregnantCheckDataList).Error; err != nil {
  345. zaplog.Error("crontab", zap.Any("InitEventData", err), zap.Any("eventPregnantCheckDataList", eventPregnantCheckDataList))
  346. }
  347. case model.WeaningAge:
  348. eventWeaningDataList := model.NewEventWeaningList(systemBasic.PastureId, cowList)
  349. if err := e.DB.Create(eventWeaningDataList).Error; err != nil {
  350. zaplog.Error("crontab", zap.Any("InitEventData", err), zap.Any("eventWeaningDataList", eventWeaningDataList))
  351. }
  352. case model.PregnancyAge:
  353. eventCalvingList := model.NewEventCalvingList(systemBasic.PastureId, cowList)
  354. if err := e.DB.Create(eventCalvingList).Error; err != nil {
  355. zaplog.Error("crontab", zap.Any("InitEventData", err), zap.Any("eventCalvingList", eventCalvingList))
  356. }
  357. }
  358. }