salarybill3

This commit is contained in:
jiangyong27 2025-04-02 22:51:08 +08:00
parent 6263721120
commit 7318b814ea
1 changed files with 2 additions and 2 deletions

View File

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