fix issue : 847 เปลี่ยนเป็นเช็คว่าเกิน 365 วันหรีอไม่ จากเดิม check <= 360 วัน
This commit is contained in:
parent
e00740aa41
commit
954a0fb9d8
1 changed files with 2 additions and 1 deletions
|
|
@ -897,7 +897,8 @@ namespace BMA.EHR.Leave.Service.Controllers
|
|||
isLeave = req.EndLeaveDate.Date <= maxEnd;
|
||||
break;
|
||||
case "LV-011":
|
||||
isLeave = totalDay <= 360;
|
||||
//isLeave = totalDay <= 360;
|
||||
isLeave = totalDay <= 365; // fix issue : 847 เปลี่ยนเป็นเช็คว่าเกิน 365 วันหรีอไม่
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue