diff --git a/conf/corp/1000.json b/conf/corp/1000.json index e0d3714..b92ac04 100644 --- a/conf/corp/1000.json +++ b/conf/corp/1000.json @@ -1,5 +1,5 @@ { - "salary_latest": 9, + "salary_latest": 15, "staff_config": [ { "name": "员工角色", diff --git a/server/api/staff.go b/server/api/staff.go index dcb457c..5060b5d 100644 --- a/server/api/staff.go +++ b/server/api/staff.go @@ -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"}) } diff --git a/worker/worker.go b/worker/worker.go index afb21d0..f578c7a 100644 --- a/worker/worker.go +++ b/worker/worker.go @@ -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, "") })