@using Bowin.Web.Controls.Mvc; @using EMIS.Web.Controls; @{ ViewBag.Title = "List"; } @section scripts{ }
@Html.Position()
查询条件
@Html.PositionCondition()
@Html.Hidden("SelectedID")
  • 学年学期:
  • @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, SelectedValue = BaseExtensions.GetCurrentSchoolYearID(), ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "ddlSchoolYear", Name = "ddlSchoolYear", OnSelect = "reload", OnLoadSuccess="reload" }, new Dictionary { { "data-condition", "dgPaymentDetail" } })
  • @EMIS.Utility.RSL.Get("College"):
  • @Html.ComboGrid(new ComboGridOptions { TextField = "Name", ValueField = "CollegeID", Name = "cbgCollege", ID = "cbgCollege", OnSelect = "reload", GridOptions = new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center } }, OnLoadSuccessFun = "reload", IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/College/List"), IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false } }, new Dictionary { { "data-condition", "dgPaymentDetail" } })
  • 职称:
  • @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Title, new DropdownListOptions { ID = "ddlTitle", Name = "ddlTitle", BindType = DropdownListBindType.SelectAll, OnSelect = "reload", OnLoadSuccess = "reload" }, new Dictionary { { "data-condition", "dgPaymentDetail" } })
课酬统计列表
@Html.ContextMenuBar("List")
@Html.PositionBatchModify()
@Html.DataGrid(new DataGridOptions { Columns = new List() { new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center, Width=100 }, new BoundFieldColumn { FieldName="CollegeName", HeaderText=EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=60 }, new BoundFieldColumn { FieldName="UserName", HeaderText="任课老师", Align=AlignStyle.Center, Width=60 }, new BoundFieldColumn { FieldName="TitleDesc", HeaderText="职称", Align=AlignStyle.Center, Width=100 }, new BoundFieldColumn { FieldName="PaymentStandard", HeaderText="标准课酬", Align=AlignStyle.Center, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit", Width=80 }, new BoundFieldColumn { FieldName="EducationDesc", HeaderText=EMIS.Utility.RSL.Get("EducationID"), Align=AlignStyle.Center, Width=60 }, new BoundFieldColumn { FieldName="LearningformDesc", HeaderText="学习形式", Align=AlignStyle.Center, Width=100 }, new BoundFieldColumn { FieldName="LearningformRate", HeaderText="形式系数", Align=AlignStyle.Center, Width=80, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }, new BoundFieldColumn { FieldName="StudentCount", HeaderText="班级人数", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="ExemptionCount", HeaderText="免考人数", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="ActualStudentCount", HeaderText="实际人数", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="StudentCountRate", HeaderText="人数系数", Align=AlignStyle.Center, Width=80, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }, new BoundFieldColumn { FieldName="RetakeStudentCount", HeaderText="重修人数", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="ScheduleDayCount", HeaderText="排课天数", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="ActualScheduleHours", HeaderText="实际学时", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="HoursPayment", HeaderText="课时课酬", Align=AlignStyle.Center, Width=80, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }, new BoundFieldColumn { FieldName="PracticeHours", HeaderText="实践学时", Align=AlignStyle.Center, Width=80 }, new BoundFieldColumn { FieldName="PracticeRate", HeaderText="实践系数", Align=AlignStyle.Center, Width=80, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }, new BoundFieldColumn { FieldName="PracticePayment", HeaderText="实践课酬", Align=AlignStyle.Center, Width=80, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }, new BoundFieldColumn { FieldName="TotalPayment", HeaderText="总课酬", Align=AlignStyle.Center, Width=80, CustomFormatFun="CMSFunction.DataTableFormatter.TwoDigit" }, new BoundFieldColumn { FieldName="ClasamajorName", HeaderText="班级名称", Align=AlignStyle.Center, Width=200 }, new BoundFieldColumn { FieldName="CoursematerialName", HeaderText="课程名称", Align=AlignStyle.Center, OverflowLength=14, Width=120 }, new BoundFieldColumn { FieldName="PlanTotalHours", HeaderText="计划学时", Align=AlignStyle.Center, Width=60 }, new BoundFieldColumn { FieldName="TimeSegmentDesc", HeaderText="课时类别", Align=AlignStyle.Center, Width=60 }, new BoundFieldColumn { FieldName="ExaminationModeDesc", HeaderText="考核方式", Align=AlignStyle.Center, Width=80 } }, IsCheckOnSelect = true, DataSourceUrl = Url.Content("~/Payment/List"), ID = "dgPaymentDetail", IsPagination = true, IsShowRowNumbers = true, IsSingleSelect = false })