lastmonth

This commit is contained in:
jiangyong27 2025-03-29 15:48:46 +08:00
parent a3ccda3b9d
commit 82b46a918b
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ func (s *StaffSalary) Create(sess *session.AdminSession, req *api.CreateSalaryRe
session.CheckDBError(err)
salaryLast := cast.ToInt(config.GetCorpConfig(sess.GetCorpId(), "salary_latest", 31))
lastMonth := cast.ToInt(time.Now().AddDate(0, -1, 0).Format("200601"))
lastMonth := cast.ToInt(time.Now().AddDate(0, 0, -time.Now().Day()).Format("200601"))
if cast.ToInt(req.Month) < lastMonth ||
(cast.ToInt(req.Month) == lastMonth && time.Now().Day() > salaryLast) {
panic(config.ErrTimeExceed.New().Append(fmt.Sprintf("salaryLast=%d", salaryLast)))