leavetime

This commit is contained in:
jiangyong 2025-03-23 00:15:26 +08:00
parent 2f56ae2e70
commit a5792bb3b2
1 changed files with 13 additions and 4 deletions

View File

@ -36,12 +36,21 @@ func (s *StaffSalary) CalcSalary(salary *model.StaffSalary, month string) (*mode
}
entryTime, _ := time.ParseInLocation("2006-01-02", s.user.EntryDate, time.Local)
leaveTime, _ := time.ParseInLocation("2006-01-02", s.user.LeaveDate, time.Local)
isEntryMonth := goutil.If(cast.ToInt(entryTime.Format("200601")) == cast.ToInt(month), true, false)
isLeaveMonth := goutil.If(cast.ToInt(leaveTime.Format("200601")) == cast.ToInt(month), true, false)
isLeaveMonth := false
//入职之前或离职之后的工资不计算
if cast.ToInt(month) < cast.ToInt(entryTime.Format("200601")) || cast.ToInt(month) > cast.ToInt(leaveTime.Format("200601")) {
//已离职的
if s.user.LeaveDate != "" {
leaveTime, _ := time.ParseInLocation("2006-01-02", s.user.LeaveDate, time.Local)
isLeaveMonth = goutil.If(cast.ToInt(leaveTime.Format("200601")) == cast.ToInt(month), true, false)
//离职之后的不计算工资
if cast.ToInt(month) > cast.ToInt(leaveTime.Format("200601")) {
return nil, nil
}
}
//入职之前的工资不计算
if cast.ToInt(month) < cast.ToInt(entryTime.Format("200601")) {
return nil, nil
}