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); }