From 71ef7d63ba3a779549b7e15cbb2415c4dfe5b559 Mon Sep 17 00:00:00 2001 From: liangkun Date: Wed, 8 Sep 2021 15:08:45 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=B4=E8=B4=B9=E7=8A=B6=E6=80=81=E5=90=8C?= =?UTF-8?q?=E6=AD=A5=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../StuInfoFresh/StuInfoFreshService.cs | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoFresh/StuInfoFreshService.cs b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoFresh/StuInfoFreshService.cs index c331e13b9..eb243e1fb 100644 --- a/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoFresh/StuInfoFreshService.cs +++ b/Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/StuInfoFresh/StuInfoFreshService.cs @@ -128,12 +128,23 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration for (int i = 0; i < Model.Count(); i++) { - var IspayList = this.BaseRepository("IsPay").ExecuteBySql($" select * from View_JFdd WHERE XH ='{Model[i].StuNo}' ").ToString().ToList(); - if (IspayList.Count > 0) + //var IspayList = this.BaseRepository("IsPay").ExecuteBySql($" select * from View_JFdd WHERE XH ='{Model[i].StuNo}' ").ToString().ToList(); + //if (IspayList.Count > 0) + //{ + // Model[i].PayFeeStatus = "1"; + // ListStuInfo.Add(Model[i]); + //} + var IspayList = this.BaseRepository("IsPay").FindTable($" select * from View_JFdd WHERE XH ='{Model[i].StuNo}' "); + if (IspayList.Rows.Count > 0) { Model[i].PayFeeStatus = "1"; ListStuInfo.Add(Model[i]); } + else + { + Model[i].PayFeeStatus = "0"; + ListStuInfo.Add(Model[i]); + } } this.BaseRepository("CollegeMIS").Update(ListStuInfo); }