|
@@ -17,10 +17,17 @@ const (
|
|
UpdateCowInfo = "UpdateCowInfo"
|
|
UpdateCowInfo = "UpdateCowInfo"
|
|
ImmunizationPlan = "ImmunizationPlan"
|
|
ImmunizationPlan = "ImmunizationPlan"
|
|
SameTimePlan = "SameTimePlan"
|
|
SameTimePlan = "SameTimePlan"
|
|
|
|
+ WorkOrderMaster = "WorkOrderMaster"
|
|
)
|
|
)
|
|
|
|
|
|
// GenerateAsynqWorkOrder 异步生成工作单
|
|
// GenerateAsynqWorkOrder 异步生成工作单
|
|
func (e *Entry) GenerateAsynqWorkOrder() error {
|
|
func (e *Entry) GenerateAsynqWorkOrder() error {
|
|
|
|
+ if ok := e.IsExistCrontabLog(WorkOrderMaster); ok {
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ defer func() {
|
|
|
|
+ e.CreateCrontabLog(WorkOrderMaster)
|
|
|
|
+ }()
|
|
workOrderList := make([]*model.WorkOrderMaster, 0)
|
|
workOrderList := make([]*model.WorkOrderMaster, 0)
|
|
if err := e.DB.Where("is_show = ?", pasturePb.IsShow_Ok).Find(&workOrderList).Error; err != nil {
|
|
if err := e.DB.Where("is_show = ?", pasturePb.IsShow_Ok).Find(&workOrderList).Error; err != nil {
|
|
return err
|
|
return err
|
|
@@ -34,7 +41,6 @@ func (e *Entry) GenerateAsynqWorkOrder() error {
|
|
execTime := time.Now().Unix() - timeUnix
|
|
execTime := time.Now().Unix() - timeUnix
|
|
|
|
|
|
task := model.NewTaskWorkOrderPayload(workOrder.Id, time.Duration(execTime)*time.Second)
|
|
task := model.NewTaskWorkOrderPayload(workOrder.Id, time.Duration(execTime)*time.Second)
|
|
- zaplog.Info("GenerateWorkOrder", zap.Any("workOrder", workOrder), zap.Any("task", task))
|
|
|
|
if _, err = e.AsynqClient.CtxEnqueue(context.Background(), task); err != nil {
|
|
if _, err = e.AsynqClient.CtxEnqueue(context.Background(), task); err != nil {
|
|
zaplog.Error("PushMessage CtxEnqueue", zap.Any("Err", err))
|
|
zaplog.Error("PushMessage CtxEnqueue", zap.Any("Err", err))
|
|
}
|
|
}
|
|
@@ -48,14 +54,12 @@ func (e *Entry) UpdateCowInfo() error {
|
|
if err := e.DB.Where("is_remove = ?", pasturePb.IsShow_Ok).Find(&cowList).Error; err != nil {
|
|
if err := e.DB.Where("is_remove = ?", pasturePb.IsShow_Ok).Find(&cowList).Error; err != nil {
|
|
return err
|
|
return err
|
|
}
|
|
}
|
|
-
|
|
|
|
- if ok := e.IsExistCrontabLog(UpdateCowInfo); !ok {
|
|
|
|
|
|
+ if ok := e.IsExistCrontabLog(UpdateCowInfo); ok {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
defer func() {
|
|
defer func() {
|
|
e.CreateCrontabLog(UpdateCowInfo)
|
|
e.CreateCrontabLog(UpdateCowInfo)
|
|
}()
|
|
}()
|
|
-
|
|
|
|
for _, cow := range cowList {
|
|
for _, cow := range cowList {
|
|
dayAge := cow.GetDayAge()
|
|
dayAge := cow.GetDayAge()
|
|
calvingAge := cow.GetCalvingAge()
|
|
calvingAge := cow.GetCalvingAge()
|
|
@@ -75,15 +79,13 @@ func (e *Entry) UpdateCowInfo() error {
|
|
|
|
|
|
// ImmunizationPlan 免疫计划,生成工作单
|
|
// ImmunizationPlan 免疫计划,生成工作单
|
|
func (e *Entry) ImmunizationPlan() error {
|
|
func (e *Entry) ImmunizationPlan() error {
|
|
- if ok := e.IsExistCrontabLog(ImmunizationPlan); !ok {
|
|
|
|
|
|
+ if ok := e.IsExistCrontabLog(ImmunizationPlan); ok {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
-
|
|
|
|
planList := make([]*model.ImmunizationPlan, 0)
|
|
planList := make([]*model.ImmunizationPlan, 0)
|
|
if err := e.DB.Where("is_show = ?", pasturePb.IsShow_Ok).Find(&planList).Error; err != nil {
|
|
if err := e.DB.Where("is_show = ?", pasturePb.IsShow_Ok).Find(&planList).Error; err != nil {
|
|
return xerr.WithStack(err)
|
|
return xerr.WithStack(err)
|
|
}
|
|
}
|
|
-
|
|
|
|
var todayCount int32 = 0
|
|
var todayCount int32 = 0
|
|
defer func() {
|
|
defer func() {
|
|
var count int64 = 0
|
|
var count int64 = 0
|
|
@@ -91,7 +93,9 @@ func (e *Entry) ImmunizationPlan() error {
|
|
zaplog.Error("Crontab", zap.Any("ImmunizationPlanDefer", err))
|
|
zaplog.Error("Crontab", zap.Any("ImmunizationPlanDefer", err))
|
|
}
|
|
}
|
|
todayCount += int32(count)
|
|
todayCount += int32(count)
|
|
- e.CreatedWorkOrderCalendar(pasturePb.CalendarType_Immunisation, todayCount)
|
|
|
|
|
|
+ if todayCount > 0 {
|
|
|
|
+ e.CreatedCalendar(pasturePb.CalendarType_Immunisation, todayCount)
|
|
|
|
+ }
|
|
e.CreateCrontabLog(ImmunizationPlan)
|
|
e.CreateCrontabLog(ImmunizationPlan)
|
|
}()
|
|
}()
|
|
|
|
|
|
@@ -102,7 +106,7 @@ func (e *Entry) ImmunizationPlan() error {
|
|
cowList := make([]*model.Cow, 0)
|
|
cowList := make([]*model.Cow, 0)
|
|
pref := e.DB.Table(fmt.Sprintf("%s as a", new(model.ImmunizationPlan).TableName())).
|
|
pref := e.DB.Table(fmt.Sprintf("%s as a", new(model.ImmunizationPlan).TableName())).
|
|
Select("a.*").
|
|
Select("a.*").
|
|
- Where("a.is_remove = ?", pasturePb.IsShow_Ok)
|
|
|
|
|
|
+ Where("a.is_show = ?", pasturePb.IsShow_Ok)
|
|
if plan.CowType > 0 {
|
|
if plan.CowType > 0 {
|
|
pref.Where("a.cow_type = ?", plan.CowType)
|
|
pref.Where("a.cow_type = ?", plan.CowType)
|
|
}
|
|
}
|
|
@@ -140,13 +144,13 @@ func (e *Entry) ImmunizationPlan() error {
|
|
zaplog.Error("ImmunizationPlan", zap.Any("CreateImmunizationPlanCow", err), zap.Any("plan", plan), zap.Any("cowList", cowList))
|
|
zaplog.Error("ImmunizationPlan", zap.Any("CreateImmunizationPlanCow", err), zap.Any("plan", plan), zap.Any("cowList", cowList))
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+ zaplog.Info("ImmunizationPlan", zap.Any("todayCount", todayCount))
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
// SameTimePlan 同期计划,生成工作单
|
|
// SameTimePlan 同期计划,生成工作单
|
|
func (e *Entry) SameTimePlan() error {
|
|
func (e *Entry) SameTimePlan() error {
|
|
- if ok := e.IsExistCrontabLog(SameTimePlan); !ok {
|
|
|
|
|
|
+ if ok := e.IsExistCrontabLog(SameTimePlan); ok {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
@@ -158,7 +162,9 @@ func (e *Entry) SameTimePlan() error {
|
|
// 更新日历里面的数据
|
|
// 更新日历里面的数据
|
|
var todayCount int32 = 0
|
|
var todayCount int32 = 0
|
|
defer func() {
|
|
defer func() {
|
|
- e.CreatedWorkOrderCalendar(pasturePb.CalendarType_Immunisation, todayCount)
|
|
|
|
|
|
+ if todayCount > 0 {
|
|
|
|
+ e.CreatedCalendar(pasturePb.CalendarType_Immunisation, todayCount)
|
|
|
|
+ }
|
|
e.CreateCrontabLog(SameTimePlan)
|
|
e.CreateCrontabLog(SameTimePlan)
|
|
}()
|
|
}()
|
|
|
|
|
|
@@ -185,7 +191,7 @@ func (e *Entry) SameTimePlan() error {
|
|
pref.Where(
|
|
pref.Where(
|
|
e.DB.Where("breed_status = ?", pasturePb.BreedStatus_Empty).
|
|
e.DB.Where("breed_status = ?", pasturePb.BreedStatus_Empty).
|
|
Or("breed_status = ?", pasturePb.BreedStatus_Abort),
|
|
Or("breed_status = ?", pasturePb.BreedStatus_Abort),
|
|
- ).Where("s_pregnant = ?", pasturePb.IsShow_No)
|
|
|
|
|
|
+ ).Where("is_pregnant = ?", pasturePb.IsShow_No)
|
|
}
|
|
}
|
|
|
|
|
|
if err := pref.Find(&cowList).Error; err != nil {
|
|
if err := pref.Find(&cowList).Error; err != nil {
|
|
@@ -213,7 +219,6 @@ func (e *Entry) SameTimePlan() error {
|
|
|
|
|
|
// PregnancyCheck 妊娠期检查
|
|
// PregnancyCheck 妊娠期检查
|
|
func (e *Entry) PregnancyCheck() error {
|
|
func (e *Entry) PregnancyCheck() error {
|
|
-
|
|
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|