123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Entities;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- //ComboGridOptions cgopExaminationBatch = new ComboGridOptions
- //{
- // TextField = "Name",
- // ValueField = "ExaminationBatchID",
- // ID = "cgExaminationBatch",
- // Name = "cgExaminationBatch",
- // OnSelect = "queryProject",
- // GridOptions = new DataGridOptions
- // {
- // Columns = new List<DataGridColumn>()
- // {
- // new BoundFieldColumn { FieldName="Name", HeaderText="考试批次", Align=AlignStyle.Center }
- // },
- // OnLoadSuccessFun = "reload",
- // IsCheckOnSelect = true,
- // DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationBatchViewGrid"),
- // IsPagination = true,
- // IsShowRowNumbers = true,
- // IsSingleSelect = false,
- // }
- //};
- //ComboGridOptions cgopExaminationType = new ComboGridOptions
- //{
- // TextField = "Name",
- // ValueField = "ExaminationTypeID",
- // Name = "cgExaminationType",
- // ID = "cgExaminationType",
- // OnSelect = "queryProject",
- // GridOptions = new DataGridOptions
- // {
- // Columns = new List<DataGridColumn>()
- // {
- // new BoundFieldColumn { FieldName="Name", HeaderText="考试类型", Align=AlignStyle.Center }
- // },
- // IsCheckOnSelect = true,
- // DataSourceUrl = Url.Content("~/ExaminationType/List"),
- // IsPagination = true,
- // IsShowRowNumbers = true,
- // IsSingleSelect = false
- // }
- //};
- //ComboGridOptions cgopExaminationProject = new ComboGridOptions
- //{
- // TextField = "Name",
- // ValueField = "ExaminationProjectID",
- // Name = "cgExaminationProject",
- // ID = "cgExaminationProject",
- // OnSelect = "reload",
- // GridOptions = new DataGridOptions
- // {
- // Columns = new List<DataGridColumn>()
- // {
- // new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center }
- // },
- // IsCheckOnSelect = true,
- // DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetProjectListViewGrid"),
- // IsPagination = true,
- // IsShowRowNumbers = true,
- // IsSingleSelect = false
- // }
- //};
- ComboGridOptions cgopExaminationBatch = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "ExaminationBatchID",
- ID = "cgExaminationBatch",
- Name = "cgExaminationBatch",
- OnSelect = "queryBatch",
- //IsEnabled = false,
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="Name", HeaderText="考试批次", Align=AlignStyle.Center, Width = 0.3 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationBatchViewGrid"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- //OnLoadSuccessFun = "queryBatch",
- }
- };
- ComboGridOptions cgopExaminationType = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "ExaminationTypeID",
- Name = "cgExaminationType",
- ID = "cgExaminationType",
- OnSelect = "queryType",
- //IsEnabled = false,
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="Name", HeaderText="考试类型", Align=AlignStyle.Center, Width = 0.3 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetExaminationTypeViewGrid"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- //OnLoadSuccessFun = "queryType",
- }
- };
- ComboGridOptions cgopExaminationProject = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "ExaminationProjectID",
- Name = "cgExaminationProject",
- ID = "cgExaminationProject",
- OnSelect = "reload",
- //IsEnabled = false,
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="Name", HeaderText="项目名称", Align=AlignStyle.Center, Width = 0.3 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/ExaminationApplayStudentList/GetProjectListViewGrid"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- //OnLoadSuccessFun = "queryProject",
- }
- };
- ComboGridOptions cgopCampus = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CampusID",
- ID = "cgCampus",
- Name = "cgCampus",
- OnSelect = "queryCollege",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center }
- },
- OnLoadSuccessFun = "reload",
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Campus/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions cgopCollege = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CollegeID",
- ID = "cgCollege",
- Name = "cgCollege",
- OnSelect = "queryClassmajor",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center }
- },
- //OnLoadSuccessFun = "reload",
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/College/ListOnlyCollege"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions cgopStandard = new ComboGridOptions
- {
- TextField = "StandardName",
- ValueField = "StandardID",
- OnSelect = "queryClassmajor",
- Name = "DictionaryStandard",
- ID = "DictionaryStandard",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, Width=0.1 }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Grademajor/GrademajorBindComboGridOptions"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- }
- };
- ComboGridOptions cgopClassmajor = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "ClassmajorID",
- Name = "cgClassmajor",
- ID = "cgClassmajor",
- OnSelect = "reload",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Classmajor/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- }
- };
- }
- @section scripts{
- <script src="~/Scripts/Business/ScoreManage/ExaminationScore.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- <form id="formQuery" method="post" action="@Url.Content("~/ExaminationScore/Excel")">
- @Html.PositionCondition()
- <div class="search_keyword">
- @Html.Hidden("SelectedID")
- <div class="search_input">
- <ul>
- <li class="sn" style="padding-left: 5px;">学年学期:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "querySchoolYear", OnLoadSuccess = "querySchoolYear", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() }, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">考试批次:</li>
- <li class="sv">
- @Html.ComboGrid(cgopExaminationBatch, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">考试类型:</li>
- <li class="sv">
- @Html.ComboGrid(cgopExaminationType, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">项目名称:</li>
- <li class="sv">
- @Html.ComboGrid(cgopExaminationProject, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- </ul>
- @*<ul>
- <li class="sn" style="padding-left: 5px;">学年学期:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"),
- ID = "ddlSchoolyear",
- Name = "ddlSchoolyear",
- OnSelect = "schoolyearChange",
- SelectedValue = BaseExtensions.GetCurrentSchoolYearID(),
- OnLoadSuccess = "schoolyearChange"
- },
- new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">考试批次:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ID = "ddlExaminationBatch",
- Name = "ddlExaminationBatch",
- OnSelect = "examinationBatchChange",
- OnLoadSuccess = "examinationBatchChange"
- },
- new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">考试类型:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ID = "ddlExaminationType",
- Name = "ddlExaminationType",
- OnSelect = "examinationTypeChange",
- OnLoadSuccess = "examinationTypeChange"
- },
- new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">项目名称:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions
- {
- BindType = DropdownListBindType.SelectAll,
- ID = "ddlExaminationProject",
- Name = "ddlExaminationProject",
- OnSelect = "reload",
- },
- new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- </ul>*@
- <ul>
- <li class="sn" style="padding-left: 5px;">校区:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_SchoolArea, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlSchoolArea", Name = "ddlSchoolArea", OnSelect = "reload" }, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
- <li class="sv">
- @Html.ComboGrid(cgopCollege, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">年级:</li>
- <li class="sv">
- @Html.SchoolYearDropDownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlYear", Name = "ddlYear", OnSelect = "queryClassmajor" }, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">专业:</li>
- <li class="sv">
- @Html.ComboGrid(cgopStandard, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- </ul>
- <ul>
- <li class="sn" style="padding-left: 5px;">班级名称:</li>
- <li class="sv">
- @Html.ComboGrid(cgopClassmajor, new Dictionary<string, string> { { "data-condition", "dgExaminationScoreList" } })
- </li>
- </ul>
- </div>
- </div>
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- 项目成绩
- </div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px ;" width="0.7">@Html.ContextMenuBar("List")</div>
- </div>
- </form>
- @Html.PositionBatchModify()
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationScoreID",Width=0.05},
- new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center,Width=0.04},
- new BoundFieldColumn { FieldName="ExaminationBatchName", HeaderText="考试批次", Align=AlignStyle.Center,Width=0.04},
- new BoundFieldColumn { FieldName="ExaminationTypeName", HeaderText="考试类型", Align=AlignStyle.Center,Width=0.04},
- new BoundFieldColumn { FieldName="ExaminationProjectName", HeaderText="考试项目", Align=AlignStyle.Center,Width=0.08 },
- new BoundFieldColumn { FieldName="ExaminationSubjectName", HeaderText="科目考核项", Align=AlignStyle.Center,Width=0.03},
- new BoundFieldColumn { FieldName="SchoolAreaName", HeaderText="校区", Align=AlignStyle.Center,Width=0.05 },
- new BoundFieldColumn { FieldName="CollegeName", HeaderText="院系", Align=AlignStyle.Center,Width=0.08 },
- new BoundFieldColumn { FieldName="SchoolyearNumID", HeaderText="年级", Align=AlignStyle.Center,Width=0.03 },
- new BoundFieldColumn { FieldName="StandardName", HeaderText="专业", Align=AlignStyle.Center,Width=0.08 },
- new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级", Align=AlignStyle.Center,Width=0.08 },
- new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center,Width=0.03 },
- new BoundFieldColumn { FieldName="CertificatesTypeName", HeaderText="证件类型", Align=AlignStyle.Center,Width=0.05 },
- new BoundFieldColumn { FieldName="IDNumber", HeaderText="证件号码", Align=AlignStyle.Center,Width=0.12 },
- new BoundFieldColumn { FieldName="Score", HeaderText="成绩", Align=AlignStyle.Center, Width=0.02 },
- new BoundFieldColumn { FieldName="Expire", HeaderText="有效日期", Align=AlignStyle.Center, Width=0.04, Formatter=Formatter.OnlyYearMonthDay},
- new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.02},
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/ExaminationScore/List"),
- ID = "dgExaminationScoreList",
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- })
- </div>
- </div>
|