Procházet zdrojové kódy

【修改】年度缴费-生成缴费信息:增加对学生专业为空的判断;

西昌分支
dyy před 3 měsíci
rodič
revize
87c8c5bf78
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FinaChargeStuYear/FinaChargeStuYearService.cs

+ 1
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/ReceiveSendFeeManagement/FinaChargeStuYear/FinaChargeStuYearService.cs Zobrazit soubor

@@ -269,7 +269,7 @@ namespace Learun.Application.TwoDevelopment.ReceiveSendFeeManagement
var entity = innerDataobj.entity;
var userInfo = innerDataobj.userInfo;
//获取缴费学生
var stulist = BaseRepository("CollegeMIS").FindList<FinaChargeStudentEntity>("select t.* from FinaChargeStudent t left join StuInfoBasic s on t.StuNo=s.StuNo where t.F_CheckMark=1 and s.STU_STATE_CODE in ('01','04','05') and s.STU_ROLL_CODE in ('1')");
var stulist = BaseRepository("CollegeMIS").FindList<FinaChargeStudentEntity>("select t.* from FinaChargeStudent t left join StuInfoBasic s on t.StuNo=s.StuNo where t.F_CheckMark=1 and s.STU_STATE_CODE in ('01','04','05') and s.STU_ROLL_CODE in ('1') and s.MajorNo is not null ");
//获取已有年度学生缴费记录
var oldFinaChargeStuYearList = BaseRepository("CollegeMIS").FindList<FinaChargeStuYearEntity>(m => m.FSYear == entity.FSYear);
//获取已有年度学生缴费明细记录


Načítá se…
Zrušit
Uložit