@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 = "examinationBatchChange", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { 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 = "examinationTypeChange", //IsEnabled = false, GridOptions = new DataGridOptions { Columns = new List() { 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() { 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", } }; } @section scripts{ }
@Html.Position()
@Html.PositionCondition() @Html.Hidden("selectedIDs")
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolyear", Name = "ddlSchoolyear", OnSelect = "querySchoolYear", SelectedValue = BaseExtensions.GetCurrentSchoolYearID() }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 考试批次:
  • @Html.ComboGrid(cgopExaminationBatch, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 考试类型:
  • @Html.ComboGrid(cgopExaminationType, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 项目名称:
  • @Html.ComboGrid(cgopExaminationProject, new Dictionary { { "data-condition", "dgStudentFeeList" } })
@*
  • 学年学期:
  • @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 { { "data-condition", "dgStudentFeeList" } })
  • 考试批次:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationBatch", Name = "ddlExaminationBatch", OnSelect = "examinationBatchChange", OnLoadSuccess = "examinationBatchChange" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 考试类型:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationType", Name = "ddlExaminationType", OnSelect = "examinationTypeChange", OnLoadSuccess = "examinationTypeChange" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 项目名称:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlExaminationProject", Name = "ddlExaminationProject", OnSelect = "reload", OnLoadSuccess = "examinationProjectLoaded" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
*@
  • 校区:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_SchoolArea, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlSchoolArea", Name = "ddlSchoolArea", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlCollege", Name = "ddlCollege", OnSelect = "collegeSelect", OnLoadSuccess = "collegeChange" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 年级:
  • @Html.SchoolYearDropDownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlYear", Name = "ddlYear", OnSelect = "collegeSelect" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 班级:
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "ClassmajorID", Name = "cgbClassmajor", ID = "cgbClassmajor", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Align=AlignStyle.Center } }, //IsAutoLoad = false, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Classmajor/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 缴费状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.EX_ExaminationRegistrationStatus, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlRecordStatus", Name = "ddlRecordStatus", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 是否已确认:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlIsConfirm", Name = "ddlIsConfirm", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 缴费时间:
  • @Html.TextBox(new TextBoxOptions { ID = "StartDate", Name = "StartDate", TextBoxType = TextBoxType.Date, OnChange = "startDateChanged" }, new Dictionary { { "data-condition", "dgStudentFeeList" } }) 至 @Html.TextBox(new TextBoxOptions { ID = "EndDate", Name = "EndDate", TextBoxType = TextBoxType.Date, OnSelect = "endDateChanged" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 缴费方式:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.EX_PayWay, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "ddlPayWay", Name = "ddlPayWay", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
  • 退费时间:
  • @Html.TextBox(new TextBoxOptions { ID = "RefundStartDate", Name = "RefundStartDate", TextBoxType = TextBoxType.Date, OnChange = "refundStartDateChanged" }, new Dictionary { { "data-condition", "dgStudentFeeList" } }) 至 @Html.TextBox(new TextBoxOptions { ID = "RefundEndDate", Name = "RefundEndDate", TextBoxType = TextBoxType.Date, OnSelect = "refundEndDateChanged" }, new Dictionary { { "data-condition", "dgStudentFeeList" } })
考试科目列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="ExaminationRegistrationID" }, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width = 0.08 }, new BoundFieldColumn { FieldName="ExaminationBatchName", HeaderText="考试批次", Align=AlignStyle.Center, Width = 0.1 }, new BoundFieldColumn { FieldName="ExaminationProjectName", HeaderText="项目名称", Align=AlignStyle.Center, Width = 0.1 }, new BoundFieldColumn { FieldName="SchoolAreaName", HeaderText="校区", Align=AlignStyle.Center, Width = 0.08 }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级", Align=AlignStyle.Center, Width = 0.1 }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center, Width = 0.06 }, new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, Width = 0.04 }, new BoundFieldColumn { FieldName="CertificatesTypeName", HeaderText="证件类型", Align=AlignStyle.Center, Width = 0.06 }, new BoundFieldColumn { FieldName="IDNumber", HeaderText="证件号码", Align=AlignStyle.Center, Width = 0.14 }, new BoundFieldColumn { FieldName="FeeTypeName", HeaderText="报名项目", Align=AlignStyle.Center, Width = 0.1 }, new BoundFieldColumn { FieldName="Fee", HeaderText="金额", Align=AlignStyle.Center, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit", Width = 0.06 }, new BoundFieldColumn { FieldName="RecordStatusName", HeaderText="缴费状态", Align=AlignStyle.Center, Width = 0.06 }, new BoundFieldColumn { FieldName="PayWayStr", HeaderText="缴费方式", Align=AlignStyle.Center, Width = 0.06 }, new BoundFieldColumn { FieldName="PayTime", HeaderText="缴费时间", Align=AlignStyle.Center, Formatter=Formatter.LongDate, Width = 0.1 }, new BoundFieldColumn { FieldName="RefundTime", HeaderText="申请退费时间", Align=AlignStyle.Center, Formatter=Formatter.LongDate, Width = 0.1 }, new BoundFieldColumn { FieldName="RefundConfirmTime", HeaderText="确认退费时间", Align=AlignStyle.Center, Formatter=Formatter.LongDate, Width = 0.1 }, new BoundFieldColumn { FieldName="WechatOrderID", HeaderText="微信订单号", Align=AlignStyle.Center, Width = 0.2 }, new BoundFieldColumn { FieldName="RefundOrderID", HeaderText="微信退款单号", Align=AlignStyle.Center, Width = 0.2 }, new BoundFieldColumn { FieldName="No", HeaderText="确认单号", Align=AlignStyle.Center, Width = 0.1 }, new BoundFieldColumn { FieldName="ReceiptNo", HeaderText="收据号", Align=AlignStyle.Center, Width = 0.1 } }, OnLoadSuccessFun = "gridLoaded", IsAutoLoad = false, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/StudentFee/List"), ID = "dgStudentFeeList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })