leavetime
This commit is contained in:
parent
2f56ae2e70
commit
a5792bb3b2
|
@ -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)
|
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)
|
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
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue