|
@@ -3173,6 +3173,8 @@ Where dfp.IsDel = 0 And dfp.IsPay = 1
|
|
|
.Where(x => x.ApplicantDt >= _beginDt && x.ApplicantDt <= _endDt)
|
|
|
.WhereIF(dailypaymentTypeData.Count > 0,
|
|
|
x => dailypaymentTypeData.Contains(x.PriceTypeId))
|
|
|
+ .WhereIF(_dto.CompanyIds.Count > 0, x => _dto.CompanyIds.Contains(x.CompanyId))
|
|
|
+ .WhereIF(!string.IsNullOrEmpty(_dto.Filter), x => x.ViewStr.Contains(_dto.Filter))
|
|
|
.OrderByDescending(x => x.ApplicantDt)
|
|
|
.ToPageListAsync(
|
|
|
pageNumber: 1,
|