审查视图

pkg/application/notify/sms_staff_assess.go 2.1 KB
tangxvhui authored
1 2 3 4 5 6 7 8 9 10
package notify

import (
	"time"

	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/application/factory"
	"gitlab.fjmaimaimai.com/allied-creation/performance/pkg/domain"
)

// 每日自评短信通知
tangxvhui authored
11
type notifyStaffAssess struct {
tangxvhui authored
12 13
}
tangxvhui authored
14
func (notices notifyStaffAssess) from() string {
tangxvhui authored
15 16 17
	return "StaffAssess"
}
tangxvhui authored
18 19 20
// makeNotify 生成待执行的短信通知内容
func (notices notifyStaffAssess) makeNotify(param *domain.StaffAssess) *domain.LogSms {
	newSms := domain.LogSms{
tangxvhui authored
21
		Id:         0,
tangxvhui authored
22
		Phone:      param.Executor.Account,
tangxvhui authored
23 24
		TemplateId: 5475050,
		Template:   "您好,#name#,百忙之中不要忘记填写今天的绩效自评反馈哦",
tangxvhui authored
25 26 27 28 29 30 31 32 33
		Value: map[string]string{
			"name": param.Executor.UserName,
		},
		Result: "",
		Status: domain.SmsWait,
		From:   notices.from(),
		Index:  param.Id,
		// ExecuteAt:  executeAt,
		CreatedAt: time.Now(),
tangxvhui authored
34
	}
tangxvhui authored
35
	// 每日自评 结束前30 分钟
tangxvhui authored
36 37 38 39 40
	// newSms.ExecuteAt = param.EndTime.Add(-1800 * time.Second)
	//改为 固定在截止时间 那天的 前一天晚上10
	y, m, d := param.EndTime.Local().Date()
	dayTime := time.Date(y, m, d, 0, 0, 0, 0, time.Local)
	newSms.ExecuteAt = dayTime.Add(-2 * time.Hour)
tangxvhui authored
41
	return &newSms
tangxvhui authored
42 43
}
tangxvhui authored
44
// ifSend 确认是否发送通知
tangxvhui authored
45
func (notices notifyStaffAssess) ifSend(index int) (bool, error) {
46 47 48 49 50
	nowDay := time.Now().Weekday()
	if nowDay == time.Sunday || nowDay == time.Saturday {
		//周末不发
		return false, nil
	}
tangxvhui authored
51 52
	transactionContext, err := factory.CreateTransactionContext(nil)
	if err != nil {
tangxvhui authored
53
		return false, err
tangxvhui authored
54 55
	}
	if err := transactionContext.StartTransaction(); err != nil {
tangxvhui authored
56
		return false, err
tangxvhui authored
57 58 59 60
	}
	defer func() {
		_ = transactionContext.RollbackTransaction()
	}()
tangxvhui authored
61 62
	staffAssessRepo := factory.CreateStaffAssessRepository(map[string]interface{}{"transactionContext": transactionContext})
	assessData, err := staffAssessRepo.FindOne(map[string]interface{}{"id": index})
tangxvhui authored
63
	if err != nil {
tangxvhui authored
64
		return false, err
tangxvhui authored
65
	}
tangxvhui authored
66 67 68
	//还未完成评估填写,时发送短信
	if assessData.Status == domain.StaffAssessUncompleted {
		return true, nil
tangxvhui authored
69 70
	}
	if err := transactionContext.CommitTransaction(); err != nil {
tangxvhui authored
71
		return false, err
tangxvhui authored
72
	}
tangxvhui authored
73
	return false, nil
tangxvhui authored
74
}