소스 검색

考试记录调整功能

西昌缴费二期
ndbs 2 년 전
부모
커밋
87105afe7e
3개의 변경된 파일5개의 추가작업 그리고 7개의 파일을 삭제
  1. +0
    -4
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/Exam_ExamPlan/Form.cshtml
  2. +4
    -3
      Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/Exam_ExamPlan/Index.js
  3. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/Exam_ExamPlan/Exam_ExamPlanService.cs

+ 0
- 4
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/Exam_ExamPlan/Form.cshtml 파일 보기

@@ -23,10 +23,6 @@
<div class="lr-form-item-title">排考编号<font face="宋体">*</font></div>
<input id="PlanCode" type="text" class="form-control" isvalid="yes" checkexpession="NotNull" />
</div>
<div class="col-xs-12 lr-form-item" data-table="Exam_ExamPlan" >
<div class="lr-form-item-title">排考总人数<font face="宋体">*</font></div>
<input id="EPStuCount" type="text" class="form-control" isvalid="yes" checkexpession="Num" />
</div>
<div class="col-xs-12 lr-form-item" data-table="Exam_ExamPlan" >
<div class="lr-form-item-title">是否随机座位<font face="宋体">*</font></div>
<div id="EPRandom" isvalid="yes" checkexpession="NotNull" ></div>


+ 4
- 3
Learun.Framework.Ultimate V7/Learun.Application.Web/Areas/EducationalAdministration/Views/Exam_ExamPlan/Index.js 파일 보기

@@ -177,13 +177,14 @@ var bootstrap = function ($, learun) {
{
label: "是否生成", name: "EPGenarate", width: 100, align: "left",
formatter: function (cellvalue) {
return cellvalue == true ? "是" : "否";
return cellvalue == true ? "<i class=\"fa fa-toggle-on\"></i>" : "<i class=\"fa fa-toggle-off\"></i>";
}
},
{ label: "排序号", name: "EPOrder", width: 100, align: "left" },
{ label: "排序号", name: "EPOrder", width: 100, align: "left", },
],
mainId: 'EPId',
isPage: true
isPage: true,
sidx:"EPOrder asc "
});
page.search();
},


+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.TwoDevelopment/EducationalAdministration/Exam_ExamPlan/Exam_ExamPlanService.cs 파일 보기

@@ -385,6 +385,7 @@ delete from Exam_ExamPlanRoom where EPLId in ('{planLessonIds}');");
else
{
entity.Create();
entity.EPStuCount = 0;
this.BaseRepository("CollegeMIS").Insert(entity);
}
}


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