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.

367 lines
18 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. oGrid = null,
  4. fnPageInit = function () {
  5. var oForm = $('#form_main'),
  6. oBaseQueryPm = {
  7. pageIndex: 1,
  8. pageSize: parent.SysSet.GridRecords || 10,
  9. sortField: 'UserID',
  10. sortOrder: 'asc'
  11. },
  12. /**
  13. * 獲取資料
  14. * @param {Object} args 查詢條件參數
  15. */
  16. fnGetPro = function (args) {
  17. var oQueryPm = {},
  18. oQuery = getFormSerialize(oForm),
  19. sUserID = oQuery.UserID,
  20. sDate = oQuery.Date;
  21. $.extend(oQueryPm, oBaseQueryPm, args);
  22. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  23. return CallAjax(ComFn.W_Com, ComFn.GetPagePrc, {
  24. Type: 'wenzhong_getlist',
  25. Params: {
  26. querysort: oQueryPm.sortField + ' ' + oQueryPm.sortOrder,
  27. pageindex: oQueryPm.pageIndex,
  28. pagesize: oQueryPm.pageSize,
  29. UserID: sUserID,
  30. Date: sDate,
  31. LeaveDate: '',
  32. OrgID: parent.OrgID
  33. }
  34. });
  35. },
  36. /**
  37. * 匯入費用項目
  38. */
  39. fnImport = function () {
  40. $('#importfile').val('').off('change').on('change', function () {
  41. if (this.value.indexOf('.xls') > -1 || this.value.indexOf('.xlsx') > -1) {
  42. var sFileId = guid(),
  43. sFileName = this.value;
  44. $.ajaxFileUpload({
  45. url: '/Controller.ashx?action=importfile&FileId=' + sFileId,
  46. secureuri: false,
  47. fileElementId: 'importfile',
  48. success: function (data, status) {
  49. g_api.ConnectLite(sProgramId, 'GetImport', {//匯入費用項目
  50. FileId: sFileId,
  51. FileName: sFileName
  52. }, function (res) {
  53. if (res.RESULT) {
  54. $('#Toolbar_Qry').click();
  55. }
  56. else {
  57. showMsg(i18next.t('message.ProgressError') + '<br>' + res.MSG, 'error'); // ╠message.ProgressError⇒資料處理異常╣
  58. }
  59. }, function () {
  60. showMsg(i18next.t("message.ProgressError"), 'error'); // ╠message.ProgressError⇒資料處理異常╣
  61. });
  62. },
  63. error: function (data, status, e) {
  64. showMsg(i18next.t("message.ProgressError"), 'error'); // ╠message.ProgressError⇒資料處理異常╣
  65. }
  66. });
  67. bRequestStorage = true;
  68. }
  69. else {
  70. showMsg(i18next.t("message.FileTypeError"), 'error'); // ╠message.FileTypeError⇒文件格式錯誤╣
  71. }
  72. }).click();
  73. },
  74. /**
  75. * 資料刪除
  76. * @param {String} id pk
  77. */
  78. fnDel = function (id) {
  79. g_api.ConnectLite(sProgramId, 'GetDel', {//匯入費用項目
  80. Guid: id
  81. }, function (res) {
  82. if (res.RESULT) {
  83. if (res.DATA.rel) {
  84. $('#Toolbar_Qry').trigger('click');
  85. showMsg(i18next.t("message.Delete_Success"), 'success'); // ╠message.Delete_Success⇒刪除成功╣
  86. }
  87. else {
  88. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  89. }
  90. }
  91. else {
  92. showMsg(i18next.t("message.Delete_Failed") + '<br>' + res.MSG, 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  93. }
  94. }, function () {
  95. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  96. });
  97. },
  98. /**
  99. * 修改文中設定
  100. */
  101. fnUpd = function (data) {//╠common.OriginalHours⇒原本時數╣╠common.Hours⇒小時╣╠common.UpdLeaveHours⇒變更時數╣
  102. var sContent = '\
  103. <div class="row popsrow">\
  104. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.OriginalHours">原本時數</span></label>\
  105. <label class="col-sm-8 show-text"><span id="OriginalHours"></span><span data-i18n="common.Hours"></span></label>\
  106. </div>\
  107. <div class="row popsrow">\
  108. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.UpdLeaveHours">變更時數</span></label>\
  109. <div class="col-sm-8">\
  110. <input type="text" class="form-control w100p" id="UpdLeaveHours" maxlength="10">\
  111. </div>\
  112. </div>\
  113. <div class="row popsrow">\
  114. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.Memo">備註</span></label>\
  115. <div class="col-sm-8">\
  116. <textarea id="Memo" class="form-control" rows="5" cols="20"></textarea>\
  117. </div>\
  118. </div>';
  119. layer.open({
  120. type: 1,
  121. title: i18next.t('common.ChangeLeaveHours'),// ╠common.ChangeLeaveHours⇒變更可用假數╣
  122. shadeClose: false,
  123. shade: 0.1,
  124. maxmin: true, //开启最大化最小化按钮
  125. area: ['400px', '300px'],
  126. content: sContent,
  127. success: function (layero, index) {
  128. layero.find('#OriginalHours').text(fMoney(data.PaymentHours * 1, 2));
  129. layero.find('#UpdLeaveHours').on('keyup blur', function (e) {
  130. keyIntp(e, this, 1);
  131. });
  132. },
  133. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  134. yes: function (index, layero) {
  135. var sUpdLeaveHours = layero.find('#UpdLeaveHours').val(),
  136. sMemo = layero.find('#Memo').val(),
  137. iTotal = 0;
  138. iTotal = data.PaymentHours * 1 + sUpdLeaveHours * 1;
  139. if (!sUpdLeaveHours) {
  140. showMsg(i18next.t("message.UpdLeaveHours_required")); // 請輸入變更時數
  141. return false;
  142. }
  143. else if (iTotal < 0) {
  144. showMsg(i18next.t("message.PaymentHoursWarnning")); // 可用時數不可小於0
  145. return false;
  146. }
  147. g_api.ConnectLite(sProgramId, 'UpdLeaveHours', {
  148. Guid: data.Guid,
  149. UpdLeaveHours: sUpdLeaveHours,
  150. Memo: sMemo
  151. }, function (res) {
  152. if (res.RESULT) {
  153. if (res.DATA.rel) {
  154. $('#Toolbar_Qry').trigger('click');
  155. showMsg(i18next.t("message.Modify_Success"), 'success'); //╠message.Modify_Success⇒修改成功╣
  156. }
  157. else {
  158. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  159. }
  160. }
  161. else {
  162. showMsg(i18next.t("message.Modify_Failed") + '<br>' + res.MSG, 'error'); //╠message.Modify_Failed⇒修改失敗╣
  163. }
  164. }, function () {
  165. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  166. });
  167. layer.close(index);
  168. }
  169. });
  170. },
  171. /**
  172. * ToolBar 按鈕事件 function
  173. * @param {Object}inst 按鈕物件對象
  174. * @param {Object} e 事件對象
  175. */
  176. fnButtonHandler = function (inst, e) {
  177. var sId = inst.id;
  178. switch (sId) {
  179. case "Toolbar_Qry":
  180. var iNum = $('#PerPageNum').val();
  181. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  182. cacheQueryCondition();
  183. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  184. break;
  185. case "Toolbar_Save":
  186. fnSave('add');
  187. break;
  188. case "Toolbar_ReAdd":
  189. break;
  190. case "Toolbar_Clear":
  191. clearPageVal();
  192. break;
  193. case "Toolbar_Leave":
  194. break;
  195. case "Toolbar_Add":
  196. break;
  197. case "Toolbar_Upd":
  198. break;
  199. case "Toolbar_Copy":
  200. break;
  201. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  202. break;
  203. case "Toolbar_Exp":
  204. break;
  205. case "Toolbar_Imp":
  206. fnImport();
  207. break;
  208. default:
  209. alert("No handle '" + sId + "'");
  210. break;
  211. }
  212. },
  213. /**
  214. * 頁面初始化
  215. */
  216. init = function () {
  217. commonInit({
  218. PrgId: sProgramId,
  219. ButtonHandler: fnButtonHandler,
  220. SearchBar: true
  221. });
  222. var saDate = [],
  223. iThisYear = new Date().getFullYear(),
  224. iBaseYearCount = 20;
  225. while (iBaseYearCount >= 0) {
  226. var iCurYear = iThisYear - iBaseYearCount;
  227. saDate.push({ id: iCurYear, text: iCurYear });
  228. iBaseYearCount--;
  229. }
  230. iBaseYearCount += 2;
  231. while (iBaseYearCount <= 20) {
  232. var iCurYear = iThisYear + iBaseYearCount;
  233. saDate.push({ id: iCurYear, text: iCurYear });
  234. iBaseYearCount++;
  235. }
  236. $('#Date').html(createOptions(saDate, 'id', 'text'));
  237. fnSetUserDrop([{
  238. Select: $('#UserID'),
  239. ShowId: true,
  240. Select2: true,
  241. CallBack: function (data) {
  242. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87,
  243. saFields = [
  244. { name: "RowIndex", title: 'common.RowNumber', align: "center", type: "text", width: 50, sorting: false },
  245. {
  246. name: "UserID", title: 'common.Account', align: "left", type: "text", width: 70
  247. },
  248. {
  249. name: "WenZhongAcount", title: 'MembersMaintain_Upd.WenZhongAcount', align: "left", type: "text", width: 70
  250. },
  251. {
  252. name: "UserName", title: 'common.EmployeeName', align: "left", type: "text", width: 80
  253. },
  254. {// ╠common.Seniority⇒年資╣
  255. name: "Seniority", title: 'common.Seniority', align: "center", type: "text", width: 50
  256. },
  257. {// ╠common.EnableDate⇒啟動日期╣
  258. name: "EnableDate", title: 'common.EnableDate', type: "text", align: "center", width: 100,
  259. itemTemplate: function (val, item) {
  260. return newDate(val, true);
  261. }
  262. },
  263. {// ╠common.ExpirationDate⇒失效日期╣
  264. name: "ExpirationDate", title: 'common.ExpirationDate', type: "text", align: "center", width: 100,
  265. itemTemplate: function (val, item) {
  266. return newDate(val, true);
  267. }
  268. },
  269. {// ╠common.PaymentHours⇒給付時數╣
  270. name: "PaymentHours", title: 'common.PaymentHours', align: "center", type: "text", width: 50
  271. },
  272. {// ╠common.UsedHours⇒已用時數╣
  273. name: "UsedHours", title: 'common.UsedHours', align: "center", type: "text", width: 50
  274. },
  275. {// ╠common.RemainHours⇒剩餘時數╣
  276. name: "RemainHours", title: 'common.RemainHours', align: "center", type: "text", width: 50
  277. },
  278. {
  279. name: "Memo", title: 'common.Memo', type: "text", width: 150
  280. }
  281. ];
  282. if (parent.UserInfo.roles.indexOf('EipManager') > -1 || parent.UserInfo.roles.indexOf('Admin') > -1) {
  283. saFields.push({
  284. title: 'common.Action', width: 50, align: 'center',
  285. itemTemplate: function (val, item) {
  286. var saAction = [$('<a/>', {
  287. html: i18next.t('common.Toolbar_Upd'),// ╠common.Toolbar_Upd⇒修改╣
  288. class: 'a-url',
  289. click: function () {
  290. fnUpd(item);
  291. return false;
  292. }
  293. })];
  294. if (parent.UserInfo.roles.indexOf('Admin') > -1) {
  295. saAction.push($('<a/>', {
  296. html: i18next.t('common.Toolbar_Del'),// ╠common.Toolbar_Del⇒刪除╣
  297. class: 'a-url delete',
  298. click: function () {
  299. // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  300. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  301. fnDel(item.Guid);
  302. layer.close(index);
  303. });
  304. }
  305. }));
  306. }
  307. return $('<div>', { 'style': 'width:100%;text-align: center;' }).append(saAction);
  308. }
  309. });
  310. }
  311. $("#jsGrid").jsGrid({
  312. width: "100%",
  313. height: iHeight + "px",
  314. autoload: true,
  315. pageLoading: true,
  316. inserting: false,
  317. editing: false,
  318. sorting: true,
  319. paging: true,
  320. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  321. pageSize: parent.SysSet.GridRecords || 10,
  322. pageButtonCount: parent.SysSet.GridPages || 15,
  323. pagePrevText: "<",
  324. pageNextText: ">",
  325. pageFirstText: "<<",
  326. pageLastText: ">>",
  327. onPageChanged: function (args) {
  328. cacheQueryCondition(args.pageIndex);
  329. },
  330. fields: saFields,
  331. controller: {
  332. loadData: function (args) {
  333. return fnGetPro(args);
  334. }
  335. },
  336. onInit: function (args) {
  337. oGrid = args.grid;
  338. }
  339. });
  340. }
  341. }]);
  342. };
  343. init();
  344. };
  345. require(['base', 'select2', 'jsgrid', 'ajaxfile', 'util'], fnPageInit);