@using Bowin.Web.Controls.Mvc;
@using EMIS.Web.Controls;
@{
ViewBag.Title = "List";
}
@section scripts{
}
@Html.Position()
课酬统计列表
@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
})