You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

202 lines
8.7 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sEditPrgId = getEditPrgId(),
  4. oGrid = null,
  5. fnPageInit = function () {
  6. var oForm = $('#form_main'),
  7. oBaseQueryPm = {
  8. pageIndex: 1,
  9. pageSize: parent.SysSet.GridRecords || 10,
  10. sortField: 'MemberID',
  11. sortOrder: 'asc'
  12. },
  13. /**
  14. * 獲取資料
  15. * @param {Object} args 查詢參數
  16. */
  17. fnGet = function (args) {
  18. var oQueryPm = getFormSerialize(oForm);
  19. $.extend(oQueryPm, oBaseQueryPm, args);
  20. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  21. oQueryPm.Roles = parent.UserInfo.roles;
  22. return g_api.ConnectLite(sProgramId, ComFn.GetPage, oQueryPm, function (res) {
  23. if (res.RESULT) {
  24. var oRes = res.DATA.rel;
  25. if (args.Excel) {//匯出
  26. DownLoadFile(oRes);
  27. }
  28. }
  29. });
  30. },
  31. /**
  32. * ToolBar 按鈕事件 function
  33. * @param {Object}inst 按鈕物件對象
  34. * @param {Object} e 事件對象
  35. */
  36. fnButtonHandler = function (inst, e) {
  37. var sId = inst.id;
  38. switch (sId) {
  39. case "Toolbar_Qry":
  40. var iNum = $('#PerPageNum').val();
  41. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  42. cacheQueryCondition();
  43. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  44. break;
  45. case "Toolbar_Save":
  46. break;
  47. case "Toolbar_ReAdd":
  48. break;
  49. case "Toolbar_Clear":
  50. clearPageVal();
  51. break;
  52. case "Toolbar_Leave":
  53. break;
  54. case "Toolbar_Add":
  55. parent.openPageTab(sEditPrgId, '?Action=Add');
  56. break;
  57. case "Toolbar_Upd":
  58. break;
  59. case "Toolbar_Copy":
  60. break;
  61. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  62. break;
  63. case "Toolbar_Exp":
  64. break;
  65. case "Toolbar_Imp":
  66. //fnImport();
  67. break;
  68. default:
  69. alert("No handle '" + sId + "'");
  70. break;
  71. }
  72. },
  73. /**
  74. * 頁面初始化
  75. */
  76. init = function () {
  77. commonInit({
  78. PrgId: sProgramId,
  79. ButtonHandler: fnButtonHandler,
  80. SearchBar: true
  81. });
  82. var saDate = [],
  83. iThisYear = new Date().getFullYear(),
  84. iBaseYearCount = 20;
  85. while (iBaseYearCount >= 0) {
  86. var iCurYear = iThisYear - iBaseYearCount;
  87. saDate.push({ id: iCurYear, text: iCurYear });
  88. iBaseYearCount--;
  89. }
  90. iBaseYearCount += 2;
  91. while (iBaseYearCount <= 20) {
  92. var iCurYear = iThisYear + iBaseYearCount;
  93. saDate.push({ id: iCurYear, text: iCurYear });
  94. iBaseYearCount++;
  95. }
  96. $('#Date').html(createOptions(saDate, 'id', 'text'));
  97. fnSetUserDrop([{
  98. Select: $('#UserID'),
  99. ShowId: true,
  100. CallBack: function (data) {
  101. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87,
  102. saFields = [
  103. { name: "RowIndex", title: 'common.RowNumber', align: "center", type: "text", width: 50, sorting: false },
  104. {
  105. name: "MemberID", title: 'common.Account', align: "left", type: "text", width: 70
  106. },
  107. {
  108. name: "WenZhongAcount", title: 'MembersMaintain_Upd.WenZhongAcount', align: "left", type: "text", width: 70
  109. },
  110. {
  111. name: "MemberName", title: 'common.EmployeeName', align: "left", type: "text", width: 80
  112. },
  113. {// ╠common.Seniority⇒請假別╣
  114. name: "HolidayCategoryName", title: 'common.HolidayCategory', align: "center", type: "text", width: 50
  115. },
  116. {// ╠common.EnableDate⇒啟動日期╣
  117. name: "EnableDate", title: 'common.EnableDate', type: "text", align: "center", width: 100,
  118. itemTemplate: function (val, item) {
  119. return newDate(val, true);
  120. }
  121. },
  122. {// ╠common.ExpirationDate⇒失效日期╣
  123. name: "ExpirationDate", title: 'common.ExpirationDate', type: "text", align: "center", width: 100,
  124. itemTemplate: function (val, item) {
  125. return newDate(val, true);
  126. }
  127. },
  128. {// ╠common.PaymentHours⇒給付時數╣
  129. name: "PaymentHours", title: 'common.PaymentHours', align: "center", type: "text", width: 50
  130. },
  131. {// ╠common.UsedHours⇒已用時數╣
  132. name: "UsedHours", title: 'common.UsedHours', align: "center", type: "text", width: 50
  133. },
  134. {// ╠common.RemainHours⇒剩餘時數╣
  135. name: "RemainHours", title: 'common.RemainHours', align: "center", type: "text", width: 50
  136. },
  137. {
  138. name: "Memo", title: 'common.Memo', type: "text", width: 150
  139. }
  140. ];
  141. $("#jsGrid").jsGrid({
  142. width: "100%",
  143. height: iHeight + "px",
  144. autoload: true,
  145. pageLoading: true,
  146. inserting: false,
  147. editing: false,
  148. sorting: true,
  149. paging: true,
  150. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  151. pageSize: parent.SysSet.GridRecords || 10,
  152. pageButtonCount: parent.SysSet.GridPages || 15,
  153. pagePrevText: "<",
  154. pageNextText: ">",
  155. pageFirstText: "<<",
  156. pageLastText: ">>",
  157. onPageChanged: function (args) {
  158. cacheQueryCondition(args.pageIndex);
  159. },
  160. fields: saFields,
  161. rowDoubleClick: function (args) {
  162. parent.openPageTab(sEditPrgId, '?Action=Upd&Guid=' + args.item.guid);
  163. },
  164. controller: {
  165. loadData: function (args) {
  166. return fnGet(args);
  167. }
  168. },
  169. onInit: function (args) {
  170. oGrid = args.grid;
  171. }
  172. });
  173. }
  174. }]);
  175. fnSetArgDrop([
  176. {
  177. ArgClassID: 'LeaveType',
  178. Select: $('#HolidayCategory'),
  179. ShowId: true
  180. }
  181. ]);
  182. };
  183. init();
  184. };
  185. require(['base', 'select2', 'jsgrid', 'ajaxfile', 'util'], fnPageInit);