123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- @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<DataGridColumn>()
- {
-
- new BoundFieldColumn { FieldName="ChrageProjectName", HeaderText="收费项目", Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/ChargeProject/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- }
- };
- }
- @section scripts{
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- //欠费
- var isArrear = "@((int)EMIS.ViewModel.CF_GeneralPurpose.IsYes)";
- //刷新
- function reload() {
- $("#dgStudentChargeList").cmsXDataTable("load", $.getDataGridParams("dgStudentChargeList"));
- }
- //设置列颜色为红色
- function SetRedColumn(index, row, value) {
- return " <span style=\"color: red;\">" + value + "</span>";
- }
- //设置相应的行颜色为红色
- function SetRedGrid(rowIndex, rowData) {
- if (rowData.IsArrear == isArrear) {
- return "color: red;";
- } else {
- return "";
- }
- }
- //Excel导出
- function StudentChargeListExcel() {
- $("#formQuery").submit();
- }
- </script>
- }
- <div class="easyui-panel" data-options="border:false,fit:true" style="position: relative;">
- <form id="formQuery" method="post" action="@Url.Content("~/GraduationApply/StudentChargeListExcel?graduationApplyID=" + graduationApplyID)">
- @Html.PositionCondition("StudentChargeGraduationApply")
- <div class="search_keyword">
- <div class="search_input">
- <ul>
- <li class="sn" style="padding-left: 5px;">缴费学年:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Grade, new DropdownListOptions
- {
- ID = "DictionaryChargeYear",
- Name = "DictionaryChargeYear",
- BindType = DropdownListBindType.SelectAll,
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStudentChargeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">收费项目:</li>
- <li class="sv">
- @Html.ComboGrid(cgopChargeProject, new Dictionary<string, string> { { "data-condition", "dgStudentChargeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">缴费标记:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.EC_ChargeTag, new DropdownListOptions
- {
- ID = "DictionaryChargeTag",
- Name = "DictionaryChargeTag",
- BindType = DropdownListBindType.SelectAll,
- OnSelect = "reload"
- }, new Dictionary<string, string> { { "data-condition", "dgStudentChargeList" } })
- </li>
- <li class="sn" style="padding-left: 5px; color: red; width: 85px;">欠费状态:</li>
- <li class="sv">
- @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<string, string> { { "data-condition", "dgStudentChargeList" } })
- </li>
- </ul>
- </div>
- </div>
- <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("SCDetail")</div>
- </div>
- </form>
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- 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
- })
- </div>
- </div>
|