123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379 |
- @using Bowin.Web.Controls.Mvc;
- @using EMIS.Web.Controls;
- @{
- ViewBag.Title = "List";
- ComboGridOptions cgopCampus = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CampusID",
- OnSelect = "QueryCampusComboGridList",
- Name = "CampusDropdown",
- ID = "CampusDropdown",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center },
- new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Campus/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions cgopCollege = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "CollegeID",
- OnSelect = "queryCollege",
- Name = "CollegeDropdown",
- ID = "CollegeDropdown",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- // new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center },
- new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/College/ListOnlyCollege"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions cgop = new ComboGridOptions
- {
- TextField = "Name",
- ValueField = "GrademajorID",
- OnSelect = "QueryComboGridList",
- Name = "ComboGridGrademajor",
- ID = "ComboGridGrademajor",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- // new LinkButtonColumn { FieldName="Code", HeaderText="年级专业代码", Align=AlignStyle.Center },
- new BoundFieldColumn { FieldName="Name", HeaderText="年级专业名称", Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Grademajor/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions Csop = new ComboGridOptions
- {
- TextField = "CourseName",
- ValueField = "CoursematerialID",
- ID = "CourseDropdown",
- Name = "CourseDropdown",
- OnSelect = "QueryCourseDropdownList",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- // new LinkButtonColumn { FieldName="CourseCode", HeaderText="课程代码", Align=AlignStyle.Center },
- new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Coursematerial/ListForDropdown"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- }
- };
- ComboGridOptions cgopStandard = new ComboGridOptions
- {
- TextField = "StandardName",
- ValueField = "StandardID",
- OnSelect = "queryStandard",
- Name = "ddlStandard",
- ID = "ddlStandard",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/Grademajor/StandardBindComboGridOptions"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false,
- }
- };
- ComboGridOptions MaterialCode = new ComboGridOptions
- {
- TextField = "TeachingMaterialName",
- ValueField = "TeachingMaterialPoolID",
- ID = "TeachingMaterialDropdown",
- Name = "TeachingMaterialDropdown",
- OnSelect = "QueryTeachingMaterialDropdownList",
- GridOptions = new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new BoundFieldColumn { FieldName="TeachingMaterialName",HeaderText="教材名称", Align=AlignStyle.Center },
- // new BoundFieldColumn { FieldName="TeachingMaterialCode",HeaderText="教材编号", Align=AlignStyle.Center }
- },
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/TeachingMaterialPool/List"),
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- }
- };
- }
- @section scripts{
- <script src="../../Scripts/Business/TeachingMaterial/StudentDistribute.js" type="text/javascript"></script>
- <script type="text/javascript">
- var nonSelect = "@DropdownList.SELECT_ALL";
- </script>
- <script type="text/javascript">
- //设置单元格颜色
- function XNSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function YXSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function NJSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function KCMSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function JCMSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function JCBHMSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
-
- function DJSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function ZKLSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function ZHJSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function XSSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function ZJSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function KCSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- function StateSetColors(index, row, value) {
- if (row.TeachingMaterialName == null || row.TeachingMaterialName == undefined || row.TeachingMaterialName == "") {
- return " <span style=\"color:red;\">" + value + "</span>";
- }
- else {
- return value
- }
- }
- </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("~/StudentDistribute/Excel")">
- @Html.PositionCondition()
- <div class="search_keyword">
- <div class="search_input">
- <ul>
- @* <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("Campus"):</li>
- <li class="sv">
- @Html.ComboGrid(cgopCampus, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>*@
- <li class="sn" style="padding-left: 5px;">学年学期:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/SchoolYear/DropDown"), ID = "SchoolyearDropdown", Name = "SchoolyearDropdown", OnSelect = "queryClass", SelectedValue =@ViewBag.SchoolYearID }, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
- <li class="sv">
- @Html.ComboGrid(cgopCollege, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">年级:</li>
- <li class="sv">
- @Html.SchoolYearDropDownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "DictionarySchoolyear", Name = "DictionarySchoolyear", OnSelect = "queryClass", SelectedValue=BaseExtensions.GetCurrentYearID() }, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">专业名称:</li>
- <li class="sv">
- @Html.ComboGrid(cgopStandard, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- @*<li class="sn" style="padding-left: 5px;">专业名称:</li>
- <li class="sv">
- @Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Facultymajor/BindStandardDropDownList"), Name = "ddlStandard", ID = "ddlStandard", OnSelect = "reloadClassmajor" }, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })@*//, OnLoadSuccess = "reloadClassmajor"
- </li>*@
-
- @*<li class="sn" style="padding-left: 5px;">年级:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_Grade, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ID = "DictionarySchoolyear", Name = "DictionarySchoolyear", OnSelect = "QuerySchoolyearDictionaryList" }, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>*@
- </ul>
- <ul>
- <li class="sn" style="padding-left: 5px;">年级专业:</li>
- <li class="sv">
- @*@Html.DropdownList(new DropdownListOptions { BindType = DropdownListBindType.SelectAll, ItemSourceUrl = Url.Content("~/Grademajor/BindDropdownListByCollege"), Name = "ComboGridGrademajor", ID = "ComboGridGrademajor", OnSelect = "QueryComboGridList", OnLoadSuccess = "QueryComboGridList" }, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })*@
- @Html.ComboGrid(cgop, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">课程名称:</li>
- <li class="sv">
- @Html.ComboGrid(Csop, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">教材名称:</li>
- <li class="sv">
- @Html.ComboGrid(MaterialCode, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </li>
- <li class="sn" style="padding-left: 5px;">发放状态:</li>
- <li class="sv">
- @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_GeneralPurpose, new DropdownListOptions { BindType = DropdownListBindType.SelectAll, Name = "OrderedDropdown", ID = "OrderedDropdown", OnSelect = "QueryOrderedDropdownList" }, new Dictionary<string, string> { { "data-condition", "dgStudentDistributeList" } })
- </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>
- <div class="search_list">
- @Html.DataGrid(new DataGridOptions
- {
- Columns = new List<DataGridColumn>()
- {
- new CheckBoxFieldColumn{ HeaderText="", FieldName="StudentDistributeID", Align=AlignStyle.Center },
- new BoundFieldColumn { FieldName="SchoolyearCode", HeaderText="学年学期", Align=AlignStyle.Center,CustomFormatFun="XNSetColors", Width=0.06 },
- //new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center ,CustomFormatFun="YXSetColors", Width=0.08 },
- new BoundFieldColumn { FieldName="GradeSpecialtyName", HeaderText="年级专业名称", Align=AlignStyle.Center,CustomFormatFun="NJSetColors", Width=0.1 },
- new BoundFieldColumn { FieldName="CourseCode", HeaderText="课程代码", Align=AlignStyle.Center,CustomFormatFun="KCMSetColors", Width=0.06 },
- new BoundFieldColumn { FieldName="CourseName", HeaderText="课程名称", Align=AlignStyle.Center,CustomFormatFun="KCMSetColors", Width=0.1, OverflowLength=15 },
- new BoundFieldColumn { FieldName="StudentQty", HeaderText="人数", Align=AlignStyle.Center,CustomFormatFun="XSSetColors", Width=0.03 },
- new BoundFieldColumn { FieldName="OrderQty", HeaderText="征订数量", Align=AlignStyle.Center,CustomFormatFun="ZJSetColors", Width=0.04 },
- new BoundFieldColumn { FieldName="Price", HeaderText="单价(¥)", Align=AlignStyle.Center,CustomFormatFun="DJSetColors", Width=0.04 },
- //new BoundFieldColumn { FieldName="DiscountStr", HeaderText="折扣率", Align=AlignStyle.Center ,CustomFormatFun="ZKLSetColors", Width=0.03},
- //new BoundFieldColumn { FieldName="DiscountPriceStr", HeaderText="折合价(¥)", Align=AlignStyle.Center,CustomFormatFun="ZHJSetColors", Width=0.06},
- new BoundFieldColumn { FieldName="PresentInventory", HeaderText="库存数量", Align=AlignStyle.Center,CustomFormatFun="KCSetColors", Width=0.04 },
- new LinkButtonColumn{ FieldName="DistributeQty", HeaderText="发放人数", Align=AlignStyle.Center,Handle="StudentDistributeDetail", Width=0.04},
- new LinkButtonColumn { FieldName="RemainingQty", HeaderText="未发人数", Align=AlignStyle.Center,Handle="StudentDistributeView", Width=0.04},
- //new BoundFieldColumn { FieldName="TeachingMaterialCode", HeaderText="教材编号", Align=AlignStyle.Center,CustomFormatFun="JCBHMSetColors" , Width=0.06 },
- new BoundFieldColumn { FieldName="TeachingMaterialName", HeaderText="教材名称", Align=AlignStyle.Center,CustomFormatFun="JCMSetColors", Width=0.1 },
- new BoundFieldColumn { FieldName="GrademajorID", HeaderText="年级专业ID", IsHidden=true, Align=AlignStyle.Center, Width=0.02 },
- new BoundFieldColumn { FieldName="CoursematerialID", HeaderText="课程ID", IsHidden=true, Align=AlignStyle.Center, Width=0.02 },
- new BoundFieldColumn { FieldName="IsDistributeName", HeaderText="发放状态", Align=AlignStyle.Center,CustomFormatFun="StateSetColors", Width=0.04 }
- },
- PageSize = 50,
- IsCheckOnSelect = true,
- DataSourceUrl = Url.Content("~/StudentDistribute/List"),
- ID = "dgStudentDistributeList",
- IsPagination = true,
- IsShowRowNumbers = true,
- IsSingleSelect = false
- })
- </div>
- </div>
|