tags2
This commit is contained in:
parent
646687af7a
commit
bc6c3d2289
|
@ -89,7 +89,7 @@ func (s *Staff) SendStaffSalaryBill(corpId int64, month string) {
|
|||
continue
|
||||
}
|
||||
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 = append(message, fmt.Sprintf("【工资单】[%s][%s]", staffUser.Username, month))
|
||||
|
|
|
@ -49,7 +49,7 @@ func InitCorp1002(cron *gocron.Scheduler) {
|
|||
})
|
||||
|
||||
//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(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("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"))
|
||||
})
|
||||
|
||||
|
|
Loading…
Reference in New Issue