@using EMIS.Web.Controls; @using Bowin.Web.Controls.Mvc; @{ ViewBag.Title = "StudentChargeList"; Guid? graduationApplyID = new Guid(Request["graduationApplyID"]); //收费项目 ComboGridOptions cgopChargeProject = new ComboGridOptions { TextField = "ChrageProjectName", ValueField = "ChargeProjectID", ID = "ChargeProjectComboGrid", Name = "ChargeProjectComboGrid", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="ChrageProjectName", HeaderText="收费项目", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/ChargeProject/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }; } @section scripts{ }
@Html.PositionCondition("StudentChargeGraduationApply")
  • 缴费学年:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Grade, new DropdownListOptions { ID = "DictionaryChargeYear", Name = "DictionaryChargeYear", BindType = DropdownListBindType.SelectAll, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentChargeList" } })
  • 收费项目:
  • @Html.ComboGrid(cgopChargeProject, new Dictionary { { "data-condition", "dgStudentChargeList" } })
  • 缴费标记:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.EC_ChargeTag, new DropdownListOptions { ID = "DictionaryChargeTag", Name = "DictionaryChargeTag", BindType = DropdownListBindType.SelectAll, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentChargeList" } })
  • 欠费状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { ID = "DictionaryIsArrear", Name = "DictionaryIsArrear", BindType = DropdownListBindType.SelectAll, //SelectedValue = (int)EMIS.ViewModel.CF_GeneralPurpose.IsYes, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentChargeList" } })
@Html.ContextMenuBar("SCDetail")
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="StudentChargeID" }, new BoundFieldColumn { FieldName="StudentNo", HeaderText="学号", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="UserName", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="ClassName", HeaderText="班级名称", Align=AlignStyle.Center, Width=0.1 }, //new BoundFieldColumn { FieldName="GradeMajoyStr", HeaderText="年级专业名称", Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="ChargeYear", HeaderText="缴费学年", OrderFieldName="ChargeYear", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="ChargeProjectStr", HeaderText="收费项目", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="Amount", HeaderText="应收金额", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="ChargeAmount", HeaderText="调整金额", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="ActualAmount", HeaderText="实收金额", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="ChargeTagName", HeaderText="缴费标记", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="PaidAmount", HeaderText="已缴金额", Align=AlignStyle.Center, Width=0.04, CustomFormatFun="SetRedColumn" }, new BoundFieldColumn { FieldName="IsArrearName", HeaderText="欠费状态", OrderFieldName="IsArrear", Align=AlignStyle.Center, Width=0.04, CustomFormatFun="SetRedColumn" } //new BoundFieldColumn { FieldName="IsDreamProject", HeaderText="是否圆梦计划", OrderFieldName="IsDream", Align=AlignStyle.Center, Width=0.06 }, //new BoundFieldColumn { FieldName="InSchoolStatusName", HeaderText="在校状态", OrderFieldName="InSchoolStatusID", Align=AlignStyle.Center, Width=0.05 }, //new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width =0.03 } }, CustomerRowStyleFun = "SetRedGrid", IsPostBack = true, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/GraduationApply/StudentChargeList?graduationApplyID=" + graduationApplyID), ID = "dgStudentChargeList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })