From 157056efb8ec0d303bce2916ef4d0ab606bbba7d Mon Sep 17 00:00:00 2001 From: zhaozhenjing Date: Fri, 19 Sep 2025 13:48:31 +0800 Subject: [PATCH] =?UTF-8?q?[MODIFY]=E6=8E=A5=E5=8F=A3=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=EF=BC=8C=E5=B7=B2=E5=AE=8C=E7=BB=93=E7=9A=84?= =?UTF-8?q?=E6=A1=88=E5=AD=90=E4=B8=8D=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Impl/Business/AppManagementService.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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);