Commit a1d0c270 authored by 黄奎's avatar 黄奎

页面修改

parent 6fc40df9
......@@ -104,5 +104,11 @@ namespace Edu.Common.Enum.Finance
/// </summary>
[EnumField("教育")]
Education = 17,
/// <summary>
/// 教育留学
/// </summary>
[EnumField("教育留学")]
EducationStudy = 18,
}
}
......@@ -30,7 +30,7 @@ namespace Edu.WebApi.Controllers.Finance
private readonly TeachingRewardsModule teachingRewardsModule = AOP.AOPHelper.CreateAOPObject<TeachingRewardsModule>();
/// <summary>
/// 获取班级收支明细
/// 获取班级/留学就业收支明细
/// </summary>
/// <param name="request"></param>
/// <returns></returns>
......@@ -38,7 +38,8 @@ namespace Edu.WebApi.Controllers.Finance
{
int classId = base.ParmJObj.GetInt("ClassId", 0);
int schoolId = base.ParmJObj.GetInt("School_Id");
if (classId <= 0)
int SourceId = base.ParmJObj.GetInt("SourceId");
if (classId <= 0 && SourceId<=0)
{
return ApiResult.Failed("班级Id不存在");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment