@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; //校区 ComboGridOptions cgopCampus = new ComboGridOptions { TextField = "Name", ValueField = "CampusID", ID = "CampusDropdown", Name = "CampusDropdown", OnSelect = "queryCampus", GridOptions = new DataGridOptions { Columns = new List() { //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center, Width=0.12 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Campus/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; //院系所 ComboGridOptions cgopCollege = new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", ID = "CollegeDropdown", Name = "CollegeDropdown", OnSelect = "queryCollege", GridOptions = new DataGridOptions { Columns = new List() { //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.1 }, new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center, Width=0.2 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/ListOnlyCollege"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; //年级 ComboGridOptions cgopGrade = new ComboGridOptions { TextField = "GradeID", ValueField = "GradeID", ID = "DictionaryGrade", Name = "DictionaryGrade", OnSelect = "queryGrade", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="GradeID", HeaderText="年级", Align=AlignStyle.Center, Width=0.1 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Grademajor/GradeBindComboGridOptions"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; //专业名称 ComboGridOptions cgopStandard = new ComboGridOptions { TextField = "StandardName", ValueField = "StandardID", ID = "DictionaryStandard", Name = "DictionaryStandard", OnSelect = "queryStandard", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="StandardCode", HeaderText="专业代码", Align=AlignStyle.Center, Width=0.06 }, new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, Width=0.1 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Grademajor/StandardBindComboGridOptions"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, } }; //学制 ComboGridOptions cgopLearnSystem = new ComboGridOptions { TextField = "LearnSystem", ValueField = "LearnSystem", ID = "DictionaryLearnSystem", Name = "DictionaryLearnSystem", OnSelect = "queryLearnSystem", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="LearnSystem", HeaderText="学制", Align=AlignStyle.Center } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Facultymajor/LearnSystem"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false, IsShowHeader = false } }; } @section scripts{ }
@Html.Position()
查询条件
@Html.PositionCondition()
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid"), SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • @EMIS.Utility.RSL.Get("Campus"):
  • @Html.ComboGrid(cgopCampus, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(cgopCollege, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 年级:
  • @*@Html.ComboGrid(cgopGrade, new Dictionary { { "data-condition", "dgStudentEncourageList" } })*@ @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Grade, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryGrade", Name = "DictionaryGrade", OnSelect = "queryGrade" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 专业名称:
  • @Html.ComboGrid(cgopStandard, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • @Html.RSLabel("EducationID"):
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Education, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryEducation", Name = "DictionaryEducation", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 学习形式:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Learningform, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryLearningform", Name = "DictionaryLearningform", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 学制:
  • @Html.ComboGrid(cgopLearnSystem, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 奖励名称:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.EM_EncourageName, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryEncourageName", Name = "DictionaryEncourageName", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 奖励类型:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.EM_EncourageType, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryEncourageType", Name = "DictionaryEncourageType", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • @*
  • 奖励级别:
  • @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.EM_EncourageLevel, DropdownListBindType.SelectAll, new ComboGridOptions { ID = "DictionaryEncourageLevel", Name = "DictionaryEncourageLevel", OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • *@
  • 在校状态:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_INOrOutSchoolStatus, new DropdownListOptions { ID = "DictionaryInschoolStatus", Name = "DictionaryInschoolStatus", BindType = DropdownListBindType.SelectAll, SelectedValue = (int)EMIS.ViewModel.CF_INOrOutSchoolStatus.Yes, OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
  • 状态:
  • @Html.DropdownList(new DropdownListOptions { ID = "DictionaryApprovalStatus", Name = "DictionaryApprovalStatus", BindType = DropdownListBindType.SelectAll, //SelectedValue = BaseExtensions.GetStartFlowStatus(typeof(EMIS.Entities.EM_StudentEncourage).Name), ItemSourceUrl = Url.Content("~/Common/ApproveStatusDropDown?tableName=" + typeof(EMIS.Entities.EM_StudentEncourage).Name), OnSelect = "reload" }, new Dictionary { { "data-condition", "dgStudentEncourageList" } })
学生奖励列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new CheckBoxFieldColumn{ HeaderText="", FieldName="StudentEncourageID" }, new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width=0.06 }, new LinkButtonColumn { FieldName="StudentNo", HeaderText="学号", Align=AlignStyle.Center, Handle="edit", Width=0.08 }, new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, OrderFieldName="SexID", Width=0.02 }, //new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Width=0.05, Formatter = Formatter.OnlyYearMonthDay }, //new BoundFieldColumn { FieldName="NationName", HeaderText="民族", Align=AlignStyle.Center, OrderFieldName="NationID", Width=0.03 }, //new BoundFieldColumn { FieldName="PoliticsName", HeaderText="政治面貌", Align=AlignStyle.Center, OrderFieldName="PoliticsID", Width=0.04 }, //new BoundFieldColumn { FieldName="GradeID", HeaderText="年级", Align=AlignStyle.Center, OrderFieldName="GradeID", Width=0.03 }, //new BoundFieldColumn { FieldName="ClassNum", HeaderText="班序", Align=AlignStyle.Center, Width=0.02 }, //new BoundFieldColumn { FieldName="ClassmajorNo", HeaderText="班级编号", Align=AlignStyle.Center, Width=0.06 }, new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级名称", Align=AlignStyle.Center, Width=0.08, OverflowLength=8 }, //new BoundFieldColumn { FieldName="StandardCode", HeaderText="专业代码", Align=AlignStyle.Center, OrderFieldName="StandardID", Width=0.06 }, //new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, OrderFieldName="StandardID", Width=0.08 }, //new BoundFieldColumn { FieldName="EducationName", HeaderText=EMIS.Utility.RSL.Get("EducationID"), Align=AlignStyle.Center, OrderFieldName="EducationID", Width=0.04 }, //new BoundFieldColumn { FieldName="LearningformName", HeaderText="学习形式", Align=AlignStyle.Center, OrderFieldName="LearningformID", Width=0.06 }, //new BoundFieldColumn { FieldName="LearnSystem", HeaderText="学制", Align=AlignStyle.Center, Width=0.03 }, new BoundFieldColumn { FieldName="InSchoolStatusName", HeaderText="在校状态", Align=AlignStyle.Center, OrderFieldName="InSchoolStatusID", Width=0.04 }, //new BoundFieldColumn { FieldName="StudentStatusName", HeaderText="学籍状态", Align=AlignStyle.Center, OrderFieldName="StudentStatus", Width=0.04 }, //new BoundFieldColumn { FieldName="CollegeNo", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.05 }, new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.08, OverflowLength=8 }, //new BoundFieldColumn { FieldName="CampusCode", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.05 }, //new BoundFieldColumn { FieldName="CampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.06, OverflowLength=8 }, new BoundFieldColumn { FieldName="EncourageName", HeaderText="奖励名称", Align=AlignStyle.Center, OrderFieldName="EncourageNameID", Width=0.04 }, new BoundFieldColumn { FieldName="EncourageTypeName", HeaderText="奖励类型", Align=AlignStyle.Center, OrderFieldName="EncourageTypeID", Width=0.04 }, new BoundFieldColumn { FieldName="EncourageLevelName", HeaderText="奖励级别", Align=AlignStyle.Center, OrderFieldName="EncourageLevelID", Width=0.04 }, new BoundFieldColumn { FieldName="DocNo", HeaderText="奖励文号", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="Unit", HeaderText="颁奖单位", Align=AlignStyle.Center, Width=0.05, OverflowLength=5 }, new BoundFieldColumn { FieldName="EncourageDate", HeaderText="奖励日期", Align=AlignStyle.Center, Width=0.05, Formatter = Formatter.OnlyYearMonthDay }, new BoundFieldColumn { FieldName="Amount", HeaderText="奖励金额", Align=AlignStyle.Center, Width=0.04 }, new BoundFieldColumn { FieldName="Reason", HeaderText="奖励原因", Align=AlignStyle.Center, Width=0.04, OverflowLength=5 }, new ApproveStatusColumn { FieldName="ApprovalStatusName", TableName=typeof(EMIS.Entities.EM_StudentEncourage).Name, IDFieldName="StudentEncourageID", HeaderText="状态", Align=AlignStyle.Center, Width=0.03 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/StudentEncourage/List"), ID = "dgStudentEncourageList", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })