This commit is contained in:
jiangyong27 2025-04-03 10:35:06 +08:00
parent bc6c3d2289
commit d32a58c197
3 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
{
"salary_latest": 9,
"salary_latest": 15,
"staff_config": [
{
"name": "员工角色",

View File

@ -106,10 +106,10 @@ func (s *StaffUser) From(m *model.StaffUser) {
if payee.AlipayUid != "" {
tags = append(tags, &Tag{Name: "支付宝", Type: "success"})
}
if m.Phone != "" {
if m.Phone == "" {
tags = append(tags, &Tag{Name: "未填手机号", Type: "warning"})
}
if m.Idno != "" {
if m.Idno == "" {
tags = append(tags, &Tag{Name: "未填身份证号", Type: "warning"})
}

View File

@ -30,7 +30,7 @@ func InitCorp1002(cron *gocron.Scheduler) {
})
//每月1号同步上月考勤、补卡审批、请假审批、报销审批
cron.Every(1).Month(1, 14).At("05:30").Do(func() {
cron.Every(1).Month(1, 2, 3, 4, 5, 6, 7, 8, 9, 10).At("05:30").Do(func() {
checkIn := NewCheckin(corpId)
checkIn.SyncCheckinMonth("")
lastMonth := time.Now().AddDate(0, -1, 0).Format("200601")
@ -43,7 +43,7 @@ func InitCorp1002(cron *gocron.Scheduler) {
})
// 1号计算工资信息
cron.Every(1).Month(1, 14).At("06:00").Do(func() {
cron.Every(1).Month(1, 2, 3, 4, 5, 6, 7, 8, 9, 10).At("06:00").Do(func() {
go staff.SyncStaffSalary(corpId, "")
//go staff.SyncStaffSalary(1002, "")
})
@ -72,7 +72,7 @@ func InitCorp1000(cron *gocron.Scheduler) {
})
//每月1号同步上月考勤、补卡审批、请假审批、报销审批
cron.Every(1).Month(1, 10).At("05:30").Do(func() {
cron.Every(1).Month(1, 2, 3, 4, 5, 6, 7, 8, 9, 10).At("05:30").Do(func() {
checkIn := NewCheckin(corpId)
checkIn.SyncCheckinMonth("")
lastMonth := time.Now().AddDate(0, -1, 0).Format("200601")
@ -85,7 +85,7 @@ func InitCorp1000(cron *gocron.Scheduler) {
})
// 1号计算工资信息
cron.Every(1).Month(1, 10).At("06:00").Do(func() {
cron.Every(1).Month(1, 2, 3, 4, 5, 6, 7, 8, 9, 10).At("06:00").Do(func() {
go NewStaff().SyncStaffSalary(corpId, "")
})