From 2f56ae2e70d970c9f6de0d85363cf0f93713b61a Mon Sep 17 00:00:00 2001 From: jiangyong Date: Sun, 23 Mar 2025 00:04:09 +0800 Subject: [PATCH] username --- server/service/staff_salary.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/server/service/staff_salary.go b/server/service/staff_salary.go index 00eedcf..03a1f4a 100644 --- a/server/service/staff_salary.go +++ b/server/service/staff_salary.go @@ -69,8 +69,7 @@ func (s *StaffSalary) Create(sess *session.AdminSession, req *api.CreateSalaryRe lastMonth := cast.ToInt(time.Now().AddDate(0, -1, 0).Format("200601")) if cast.ToInt(req.Month) < lastMonth || - (cast.ToInt(req.Month) == lastMonth && time.Now().Day() > salaryLast) || - cast.ToInt(req.Month) > lastMonth { + (cast.ToInt(req.Month) == lastMonth && time.Now().Day() > salaryLast) { panic(config.ErrTimeExceed.New().Append(fmt.Sprintf("salaryLast=%d", salaryLast))) }