123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- }
- @section scripts{
- <script src="../../Scripts/Business/PaymentManage/Payment.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- @Html.Position()
- <div class="p_SearchTitle">
- <div style="float: left; margin-left: 10px; font-size: 12px; line-height: 30px;">
- 查询条件
- </div>
- </div>
- <form id="formQuery" method="post" action="@Url.Content("~/Payment/Excel")">
- @Html.PositionCondition()
- <div class="search_keyword">
- @Html.Hidden("SelectedID")
- <div class="search_input">
- <ul>
- <li class="sn" style="padding-left: 5px;">学年学期:</li>
- <li class="sv">
- @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<string, string> { { "data-condition", "dgPaymentDetail" } })
- </li>
- <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
- <li class="sv">
- @Html.ComboGrid(new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CollegeID",
- Name = "cbgCollege",
- ID = "cbgCollege",
- OnSelect = "reload",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- 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<string, string> { { "data-condition", "dgPaymentDetail" } })
- </li>
- <li class="sn" style="padding-left: 5px;">职称:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Title, new DropdownListOptions { ID = "ddlTitle", Name = "ddlTitle", BindType = DropdownListBindType.SelectAll, OnSelect = "reload", OnLoadSuccess = "reload" }, new Dictionary<string, string> { { "data-condition", "dgPaymentDetail" } })
- </li>
- </ul>
- </div>
- </div>
- </form>
- <div class="p_title">
- <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
- 课酬统计列表
- </div>
- <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("List")</div>
- </div>
- @Html.PositionBatchModify()
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- 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
- })
- </div>
- </div>
|