username
This commit is contained in:
parent
bca5b4c937
commit
2f56ae2e70
|
@ -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)))
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue