|
@@ -5856,7 +5856,7 @@ Group by PriceType ", dto.diId);
|
|
|
/// <param name="endDt"></param>
|
|
|
/// <returns></returns>
|
|
|
[HttpGet]
|
|
|
- public async Task<IActionResult> GroupUnAuditFeeList(string beginDt,string endDt)
|
|
|
+ public async Task<IActionResult> GroupUnAuditFeeList(string beginDt,string endDt,string teamName)
|
|
|
{
|
|
|
var jw = JsonView(false);
|
|
|
|
|
@@ -5874,6 +5874,7 @@ Group by PriceType ", dto.diId);
|
|
|
x.VisitDate >= _beginDt &&
|
|
|
x.VisitDate <= _endDt
|
|
|
)
|
|
|
+ .WhereIF(!string.IsNullOrEmpty(teamName), x => x.TeamName.Equals(teamName))
|
|
|
.ToList();
|
|
|
var _groupIds = _groupDatas.Select(x => x.Id).ToList();
|
|
|
if (_groupIds.Count < 1)
|