cow_cron.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  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. // UpdateCowInfo 牛只基本信息维护
  54. func (e *Entry) UpdateCowInfo() error {
  55. cowList := make([]*model.Cow, 0)
  56. if err := e.DB.Model(new(model.Cow)).
  57. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  58. Find(&cowList).Error; err != nil {
  59. return err
  60. }
  61. if ok := e.IsExistCrontabLog(UpdateCowInfo); ok {
  62. return nil
  63. }
  64. defer func() {
  65. e.CreateCrontabLog(UpdateCowInfo)
  66. }()
  67. for _, cow := range cowList {
  68. updates := map[string]interface{}{
  69. "day_age": cow.GetDayAge(),
  70. "calving_at": cow.GetCalvingAge(),
  71. "pregnancy_age": cow.GetDaysPregnant(),
  72. "admission_age": cow.GetAdmissionAge(),
  73. "abortion_age": cow.GetAbortionAge(),
  74. }
  75. if cow.GetDayAge() == 60 {
  76. updates["cow_type"] = pasturePb.CowType_Weaned_Calf
  77. }
  78. if err := e.DB.Model(new(model.Cow)).
  79. Where("id = ?", cow.Id).
  80. Updates(updates).Error; err != nil {
  81. zaplog.Error("Crontab", zap.Any("UpdateCowDayAge", err))
  82. }
  83. }
  84. return nil
  85. }
  86. // ImmunizationPlan 免疫计划,生成工作单
  87. func (e *Entry) ImmunizationPlan() error {
  88. if ok := e.IsExistCrontabLog(ImmunizationPlan); ok {
  89. return nil
  90. }
  91. planList := make([]*model.ImmunizationPlan, 0)
  92. if err := e.DB.Model(new(model.ImmunizationPlan)).
  93. Where("is_show = ?", pasturePb.IsShow_Ok).
  94. Order("pasture_id").
  95. Find(&planList).Error; err != nil {
  96. return xerr.WithStack(err)
  97. }
  98. var todayCount int32 = 0
  99. nowTime := time.Now().Unix()
  100. for _, plan := range planList {
  101. cowList := make([]*model.Cow, 0)
  102. pref := e.DB.Table(fmt.Sprintf("%s as a", new(model.Cow).TableName())).
  103. Select("a.*").
  104. Where("a.pasture_id = ?", plan.PastureId).
  105. Where("a.admission_status = ?", pasturePb.AdmissionStatus_Admission).
  106. Where("NOT EXIST ( 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)
  107. if plan.CowType > 0 {
  108. pref.Where("a.cow_type = ?", plan.CowType)
  109. }
  110. switch plan.Conditions {
  111. case pasturePb.ImmunizationConditions_Days_Age:
  112. pref.Where("a.day_age = ?", plan.Value)
  113. case pasturePb.ImmunizationConditions_Days_After_Delivery:
  114. pref.Where("a.calving_age = ?", plan.Value)
  115. case pasturePb.ImmunizationConditions_Days_Of_Pregnancy:
  116. pref.Where("a.pregnancy_age = ?", plan.Value).
  117. Where("a.is_pregnant = ?", pasturePb.IsShow_Ok)
  118. case pasturePb.ImmunizationConditions_Month:
  119. // todo 待实现月份
  120. continue
  121. case pasturePb.ImmunizationConditions_Admission_Days:
  122. pref.Where("a.admission_age = ?", plan.Value)
  123. case pasturePb.ImmunizationConditions_Other_Vaccine_After:
  124. if plan.ImmunizationPlanId > 0 {
  125. pref.Joins("INNER JOIN event_immunization_plan as b ON b.immunization_plan_id = ? ", plan.ImmunizationPlanId).
  126. Where("b.cow_id = a.id").
  127. Where("DATE_ADD(b.reality_time, INTERVAL ? DAY) = ?", plan.Value, time.Now().Format(model.LayoutDate2)).
  128. Where("b.status = ?", pasturePb.IsShow_Ok)
  129. }
  130. }
  131. if err := pref.Find(&cowList).Error; err != nil {
  132. return xerr.WithStack(err)
  133. }
  134. if len(cowList) <= 0 {
  135. continue
  136. }
  137. todayCount += int32(len(cowList))
  138. penList, _ := e.GetPenMapList()
  139. newImmunizationPlanCowList := model.NewCowImmunizationPlanList(cowList, penList, plan)
  140. newEventItemList := model.NewEventItemList(cowList, pasturePb.CalendarType_Immunisation)
  141. if err := e.DB.Transaction(func(tx *gorm.DB) error {
  142. if err := tx.Create(newImmunizationPlanCowList).Error; err != nil {
  143. return xerr.WithStack(err)
  144. }
  145. if err := tx.Create(newEventItemList).Error; err != nil {
  146. return xerr.WithStack(err)
  147. }
  148. return nil
  149. }); err != nil {
  150. zaplog.Error("ImmunizationPlan", zap.Any("newImmunizationPlanCowList", err), zap.Any("plan", plan), zap.Any("cowList", cowList))
  151. }
  152. var count int64 = 0
  153. if err := e.DB.Model(new(model.EventImmunizationPlan)).
  154. Where("status = ?", pasturePb.IsShow_Ok).
  155. Where("pasture_id = ?", plan.PastureId).
  156. Count(&count).Error; err != nil {
  157. zaplog.Error("Crontab", zap.Any("ImmunizationPlanDefer", err))
  158. }
  159. todayCount += int32(count)
  160. if todayCount > 0 {
  161. e.CreatedCalendar(plan.PastureId, pasturePb.CalendarType_Immunisation, time.Now().Format(model.LayoutDate2), todayCount)
  162. }
  163. e.CreateCrontabLog(ImmunizationPlan)
  164. }
  165. zaplog.Info("ImmunizationPlan", zap.Any("todayCount", todayCount))
  166. return nil
  167. }
  168. // SameTimePlan 同期计划,生成工作单
  169. func (e *Entry) SameTimePlan() error {
  170. if ok := e.IsExistCrontabLog(SameTimePlan); ok {
  171. return nil
  172. }
  173. sameTimeList := make([]*model.SameTime, 0)
  174. if err := e.DB.Model(new(model.SameTime)).
  175. Where("is_show = ?", pasturePb.IsShow_Ok).
  176. Order("pasture_id").
  177. Find(&sameTimeList).Error; err != nil {
  178. return xerr.WithStack(err)
  179. }
  180. if len(sameTimeList) < 0 {
  181. return nil
  182. }
  183. defer func() {
  184. e.CreateCrontabLog(SameTimePlan)
  185. }()
  186. currWeek := time.Now().Weekday()
  187. for _, sameTime := range sameTimeList {
  188. if sameTime == nil {
  189. continue
  190. }
  191. if time.Weekday(sameTime.WeekType) != currWeek {
  192. continue
  193. }
  194. cowList := make([]*model.Cow, 0)
  195. pref := e.DB.Model(new(model.Cow)).
  196. Where("admission_status = ?", pasturePb.AdmissionStatus_Admission).
  197. Where("sex = ?", pasturePb.Genders_Male).
  198. Where("pasture_id = ?", sameTime.PastureId)
  199. switch sameTime.CowType {
  200. case pasturePb.SameTimeCowType_Breeding_Calf:
  201. pref.Where("calving_age >= ?", sameTime.PostpartumDaysStart).
  202. Where("calving_age <= ?", sameTime.PostpartumDaysEnd).
  203. Where("is_pregnant = ?", pasturePb.IsShow_No)
  204. case pasturePb.SameTimeCowType_Empty:
  205. pref.Where(
  206. e.DB.Where("breed_status = ?", pasturePb.BreedStatus_Empty).
  207. Or("breed_status = ?", pasturePb.BreedStatus_Abort),
  208. ).Where("is_pregnant = ?", pasturePb.IsShow_No)
  209. default:
  210. continue
  211. }
  212. if err := pref.Find(&cowList).Error; err != nil {
  213. zaplog.Error("crontab", zap.Any("err", err), zap.Any("sameTime", sameTime))
  214. return xerr.WithStack(err)
  215. }
  216. if len(cowList) <= 0 {
  217. continue
  218. }
  219. if err := e.GenerateCalendarBySameTimePlan(cowList, sameTime); err != nil {
  220. zaplog.Error("crontab",
  221. zap.Any("GenerateCalendarBySameTimePlan", err),
  222. zap.Any("cowList", cowList),
  223. zap.Any("plan", sameTime),
  224. )
  225. continue
  226. }
  227. }
  228. return nil
  229. }
  230. // UpdateSameTime 更新每天同情数据
  231. func (e *Entry) UpdateSameTime() error {
  232. calendarTypeList := backend.CalendarTypeEnumList("")
  233. showDay := time.Now().Format(model.LayoutDate2)
  234. for _, v := range calendarTypeList {
  235. count := int64(0)
  236. if err := e.DB.Model(new(model.EventCowSameTime)).
  237. Where("same_time_type = ?", v.Value).
  238. Where("status = ?", pasturePb.IsShow_No).
  239. Count(&count).Error; err != nil {
  240. zaplog.Error("crontab", zap.Any("UpdateSameTime", err), zap.Any("count", count))
  241. }
  242. if count >= 0 {
  243. continue
  244. }
  245. isExist := int64(0)
  246. if err := e.DB.Model(new(model.Calendar)).
  247. Where("calendar_type = ?", v.Value).
  248. Where("show_day = ?", showDay).
  249. Count(&isExist).Error; err != nil {
  250. continue
  251. }
  252. if isExist <= 0 {
  253. continue
  254. }
  255. if err := e.DB.Model(new(model.Calendar)).
  256. Where("calendar_type = ?", v.Value).
  257. Where("show_day = ?", showDay).
  258. Updates(map[string]interface{}{
  259. "count": count,
  260. }).Error; err != nil {
  261. continue
  262. }
  263. }
  264. return nil
  265. }
  266. // SystemBasicCrontab 基础配置计划任务
  267. func (e *Entry) SystemBasicCrontab() error {
  268. if ok := e.IsExistCrontabLog(SystemBasicCrontab); ok {
  269. return nil
  270. }
  271. defer func() {
  272. e.CreateCrontabLog(SystemBasicCrontab)
  273. }()
  274. systemBasicList := make([]*model.SystemBasic, 0)
  275. if err := e.DB.Model(new(model.SystemBasic)).
  276. Where("is_show = ?", pasturePb.IsShow_Ok).
  277. Where("name IN ?", []string{
  278. model.PregnantCheckForFirst,
  279. model.PregnantCheckForSecond,
  280. model.WeaningAge,
  281. model.PregnancyAge,
  282. }).Find(&systemBasicList).Error; err != nil {
  283. zaplog.Error("crontab", zap.Any("PregnancyCheck", err))
  284. return xerr.WithStack(err)
  285. }
  286. currWeekValue := time.Now().Weekday()
  287. for _, systemBasic := range systemBasicList {
  288. // 周执行
  289. if systemBasic.WeekValue >= 0 && time.Weekday(systemBasic.WeekValue) != currWeekValue {
  290. continue
  291. }
  292. cowList := make([]*model.Cow, 0)
  293. pref := e.DB.Model(new(model.Cow)).
  294. Where("admission_status = ? ", pasturePb.AdmissionStatus_Admission).
  295. Where("pasture_id = ?", systemBasic.PastureId)
  296. switch systemBasic.Name {
  297. case model.PregnantCheckForFirst:
  298. pref.Where("breed_status = ?", pasturePb.BreedStatus_Breeding)
  299. case model.PregnantCheckForSecond: // 过滤初检空怀的牛只
  300. pref.Where("breed_status = ?", pasturePb.BreedStatus_Pregnant)
  301. case model.WeaningAge:
  302. pref.Where("day_age = ?", systemBasic.MinValue)
  303. case model.PregnancyAge:
  304. pref.Where("pregnancy_age >= ?", systemBasic.MinValue).
  305. Where("breed_status = ?", pasturePb.BreedStatus_Pregnant)
  306. default:
  307. continue
  308. }
  309. if systemBasic.ValueType == model.ValueTypeFixed {
  310. pref.Where("day_age = ?", systemBasic.MinValue)
  311. }
  312. if systemBasic.ValueType == model.ValueTypeRange {
  313. pref.Where("day_age >= ?", systemBasic.MinValue).Where("day_age <= ?", systemBasic.MaxValue)
  314. }
  315. if err := pref.Find(&cowList).Error; err != nil {
  316. zaplog.Error("crontab", zap.Any("PregnancyCheck", err), zap.Any("cowList", cowList))
  317. continue
  318. }
  319. if len(cowList) <= 0 {
  320. continue
  321. }
  322. e.InitEventData(cowList, systemBasic)
  323. }
  324. return nil
  325. }
  326. func (e *Entry) InitEventData(cowList []*model.Cow, systemBasic *model.SystemBasic) {
  327. switch systemBasic.Name {
  328. case model.PregnantCheckForFirst, model.PregnantCheckForSecond:
  329. penMap, _ := e.GetPenMapList()
  330. eventPregnantCheckDataList := model.NewEventPregnantCheckList(systemBasic.PastureId, cowList, penMap, systemBasic.Name)
  331. if err := e.DB.Create(eventPregnantCheckDataList).Error; err != nil {
  332. zaplog.Error("crontab", zap.Any("InitEventData", err), zap.Any("eventPregnantCheckDataList", eventPregnantCheckDataList))
  333. }
  334. case model.WeaningAge:
  335. eventWeaningDataList := model.NewEventWeaningList(systemBasic.PastureId, cowList)
  336. if err := e.DB.Create(eventWeaningDataList).Error; err != nil {
  337. zaplog.Error("crontab", zap.Any("InitEventData", err), zap.Any("eventWeaningDataList", eventWeaningDataList))
  338. }
  339. case model.PregnancyAge:
  340. eventCalvingList := model.NewEventCalvingList(systemBasic.PastureId, cowList)
  341. if err := e.DB.Create(eventCalvingList).Error; err != nil {
  342. zaplog.Error("crontab", zap.Any("InitEventData", err), zap.Any("eventCalvingList", eventCalvingList))
  343. }
  344. }
  345. }
  346. // DiseaseCheck 疾病检查
  347. func (e *Entry) DiseaseCheck() error {
  348. return nil
  349. }