This commit is contained in:
jiangyong 2025-03-23 00:04:09 +08:00
parent bca5b4c937
commit 2f56ae2e70
1 changed files with 1 additions and 2 deletions

View File

@ -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")) lastMonth := cast.ToInt(time.Now().AddDate(0, -1, 0).Format("200601"))
if cast.ToInt(req.Month) < lastMonth || if cast.ToInt(req.Month) < lastMonth ||
(cast.ToInt(req.Month) == lastMonth && time.Now().Day() > salaryLast) || (cast.ToInt(req.Month) == lastMonth && time.Now().Day() > salaryLast) {
cast.ToInt(req.Month) > lastMonth {
panic(config.ErrTimeExceed.New().Append(fmt.Sprintf("salaryLast=%d", salaryLast))) panic(config.ErrTimeExceed.New().Append(fmt.Sprintf("salaryLast=%d", salaryLast)))
} }