fix issue : #1524
This commit is contained in:
parent
f09cea096f
commit
847b89da23
1 changed files with 2 additions and 1 deletions
|
|
@ -1209,7 +1209,8 @@ namespace BMA.EHR.Application.Repositories.Leaves.LeaveRequests
|
|||
.Include(x => x.Type)
|
||||
//.Where(x => x.LeaveStartDate.Year == year)
|
||||
.Where(x => x.LeaveStartDate.Date >= startFiscalDate && x.LeaveStartDate.Date <= endFiscalDate)
|
||||
.Where(x => x.LeaveStatus == "NEW") // fix issue : #729
|
||||
//.Where(x => x.LeaveStatus == "NEW") // fix issue : #729
|
||||
.Where(x => x.LeaveStatus != "DRAFT") // fix issue : #1524
|
||||
.ToListAsync();
|
||||
|
||||
var res = (from d in data
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue