From 946bda8297320260edd6b028752c72ba94403a46 Mon Sep 17 00:00:00 2001 From: lsm Date: Fri, 26 Jul 2024 14:42:55 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E6=A3=80=E6=9F=A5=E9=A1=B9=E7=9B=AES?= =?UTF-8?q?QL=E8=AF=AD=E5=8F=A5=E6=94=B9=E5=8A=A8=EF=BC=8C=E5=8C=B9?= =?UTF-8?q?=E9=85=8DoldId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PEIS/App.config | 17 +++-------------- PEIS/Model/Exam/PartModel.cs | 4 ++-- 2 files changed, 5 insertions(+), 16 deletions(-) diff --git a/PEIS/App.config b/PEIS/App.config index e35a23d..1c4d84e 100644 --- a/PEIS/App.config +++ b/PEIS/App.config @@ -6,23 +6,12 @@ - - - - - - - - - - - - - - + + + diff --git a/PEIS/Model/Exam/PartModel.cs b/PEIS/Model/Exam/PartModel.cs index 9fcdb49..52d1347 100644 --- a/PEIS/Model/Exam/PartModel.cs +++ b/PEIS/Model/Exam/PartModel.cs @@ -439,8 +439,8 @@ namespace PEIS.Model FROM Enrollment_FeeItem A - LEFT JOIN Report B ON A.EID = B.EID AND A.ID= B.ReportNo -LEFT JOIN Dict_FeeItem FeeItem ON A.FID= FeeItem.ID + LEFT JOIN Report B ON A.EID = B.EID AND ( A.ID= B.ReportNo OR A.OldId = B.ReportNo) + LEFT JOIN Dict_FeeItem FeeItem ON A.FID= FeeItem.ID WHERE A.ItemClass = '检查' AND FeeItem.IsHide=0 AND A.eid = {eid}").ToList(); return reportList;