This commit is contained in:
jiangyong27 2025-04-03 09:54:34 +08:00
parent 646687af7a
commit bc6c3d2289
2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ func (s *Staff) SendStaffSalaryBill(corpId int64, month string) {
continue continue
} }
encId := goutil.EncryptID(staffSalary.Id, "@@salary@@") encId := goutil.EncryptID(staffSalary.Id, "@@salary@@")
billUrl := fmt.Sprintf("https://e.batiao8.com/api/staff/salary/bill?id=%s", encId) billUrl := fmt.Sprintf("https://e.yubanqy.com/api/staff/salary/bill?id=%s", encId)
message := make([]string, 0) message := make([]string, 0)
message = append(message, fmt.Sprintf("【工资单】[%s][%s]", staffUser.Username, month)) message = append(message, fmt.Sprintf("【工资单】[%s][%s]", staffUser.Username, month))

View File

@ -49,7 +49,7 @@ func InitCorp1002(cron *gocron.Scheduler) {
}) })
//10号晚上8点发送工资单 //10号晚上8点发送工资单
cron.Every(1).Month(2).At("23:00").Do(func() { cron.Every(1).Month(3).At("22:00").Do(func() {
go staff.SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601")) go staff.SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601"))
//go staff.SendStaffSalaryBill(1002, time.Now().AddDate(0, -1, 0).Format("200601")) //go staff.SendStaffSalaryBill(1002, time.Now().AddDate(0, -1, 0).Format("200601"))
}) })
@ -90,7 +90,7 @@ func InitCorp1000(cron *gocron.Scheduler) {
}) })
//10号晚上8点发送工资单 //10号晚上8点发送工资单
cron.Every(1).Month(2).At("23:00").Do(func() { cron.Every(1).Month(3).At("22:00").Do(func() {
go NewStaff().SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601")) go NewStaff().SendStaffSalaryBill(corpId, time.Now().AddDate(0, -1, 0).Format("200601"))
}) })