List.cshtml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. @using Bowin.Web.Controls.Mvc;
  2. @using EMIS.Web.Controls;
  3. @{
  4. ViewBag.Title = "List";
  5. //校区
  6. ComboGridOptions cgopCampus = new ComboGridOptions
  7. {
  8. TextField = "Name",
  9. ValueField = "CampusID",
  10. ID = "CampusDropdown",
  11. Name = "CampusDropdown",
  12. OnSelect = "queryCampus",
  13. GridOptions = new DataGridOptions
  14. {
  15. Columns = new List<DataGridColumn>()
  16. {
  17. //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.1 },
  18. new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CampusName"), Align=AlignStyle.Center, Width=0.12 }
  19. },
  20. IsCheckOnSelect = true,
  21. DataSourceUrl = Url.Content("~/Campus/List"),
  22. IsPagination = true,
  23. IsShowRowNumbers = true,
  24. IsSingleSelect = false,
  25. }
  26. };
  27. //院系所
  28. ComboGridOptions cgopCollege = new ComboGridOptions
  29. {
  30. TextField = "Name",
  31. ValueField = "CollegeID",
  32. ID = "CollegeDropdown",
  33. Name = "CollegeDropdown",
  34. OnSelect = "queryCollege",
  35. GridOptions = new DataGridOptions
  36. {
  37. Columns = new List<DataGridColumn>()
  38. {
  39. //new LinkButtonColumn { FieldName="No", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.1 },
  40. new BoundFieldColumn { FieldName="Name", HeaderText=@EMIS.Utility.RSL.Get("CollegeName"), Align=AlignStyle.Center, Width=0.2 }
  41. },
  42. IsCheckOnSelect = true,
  43. DataSourceUrl = Url.Content("~/College/ListOnlyCollege"),
  44. IsPagination = true,
  45. IsShowRowNumbers = true,
  46. IsSingleSelect = false,
  47. }
  48. };
  49. //年级
  50. ComboGridOptions cgopGrade = new ComboGridOptions
  51. {
  52. TextField = "GradeID",
  53. ValueField = "GradeID",
  54. ID = "DictionaryGrade",
  55. Name = "DictionaryGrade",
  56. OnSelect = "queryGrade",
  57. GridOptions = new DataGridOptions
  58. {
  59. Columns = new List<DataGridColumn>()
  60. {
  61. new BoundFieldColumn { FieldName="GradeID", HeaderText="年级", Align=AlignStyle.Center, Width=0.1 }
  62. },
  63. IsCheckOnSelect = true,
  64. DataSourceUrl = Url.Content("~/Grademajor/GradeBindComboGridOptions"),
  65. IsPagination = true,
  66. IsShowRowNumbers = true,
  67. IsSingleSelect = false,
  68. }
  69. };
  70. //专业名称
  71. ComboGridOptions cgopStandard = new ComboGridOptions
  72. {
  73. TextField = "StandardName",
  74. ValueField = "StandardID",
  75. ID = "DictionaryStandard",
  76. Name = "DictionaryStandard",
  77. OnSelect = "queryStandard",
  78. GridOptions = new DataGridOptions
  79. {
  80. Columns = new List<DataGridColumn>()
  81. {
  82. new BoundFieldColumn { FieldName="StandardCode", HeaderText="专业代码", Align=AlignStyle.Center, Width=0.06 },
  83. new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, Width=0.1 }
  84. },
  85. IsCheckOnSelect = true,
  86. DataSourceUrl = Url.Content("~/Grademajor/StandardBindComboGridOptions"),
  87. IsPagination = true,
  88. IsShowRowNumbers = true,
  89. IsSingleSelect = false,
  90. }
  91. };
  92. //学制
  93. ComboGridOptions cgopLearnSystem = new ComboGridOptions
  94. {
  95. TextField = "LearnSystem",
  96. ValueField = "LearnSystem",
  97. ID = "DictionaryLearnSystem",
  98. Name = "DictionaryLearnSystem",
  99. OnSelect = "queryLearnSystem",
  100. GridOptions = new DataGridOptions
  101. {
  102. Columns = new List<DataGridColumn>()
  103. {
  104. new BoundFieldColumn { FieldName="LearnSystem", HeaderText="学制", Align=AlignStyle.Center }
  105. },
  106. IsCheckOnSelect = true,
  107. DataSourceUrl = Url.Content("~/Specialty/LearnSystem"),
  108. IsPagination = true,
  109. IsShowRowNumbers = true,
  110. IsSingleSelect = false,
  111. IsShowHeader = false
  112. }
  113. };
  114. //班级信息
  115. ComboGridOptions cgopClassmajor = new ComboGridOptions
  116. {
  117. TextField = "Name",
  118. ValueField = "ClassmajorID",
  119. Name = "ClassmajorComboGrid",
  120. ID = "ClassmajorComboGrid",
  121. OnSelect = "reload",
  122. GridOptions = new DataGridOptions
  123. {
  124. Columns = new List<DataGridColumn>()
  125. {
  126. new LinkButtonColumn { FieldName="No", HeaderText="班级编号", Width=0.12, Align=AlignStyle.Center },
  127. new BoundFieldColumn { FieldName="Name", HeaderText="班级名称", Width=0.3, Align=AlignStyle.Center }
  128. },
  129. PageSize = 5,
  130. IsCheckOnSelect = true,
  131. DataSourceUrl = Url.Content("~/Classmajor/List"),
  132. IsPagination = true,
  133. IsShowRowNumbers = true,
  134. IsSingleSelect = false
  135. }
  136. };
  137. }
  138. @section scripts{
  139. <script src="~/Scripts/Business/StudentManage/StudentChange/ChangeApply.js" type="text/javascript"></script>
  140. <script type="text/javascript">
  141. var nonSelect = "@DropdownList.SELECT_ALL";
  142. //开始环节状态
  143. var startStatusID = "@BaseExtensions.GetStartFlowStatus("CF_DifferentDynamic")";
  144. //结束环节且为[BP]标识的状态
  145. var backpointStatusID = "@BaseExtensions.GetBackpointStatus("CF_DifferentDynamic").FirstOrDefault()";
  146. </script>
  147. }
  148. <div class="easyui-panel" data-options="border:false,fit:true" style="position:relative;">
  149. @Html.Position()
  150. <div class="p_SearchTitle">
  151. <div style="float: left; margin-left: 10px; font-size: 12px; line-height: 30px;">
  152. 查询条件</div>
  153. </div>
  154. <form id="formQuery" method="post" action="@Url.Content("~/ChangeApply/Excel")">
  155. @Html.PositionCondition()
  156. <div class="search_keyword">
  157. <div class="search_input">
  158. <ul>
  159. <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("Campus"):</li>
  160. <li class="sv">
  161. @Html.ComboGrid(cgopCampus, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  162. </li>
  163. <li class="sn" style="padding-left: 5px;">@EMIS.Utility.RSL.Get("College"):</li>
  164. <li class="sv">
  165. @Html.ComboGrid(cgopCollege, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  166. </li>
  167. <li class="sn" style="padding-left: 5px;">年级:</li>
  168. <li class="sv">
  169. @*@Html.ComboGrid(cgopGrade, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })*@
  170. @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Grade, DropdownListBindType.SelectAll,
  171. new ComboGridOptions
  172. {
  173. ID = "DictionaryGrade",
  174. Name = "DictionaryGrade",
  175. OnSelect = "queryGrade"
  176. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  177. </li>
  178. <li class="sn" style="padding-left: 5px;">专业名称:</li>
  179. <li class="sv">
  180. @Html.ComboGrid(cgopStandard, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  181. </li>
  182. </ul>
  183. <ul>
  184. <li class="sn" style="padding-left: 5px;">@Html.RSLabel("EducationID"):</li>
  185. <li class="sv">
  186. @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Education, DropdownListBindType.SelectAll,
  187. new ComboGridOptions
  188. {
  189. ID = "DictionaryEducation",
  190. Name = "DictionaryEducation",
  191. OnSelect = "reload"
  192. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  193. </li>
  194. <li class="sn" style="padding-left: 5px;">学习形式:</li>
  195. <li class="sv">
  196. @Html.DictionaryComboGrid(EMIS.ViewModel.DictionaryItem.CF_Learningform, DropdownListBindType.SelectAll,
  197. new ComboGridOptions
  198. {
  199. ID = "DictionaryLearningform",
  200. Name = "DictionaryLearningform",
  201. OnSelect = "reload"
  202. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  203. </li>
  204. <li class="sn" style="padding-left: 5px;">学制:</li>
  205. <li class="sv">
  206. @Html.ComboGrid(cgopLearnSystem, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  207. </li>
  208. <li class="sn" style="padding-left: 5px;">班级信息:</li>
  209. <li class="sv">
  210. @Html.ComboGrid(cgopClassmajor, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  211. </li>
  212. </ul>
  213. <ul>
  214. <li class="sn" style="padding-left: 5px;color: red;">异动学期:</li>
  215. <li class="sv">
  216. @Html.DropdownList(new DropdownListOptions
  217. {
  218. ID = "SchoolyearDropdown",
  219. Name = "SchoolyearDropdown",
  220. BindType = DropdownListBindType.SelectAll,
  221. ItemSourceUrl = Url.Content("~/SchoolYear/YearsDropdownListBanid"),
  222. SelectedValue = BaseExtensions.GetCurrentSchoolYearID(),
  223. OnSelect = "reload"
  224. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  225. </li>
  226. <li class="sn" style="padding-left: 5px;color: red;">异动类型:</li>
  227. <li class="sv">
  228. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_ChangeType, new DropdownListOptions
  229. {
  230. ID = "DictionaryChangeType",
  231. Name = "DictionaryChangeType",
  232. BindType = DropdownListBindType.SelectAll,
  233. OnSelect = "reload"
  234. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  235. </li>
  236. <li class="sn" style="padding-left: 5px;color:red;">在校状态:</li>
  237. <li class="sv">
  238. @Html.DictionaryDropDownList(EMIS.ViewModel.DictionaryItem.CF_INOrOutSchoolStatus, new DropdownListOptions
  239. {
  240. ID = "DictionaryInschoolStatus",
  241. Name = "DictionaryInschoolStatus",
  242. BindType = DropdownListBindType.SelectAll,
  243. //SelectedValue = (int)EMIS.ViewModel.CF_INOrOutSchoolStatus.Yes,
  244. OnSelect = "reload"
  245. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  246. </li>
  247. <li class="sn" style="padding-left: 5px; color: red;">状态:</li>
  248. <li class="sv">
  249. @Html.DropdownList(new DropdownListOptions
  250. {
  251. ID = "DictionaryApprovalStatus",
  252. Name = "DictionaryApprovalStatus",
  253. BindType = DropdownListBindType.SelectAll,
  254. //SelectedValue = BaseExtensions.GetStartFlowStatus(typeof(EMIS.Entities.CF_DifferentDynamic).Name),
  255. ItemSourceUrl = Url.Content("~/Common/ApproveStatusApplyDropDown?tableName=" + typeof(EMIS.Entities.CF_DifferentDynamic).Name),
  256. OnSelect = "reload"
  257. }, new Dictionary<string, string> { { "data-condition", "dgChangeApplyList" } })
  258. </li>
  259. </ul>
  260. </div>
  261. </div>
  262. </form>
  263. <div class="p_title">
  264. <div style="float: left; margin-left: 10px; line-height: 30px; font-size: 12px;">
  265. 异动申请列表</div>
  266. <div style="margin-right: 10px; line-height: 30px; font-size: 12px;">@Html.ContextMenuBar("List")</div>
  267. </div>
  268. @*@Html.PositionBatchModify()*@
  269. <div class="search_list">
  270. @Html.DataGrid(new DataGridOptions
  271. {
  272. Columns = new List<DataGridColumn>()
  273. {
  274. new CheckBoxFieldColumn{ HeaderText="", FieldName="StudentChangeID" },
  275. new LinkButtonColumn { FieldName="SchoolyearCode", HeaderText="异动学期", Align=AlignStyle.Center, Handle="edit", Width=0.06 },
  276. new BoundFieldColumn { FieldName="StudentNo", HeaderText="学号", Align=AlignStyle.Center, Width=0.08 },
  277. new BoundFieldColumn { FieldName="Name", HeaderText="姓名", Align=AlignStyle.Center, Width=0.04 },
  278. new BoundFieldColumn { FieldName="SexName", HeaderText="性别", Align=AlignStyle.Center, OrderFieldName="SexID", Width=0.02 },
  279. //new BoundFieldColumn { FieldName="BirthDate", HeaderText="出生日期", Align=AlignStyle.Center, Width=0.06, Formatter = Formatter.OnlyYearMonthDay },
  280. //new BoundFieldColumn { FieldName="NationName", HeaderText="民族", Align=AlignStyle.Center, OrderFieldName="NationID", Width=0.03 },
  281. //new BoundFieldColumn { FieldName="PoliticsName", HeaderText="政治面貌", Align=AlignStyle.Center, OrderFieldName="PoliticsID", Width=0.04 },
  282. new BoundFieldColumn { FieldName="ChangeTypeName", HeaderText="异动类型", Align=AlignStyle.Center, OrderFieldName="ChangeTypeID", Width=0.04, CustomFormatFun="SetRedColumn" },
  283. new BoundFieldColumn { FieldName="InSchoolStatusName", HeaderText="在校状态", Align=AlignStyle.Center, OrderFieldName="InSchoolStatusID", Width=0.04, CustomFormatFun="SetRedColumn" },
  284. //new BoundFieldColumn { FieldName="StudentStatusName", HeaderText="学籍状态", Align=AlignStyle.Center, OrderFieldName="StudentStatus", Width=0.04, CustomFormatFun="SetRedColumn" },
  285. //new BoundFieldColumn { FieldName="GradeID", HeaderText="年级", Align=AlignStyle.Center, OrderFieldName="GradeID", Width=0.03 },
  286. //new BoundFieldColumn { FieldName="ClassNum", HeaderText="班序", Align=AlignStyle.Center, Width=0.02 },
  287. //new BoundFieldColumn { FieldName="ClassmajorNo", HeaderText="班级编号", Align=AlignStyle.Center, Width=0.08 },
  288. //new BoundFieldColumn { FieldName="ClassmajorName", HeaderText="班级名称", Align=AlignStyle.Center, Width=0.15, OverflowLength=8 },
  289. //new BoundFieldColumn { FieldName="StandardCode", HeaderText="专业代码", Align=AlignStyle.Center, OrderFieldName="StandardID", Width=0.06 },
  290. //new BoundFieldColumn { FieldName="StandardName", HeaderText="专业名称", Align=AlignStyle.Center, OrderFieldName="StandardID", Width=0.08 },
  291. //new BoundFieldColumn { FieldName="EducationName", HeaderText=EMIS.Utility.RSL.Get("EducationID"), Align=AlignStyle.Center, OrderFieldName="EducationID", Width=0.04 },
  292. //new BoundFieldColumn { FieldName="LearningformName", HeaderText="学习形式", Align=AlignStyle.Center, OrderFieldName="LearningformID", Width=0.06 },
  293. //new BoundFieldColumn { FieldName="LearnSystem", HeaderText="学制", Align=AlignStyle.Center, Width=0.03 },
  294. //new BoundFieldColumn { FieldName="SemesterName", HeaderText="入学学期", Align=AlignStyle.Center, OrderFieldName="SemesterID", Width=0.04 },
  295. //new BoundFieldColumn { FieldName="StartSchoolyearCode", HeaderText="入学学年学期", Align=AlignStyle.Center, Width=0.06 },
  296. //new BoundFieldColumn { FieldName="GraduateSchoolyearCode", HeaderText="毕业学期", Align=AlignStyle.Center, Width=0.06 },
  297. //new BoundFieldColumn { FieldName="BeforeStandardName", HeaderText="异动前专业", Align=AlignStyle.Center, Width=0.05, OverflowLength=5 },
  298. new BoundFieldColumn { FieldName="BeforeClassmajorName", HeaderText="异动前班级", Align=AlignStyle.Center, Width=0.06, OverflowLength=8 },
  299. new BoundFieldColumn { FieldName="BeforeInSchoolStatusName", HeaderText="在校状态(前)", Align=AlignStyle.Center, OrderFieldName="BeforeInSchoolStatusID", Width=0.05, CustomFormatFun="SetRedColumn" },
  300. //new BoundFieldColumn { FieldName="BeforeStudentStatusName", HeaderText="学籍状态(前)", Align=AlignStyle.Center, OrderFieldName="BeforeStudentStatus", Width=0.05, CustomFormatFun="SetRedColumn" },
  301. //new BoundFieldColumn { FieldName="AfterStandardName", HeaderText="异动后专业", Align=AlignStyle.Center, Width=0.05, OverflowLength=5 },
  302. new BoundFieldColumn { FieldName="AfterClassmajorName", HeaderText="异动后班级", Align=AlignStyle.Center, Width=0.06, OverflowLength=8 },
  303. new BoundFieldColumn { FieldName="AfterInSchoolStatusName", HeaderText="在校状态(后)", Align=AlignStyle.Center, OrderFieldName="AfterInSchoolStatusID", Width=0.05, CustomFormatFun="SetRedColumn" },
  304. //new BoundFieldColumn { FieldName="AfterStudentStatusName", HeaderText="学籍状态(后)", Align=AlignStyle.Center, OrderFieldName="AfterStudentStatus", Width=0.05, CustomFormatFun="SetRedColumn" },
  305. new BoundFieldColumn { FieldName="ChangeReasonName", HeaderText="异动原因", Align=AlignStyle.Center, OrderFieldName="ChangeReasonID", Width=0.04, OverflowLength=5 },
  306. new BoundFieldColumn { FieldName="Description", HeaderText="申请说明", Align=AlignStyle.Center, Width=0.04, OverflowLength=5 },
  307. //new BoundFieldColumn { FieldName="ReturnSchoolyearCode", HeaderText="返校学期", Align=AlignStyle.Center, Width=0.06 },
  308. new BoundFieldColumn { FieldName="ChangeDate", HeaderText="异动日期", Align=AlignStyle.Center, Width=0.06, Formatter = Formatter.OnlyYearMonthDay },
  309. new BoundFieldColumn { FieldName="ReportStatusName", HeaderText="注册状态", Align=AlignStyle.Center, OrderFieldName="ReportStatus", Width=0.04, CustomFormatFun="SetRedColumn" },
  310. //new BoundFieldColumn { FieldName="CampusCode", HeaderText=@EMIS.Utility.RSL.Get("CampusCode"), Align=AlignStyle.Center, Width=0.05 },
  311. //new BoundFieldColumn { FieldName="CampusName", HeaderText=@EMIS.Utility.RSL.Get("Campus"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6 },
  312. //new BoundFieldColumn { FieldName="CollegeNo", HeaderText=@EMIS.Utility.RSL.Get("CollegeCode"), Align=AlignStyle.Center, Width=0.05 },
  313. new BoundFieldColumn { FieldName="CollegeName", HeaderText=@EMIS.Utility.RSL.Get("College"), Align=AlignStyle.Center, Width=0.06, OverflowLength=6 },
  314. new BoundFieldColumn { FieldName="CreateUserName", HeaderText="申请人", Align=AlignStyle.Center, Width=0.04 },
  315. new ApproveStatusColumn { FieldName="ApprovalStatusName", TableName=typeof(EMIS.Entities.CF_DifferentDynamic).Name, IDFieldName="StudentChangeID", HeaderText="状态", Align=AlignStyle.Center, Width=0.03 }
  316. //new BoundFieldColumn { FieldName="Remark", HeaderText="备注", Align=AlignStyle.Center, Width=0.02, OverflowLength=3 }
  317. },
  318. IsCheckOnSelect = true,
  319. DataSourceUrl = Url.Content("~/ChangeApply/List"),
  320. ID = "dgChangeApplyList",
  321. IsPagination = true,
  322. IsShowRowNumbers = true,
  323. IsSingleSelect = false
  324. })
  325. </div>
  326. </div>