소스 검색

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

西昌分支
dyy 3 달 전
부모
커밋
87c8c5bf78
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 파일 보기

@@ -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);
//获取已有年度学生缴费明细记录


불러오는 중...
취소
저장