diff --git a/src/2.services/ATS.NonCustodial.Application/Impl/Business/AppManagementService.cs b/src/2.services/ATS.NonCustodial.Application/Impl/Business/AppManagementService.cs index 6cc9326..c7a28cf 100644 --- a/src/2.services/ATS.NonCustodial.Application/Impl/Business/AppManagementService.cs +++ b/src/2.services/ATS.NonCustodial.Application/Impl/Business/AppManagementService.cs @@ -182,7 +182,8 @@ namespace ATS.NonCustodial.Application.Impl.Business /// public async Task>> GetSupervisedPersonListByName(string? name) { - var rtn = (await GetCaseListDetail(name)).Where(w => w.Latitude != null && w.Longitude != null).ToList(); + //CaseProgressEnum案件已结束的不再展示 + var rtn = (await GetCaseListDetail(name)).Where(w => w.Latitude != null && w.Longitude != null&&w.CaseProgress!= CaseProgressEnum.Closed).ToList(); //返回结果 return (IResultOutput>)ResultOutput.Ok(rtn);