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.

826 lines
42 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. fnPageInit = function () {
  4. var oLeaveSet = null,
  5. oChangeRecords = null,
  6. oGrid = null,
  7. oGrid1 = null,
  8. oGrid2 = null,
  9. oGrid3 = null,
  10. oSet = null,
  11. sHtmlCategory = '',
  12. sCurrentUserId = parent.UserID,
  13. sCurrentYear = new Date().formate('yyyy'),
  14. oBaseQueryPm = {
  15. sortField: 'CreateDate',
  16. sortOrder: 'asc'
  17. },
  18. /**
  19. * 獲取資料
  20. * @param {Object} args 查詢參數
  21. * @return {Object} ajax物件
  22. */
  23. fnGetLeaveList = function (args) {
  24. var oQueryPm = {};
  25. $.extend(oQueryPm, oBaseQueryPm, args);
  26. oQueryPm.AskTheDummy = sCurrentUserId;
  27. oQueryPm.Status = 'B,H-O,E';
  28. oQueryPm.LeaveDateStart = sCurrentYear + '/01/01';
  29. oQueryPm.LeaveDateEnd = sCurrentYear + '/12/31';
  30. return g_api.ConnectLite('Leave_Qry', ComFn.GetPage, oQueryPm, function (res) {
  31. if (res.RESULT) {
  32. var oRes = res.DATA.rel;
  33. $('.currentyear').text(sCurrentYear);
  34. }
  35. });
  36. },
  37. /**
  38. * 獲取請假設定
  39. * @return {Object} ajax物件
  40. */
  41. fnGetLeaveSet = function () {
  42. var limited = g_api.ConnectLite('LeaveRequest_Qry', 'GetAllLeaveRequest', {
  43. UserID: sCurrentUserId,
  44. OrgID: parent.OrgID,
  45. CurrentYear: sCurrentYear
  46. });
  47. return $.whenArray([CallAjax(ComFn.W_Com, ComFn.GetPagePrc, {
  48. Type: 'wenzhong_getlist',
  49. Params: {
  50. querysort: '',
  51. pageindex: 1,
  52. pagesize: 100,
  53. UserID: sCurrentUserId,
  54. Date: sCurrentYear,
  55. LeaveDate: '',
  56. OrgID: parent.OrgID
  57. }
  58. }),
  59. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  60. Type: '',
  61. Params: {
  62. leaveset: {
  63. OrgID: parent.OrgID,
  64. UserID: sCurrentUserId,
  65. TYear: sCurrentYear
  66. }
  67. }
  68. }),
  69. limited
  70. ]).done(function (res1, res2, res3) {
  71. var OtherLeave = [];
  72. if (res2[1] === 'success') {
  73. oSet = $.parseJSON(res2[0].d);
  74. var saSet = $.parseJSON(oSet.SetInfo),
  75. oTXJ = {};
  76. saSet = saSet || [];
  77. if (oSet.SetInfo) {
  78. $('#InitLeaveSet').hide();
  79. }
  80. else {
  81. if (parent.UserInfo.roles.indexOf('Admin') > -1) {
  82. $('#InitLeaveSet').show();
  83. }
  84. else {
  85. $('#InitLeaveSet').hide();
  86. }
  87. }
  88. if (res1[1] === 'success') {
  89. oTXJ = $.parseJSON(res1[0].d === '' ? '[]' : res1[0].d);
  90. }
  91. if (res3[1] === 'success') {
  92. OtherLeave = res3[0].DATA.rel;
  93. }
  94. $.each(saSet, function (idx, set) {
  95. var iPaymentHours = 0,
  96. iUsedHours = 0,
  97. iRemainHours = 0,
  98. saMemo = [];
  99. if (set.Id === '09') {
  100. $.each(oTXJ.DataList, function (idx, txj) {
  101. var _iRemainHours = (txj.RemainHours || '0') * 1;
  102. iPaymentHours += txj.PaymentHours * 1;
  103. iUsedHours += txj.UsedHours * 1;
  104. iRemainHours += _iRemainHours;
  105. saMemo.push(newDate(txj.EnableDate, true) + '~' + newDate(txj.ExpirationDate, true) + ':' + txj.PaymentHours + '/' + txj.RemainHours + '(' + i18next.t('common.Hours') + ')');
  106. });
  107. set.PaymentHours = iPaymentHours;
  108. set.UsedHours = iUsedHours;
  109. set.RemainHours = iRemainHours;
  110. set.Memo = saMemo.join(' + ');
  111. }
  112. else {
  113. let MatchtedLeaveRequests = Enumerable.From(OtherLeave).Where(function (item) { return item.Leave === set.Id; }).ToArray();
  114. if (MatchtedLeaveRequests.length > 0) {
  115. $.each(MatchtedLeaveRequests, function (idx, mlr) {
  116. console.log([ 'mlr', mlr]);
  117. iPaymentHours += mlr.PaymentHours * 1;
  118. iUsedHours += mlr.UsedHours * 1;
  119. iRemainHours += mlr.RemainHours * 1;
  120. saMemo.push(newDate(mlr.EnableDate, true) + '~' + newDate(mlr.ExpirationDate, true) + ':' + mlr.PaymentHours + '/' + mlr.RemainHours + '(hr)');
  121. });
  122. if (set.PaymentHours) {
  123. set.PaymentHours = (parseFloat(set.PaymentHours) + parseFloat(iPaymentHours)).toString();
  124. }
  125. set.UsedHours = (parseFloat(set.UsedHours || '0') + parseFloat(iUsedHours)).toString();
  126. set.RemainHours = (parseFloat(set.RemainHours || '0') + parseFloat(iRemainHours)).toString();
  127. set.Memo = saMemo.join(' + ');
  128. }
  129. }
  130. });
  131. fnGetChangeRecords();
  132. oLeaveSet = {
  133. data: saSet,
  134. itemsCount: saSet.length
  135. };
  136. oGrid1.loadData({ IsFilter: true });
  137. }
  138. });
  139. },
  140. /**
  141. * 獲取請假設定變更記錄
  142. * @return {Object} ajax物件
  143. */
  144. fnGetChangeRecords = function () {
  145. var param = $.extend({}, { UserId: sCurrentUserId, SouseId: oSet.Guid, LogType: 'leavesetchange,WenZhongChange' });
  146. g_api.ConnectLite(sProgramId, "GetChangLog", param, function (res) {
  147. if (res.RESULT) {
  148. var saChangeRecords = $.parseJSON(res.DATA.rel);
  149. oChangeRecords = {
  150. data: saChangeRecords,
  151. itemsCount: saChangeRecords.length
  152. };
  153. oGrid2.loadData({ IsFilter: true });
  154. }
  155. });
  156. },
  157. /**
  158. * 設置人員菜單
  159. * @return {Object} ajax物件
  160. */
  161. fnSetMemberMenu = function () {
  162. return g_api.ConnectLite(Service.sys, 'GetAllMembersByUserId', {},
  163. function (res) {
  164. if (res.RESULT) {
  165. var saUsers = res.DATA.rel,
  166. saTop = [],
  167. saTreeList = [],
  168. saPass = [],
  169. fnGetParent = function (list, parentid) {
  170. var saParent = Enumerable.From(list).Where(function (item) { return item.ID === parentid; }).ToArray();
  171. return saParent.length > 0 ? saParent[0] : {};
  172. };
  173. $.each(saUsers, function (idx, tb) {
  174. var oParent = fnGetParent(saUsers, tb.ParentID);
  175. if (tb.level === '1' && !oParent.ID && saTop.indexOf(tb.ParentID) === -1) {
  176. saTop.push(tb.ParentID);
  177. }
  178. });
  179. $.each(saTop, function (idx, topid) {
  180. if (saPass.indexOf(topid) === -1) {
  181. var saList = new TreeMenu(saUsers).init(topid, 'ParentID', 'ID', 'Name');
  182. $.each(saList, function (idx, _list) {
  183. saTreeList.push(_list);
  184. });
  185. saPass.push(topid);
  186. }
  187. });
  188. var fnCallBack = function (data) {
  189. sCurrentUserId = data.id;
  190. oBaseQueryPm.IsFilter = undefined;
  191. oGrid.openPage(1);
  192. fnGetLeaveSet();
  193. };
  194. $('#tree_menu').tree({
  195. data: saTreeList,
  196. autoOpen: false
  197. });
  198. bindTreeEvent(fnCallBack);
  199. var node_Dept = $('#tree_menu').tree('getNodeById', parent.UserInfo.DepartmentID),
  200. node_Member = $('#tree_menu').tree('getNodeById', parent.UserID);
  201. $('#tree_menu').tree('openNode', node_Dept);
  202. $(node_Member.element).addClass('jqtree-selected');
  203. }
  204. });
  205. },
  206. /**
  207. * @param {Object} item 要變更的設定
  208. */
  209. fnUpdateLeaveSet = function (item) {
  210. var oUpdPm = {},
  211. oLogInfoAdd = {
  212. OrgID: parent.OrgID,
  213. SouseId: oSet.Guid,
  214. LogType: 'leavesetchange',
  215. CreateUser: parent.UserID,
  216. CreateDate: newDate()
  217. },
  218. oLogInfo = {
  219. ChangeRecord: item.Name + ':' + (item.PaymentHoursOld === '' ? i18next.t('common.NoLimit') : item.PaymentHoursOld + i18next.t('common.Hours')) + ' => ' + item.PaymentHours + i18next.t('common.Hours'),
  220. ChangeUserName: parent.UserInfo.MemberName,
  221. Memo: item.Memo
  222. },
  223. oLeaveSetUpd = {};
  224. oLogInfoAdd.LogInfo = JSON.stringify(oLogInfo);
  225. oLeaveSetUpd.SetInfo = JSON.stringify(oLeaveSet.data);
  226. oUpdPm.upd = {
  227. leaveset: {
  228. values: oLeaveSetUpd,
  229. keys: {
  230. Guid: oSet.Guid
  231. }
  232. }
  233. };
  234. oUpdPm.add = {};
  235. oUpdPm.add.loginfo = oLogInfoAdd;
  236. CallAjax(ComFn.W_Com, ComFn.GetTran, {
  237. Params: oUpdPm
  238. }, function (res) {
  239. if (res.d > 0) {
  240. fnGetLeaveSet();
  241. showMsg(i18next.t("message.SetUp_Success"), 'success'); // ╠message.SetUp_Success⇒設置成功╣
  242. }
  243. else {
  244. showMsg(i18next.t("message.SetUp_Failed") + '<br>' + res.MSG, 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  245. }
  246. }, function () {
  247. showMsg(i18next.t("message.SetUp_Failed"), 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  248. });
  249. },
  250. /**
  251. * @param {Object} item 要變更的特休假信息
  252. */
  253. fnUpdateLeaveTX = function (item) {
  254. var param = $.extend({}, { UserId: sCurrentUserId, SouseId: oSet.Guid }, item);
  255. g_api.ConnectLite(sProgramId, 'UpdateLeaveTX', param, function (res) {
  256. if (res.RESULT) {
  257. fnGetLeaveSet();
  258. showMsg(i18next.t("message.SetUp_Success"), 'success'); // ╠message.SetUp_Success⇒設置成功╣
  259. }
  260. else {
  261. showMsg(i18next.t("message.SetUp_Failed") + '<br>' + res.MSG, 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  262. }
  263. }, function () {
  264. showMsg(i18next.t("message.SetUp_Failed"), 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  265. });
  266. },
  267. /**
  268. * 初始化差勤設定
  269. */
  270. fnInitLeaveSet = function () {
  271. g_api.ConnectLite(sProgramId, 'InitLeaveSet', {
  272. CurrentYear: sCurrentYear
  273. }, function (res) {
  274. if (res.RESULT) {
  275. fnGetLeaveSet();
  276. showMsg(i18next.t("message.SetUp_Success"), 'success'); // ╠message.SetUp_Success⇒設置成功╣
  277. }
  278. else {
  279. showMsg(i18next.t("message.SetUp_Failed") + '<br>' + res.MSG, 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  280. }
  281. }, function () {
  282. showMsg(i18next.t("message.SetUp_Error"), 'error'); // ╠message.SetUp_Error⇒設置異常╣
  283. });
  284. },
  285. /**
  286. * 抓取請假規則設定
  287. * @return {Object} ajax
  288. */
  289. fnGetLeaveSetting = function () {
  290. return g_api.ConnectLite(sProgramId, 'GetLeaveSetting', {});
  291. },
  292. /**
  293. * 修改請假規則設定
  294. * @param {Object} args 參數
  295. * @return {Function} Ajax
  296. */
  297. fnUpdateLeaveSetting = function (args) {
  298. return g_api.ConnectLite(sProgramId, 'UpdateLeaveSetting', args, function (res) {
  299. if (res.RESULT) {
  300. showMsg(i18next.t("message.SetUp_Success"), 'success'); // ╠message.SetUp_Success⇒設置成功╣
  301. }
  302. else {
  303. showMsg(i18next.t("message.SetUp_Failed") + '<br>' + res.MSG, 'error'); // ╠message.SetUp_Failed⇒設置失敗╣
  304. }
  305. }, function () {
  306. showMsg(i18next.t("message.SetUp_Error"), 'error');//╠message.SetUp_Error⇒修改資料異常╣
  307. });
  308. },
  309. /**
  310. * 是否小數控件
  311. * @param {Sring}flag 要綁定的資料標記
  312. * @return {HTMLElement} DIV 物件
  313. */
  314. fnCreateRadiosInput = function (flag) {
  315. var $div = $('<div>'),
  316. data = [{ id: 'Y', text: i18next.t('common.Yes') }, { id: 'N', text: i18next.t('common.No') }];
  317. $div.html(createRadios(data, 'id', 'text', '~DecimalFraction' + flag, flag, false, false));
  318. return $div;
  319. },
  320. /**
  321. * @param {Object} inst 按鈕物件對象
  322. * @param {Object} e 事件對象
  323. */
  324. fnButtonHandler = function (inst, e) {
  325. var sId = inst.id;
  326. switch (sId) {
  327. case "Toolbar_Qry":
  328. oBaseQueryPm.IsFilter = undefined;
  329. oGrid.openPage(1);
  330. break;
  331. case "Toolbar_Save":
  332. fnSave('add');
  333. break;
  334. case "Toolbar_ReAdd":
  335. break;
  336. case "Toolbar_Clear":
  337. clearPageVal();
  338. break;
  339. case "Toolbar_Leave":
  340. break;
  341. case "Toolbar_Add":
  342. break;
  343. case "Toolbar_Upd":
  344. break;
  345. case "Toolbar_Copy":
  346. break;
  347. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  348. break;
  349. case "Toolbar_Exp":
  350. break;
  351. case "Toolbar_Imp":
  352. break;
  353. case "PreviousYear":
  354. sCurrentYear = (sCurrentYear * 1 - 1).toString();
  355. oBaseQueryPm.IsFilter = undefined;
  356. oGrid.openPage(1);
  357. oGrid1.openPage(1);
  358. break;
  359. case "NextYear":
  360. sCurrentYear = (sCurrentYear * 1 + 1).toString();
  361. oBaseQueryPm.IsFilter = undefined;
  362. oGrid.openPage(1);
  363. oGrid1.openPage(1);
  364. break;
  365. case "InitLeaveSet":
  366. if (parent.UserInfo.roles.indexOf('Admin') > -1) {
  367. fnInitLeaveSet();
  368. }
  369. break;
  370. default:
  371. alert("No handle '" + sId + "'");
  372. break;
  373. }
  374. },
  375. /**
  376. * 頁面初始化
  377. */
  378. init = function () {
  379. commonInit({
  380. PrgId: sProgramId,
  381. ButtonHandler: fnButtonHandler,
  382. SearchBar: true,
  383. GoTop: true,
  384. Buttons: [{
  385. id: 'PreviousYear',
  386. value: 'common.Toolbar_PreviousYear'// ╠common.Toolbar_PreviousYear⇒上一年╣
  387. },
  388. {
  389. id: 'NextYear',
  390. value: 'common.Toolbar_NextYear'// ╠common.Toolbar_NextYear⇒下一年╣
  391. },
  392. {
  393. id: 'InitLeaveSet',
  394. value: 'common.InitLeaveSet'// ╠common.InitLeaveSet⇒初始化差勤設定╣
  395. }]
  396. });
  397. fnSetArgDrop([
  398. {
  399. ArgClassID: 'LeaveType',
  400. CallBack: function (data) {
  401. sHtmlCategory = createOptions(data, 'id', 'text', true);
  402. }
  403. }
  404. ]);
  405. fnSetMemberMenu();
  406. $("#jsGrid").jsGrid({
  407. width: "100%",
  408. height: "auto",
  409. autoload: true,
  410. pageLoading: true,
  411. inserting: false,
  412. editing: false,
  413. sorting: true,
  414. paging: true,
  415. pageIndex: 1,
  416. pageSize: 1000,
  417. fields: [
  418. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 40, sorting: false },
  419. { name: "HolidayCategoryName", title: 'common.HolidayCategory', width: 60 },
  420. {
  421. name: "KeyNote", title: 'common.KeyNote', width: 200, itemTemplate: function (val, item) {
  422. var sVal = val;
  423. if (item.Important > 1) {
  424. for (var i = 0; i < item.Important - 1; i++) {
  425. sVal += ' <img src="../../images/star.gif">';
  426. }
  427. }
  428. return $('<a>', { html: sVal });
  429. }
  430. },
  431. { name: "LeaveReason", title: 'common.LeaveReason', width: 150, align: 'center' },
  432. { name: "TotalTime", title: 'common.TotalTime', align: 'center', width: 50 },
  433. { name: "Agent_PersonName", title: 'common.AgentPerson', width: 100, align: 'center' },
  434. {
  435. name: "StartDate", title: 'common.StartDate', width: 100, align: 'center', itemTemplate: function (val, item) {
  436. return newDate(val);
  437. }
  438. },
  439. {
  440. name: "EndDate", title: 'common.EndDate', width: 100, align: 'center', itemTemplate: function (val, item) {
  441. return newDate(val);
  442. }
  443. },
  444. {
  445. name: "Status", title: 'common.Status', width: 100, align: 'center', itemTemplate: function (val, item) {
  446. var oStatus = {
  447. 'B': i18next.t('common.InAudit'),// ╠common.InAudit⇒審核中╣
  448. 'E': i18next.t('common.ToHandle'),// ╠common.ToHandle⇒待經辦╣
  449. 'H-O': i18next.t('common.HasCompleted')// ╠common.HasCompleted⇒已完成╣
  450. };
  451. return oStatus[item.Status] ? '<span style="color:#DF5F09">' + oStatus[item.Status] + '</span>' : '';
  452. }
  453. }
  454. ],
  455. controller: {
  456. loadData: function (args) {
  457. return fnGetLeaveList(args);
  458. }
  459. },
  460. onInit: function (args) {
  461. oGrid = args.grid;
  462. }
  463. });
  464. $("#jsGrid1").jsGrid({
  465. width: "100%",
  466. height: "auto",
  467. autoload: true,
  468. pageLoading: true,
  469. inserting: false,
  470. editing: false,
  471. sorting: false,
  472. paging: true,
  473. pageIndex: 1,
  474. pageSize: 1000,
  475. fields: [
  476. {
  477. name: "Name", title: 'common.HolidayCategory', width: 70, itemTemplate: function (val, item) {
  478. return item.Id + '-' + item.Name;
  479. }
  480. },
  481. {// ╠common.AvailableHours⇒可用時數╣ = 剩餘時數 + 已用時數
  482. name: "PaymentHours", title: 'common.AvailableHours', width: 50, align: 'center',
  483. itemTemplate: function (val, item) {
  484. var oControl = $('<a>', {
  485. html: fMoney(val * 1, 2),
  486. style: 'color: #337ab7;text-decoration: underline !important',
  487. click: function () {
  488. var isAdmin = parent.UserInfo.roles.indexOf('Admin') > -1;
  489. var isEipManger = parent.UserInfo.roles.indexOf('EipManager') > -1;
  490. if (!isAdmin && !isEipManger) {
  491. return false;
  492. }
  493. if (item.Id == "09" && !isAdmin) {
  494. return false;
  495. }
  496. //╠common.HolidayCategory⇒假別╣╠common.OriginalHours⇒原本時數╣╠common.Hours⇒小時╣╠common.AddLeaveHours⇒新增時數╣╠common.Memo⇒備註╣
  497. var sContent = '\
  498. <div class="row popsrow">\
  499. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.HolidayCategory">假別</span></label>\
  500. <div class="col-sm-8">\
  501. <select class="form-control" id="HolidayCategory" disabled></select>\
  502. </div>\
  503. </div>\
  504. <div class="row popsrow">\
  505. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.OriginalHours">原本時數</span></label>\
  506. <label class="col-sm-8 show-text"><span id="OriginalHours"></span><span data-i18n="common.Hours"></span></label>\
  507. </div>\
  508. <div class="row popsrow">\
  509. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.AddLeaveHours">新增時數</span></label>\
  510. <div class="col-sm-8">\
  511. <input type="text" class="form-control w100p" id="AddLeaveHours" maxlength="10">\
  512. </div>\
  513. </div>\
  514. <div class="row popsrow">\
  515. <label class="col-sm-3 control-label wright" for="input-Default"><span data-i18n="common.Memo">備註</span></label>\
  516. <div class="col-sm-8">\
  517. <textarea id="Memo" class="form-control" rows="5" cols="20"></textarea>\
  518. </div>\
  519. </div>';
  520. layer.open({
  521. type: 1,
  522. title: i18next.t('common.ChangeLeaveHours'),// ╠common.ChangeLeaveHours⇒變更可用假數╣
  523. shadeClose: false,
  524. shade: 0.1,
  525. maxmin: true, //开启最大化最小化按钮
  526. area: ['400px', '350px'],
  527. content: sContent,
  528. success: function (layero, index) {
  529. layero.find('#HolidayCategory').html(sHtmlCategory).val(item.Id).find('option:first').remove();
  530. layero.find('#OriginalHours').text(fMoney(item.PaymentHours * 1, 2));
  531. layero.find('#AddLeaveHours').on('keyup blur', function (e) {
  532. keyIntp(e, this, 1);
  533. });
  534. },
  535. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  536. yes: function (index, layero) {
  537. var sHolidayCategory = layero.find('#HolidayCategory').val(),
  538. sAddLeaveHours = layero.find('#AddLeaveHours').val(),
  539. sMemo = layero.find('#Memo').val(),
  540. iTotal = 0;
  541. iTotal = item.PaymentHours * 1 + sAddLeaveHours * 1;
  542. if (sAddLeaveHours === '' || sAddLeaveHours === 0) {
  543. showMsg(i18next.t("message.PaymentHoursTips")); // ╠message.PaymentHoursTips⇒修改時數不可以是空或0╣
  544. return false;
  545. }
  546. if (iTotal < 0) {
  547. showMsg(i18next.t("message.PaymentHoursWarnning")); // ╠message.PaymentHoursWarnning⇒可用時數不可小於0╣
  548. return false;
  549. }
  550. if (item.Id === '09' && sAddLeaveHours * 1 > 0) {
  551. showMsg(i18next.t("message.PaymentHoursTXTips")); // ╠message.PaymentHoursTXTips⇒特休假時數不可以增加╣
  552. return false;
  553. }
  554. item.PaymentHoursOld = item.PaymentHours;
  555. item.PaymentHours = iTotal;
  556. item.RemainHours = item.PaymentHours * 1 - item.UsedHours * 1;
  557. item.Memo = sMemo;
  558. if (item.Id === '09') {
  559. //showMsg(i18next.t("message.TXJSetWarnning")); // ╠message.TXJSetWarnning⇒特休假不可以設定╣
  560. //return false;
  561. item.AddLeaveHours = sAddLeaveHours;
  562. fnUpdateLeaveTX(item);
  563. }
  564. else {
  565. fnUpdateLeaveSet(item);
  566. }
  567. layer.close(index);
  568. }
  569. });
  570. }
  571. });
  572. if (val === '') {
  573. oControl.html(i18next.t('common.NoLimit'));// ╠common.NoLimit⇒不限╣
  574. }
  575. return fMoney(val * 1, 2);
  576. //return oControl;
  577. }
  578. },
  579. {// ╠common.UsedHours⇒已用時數╣
  580. name: "UsedHours", title: 'common.UsedHours', width: 50, align: 'center',
  581. itemTemplate: function (val, item) {
  582. return fMoney(val * 1, 2);
  583. }
  584. },
  585. {// ╠common.RemainHours⇒剩餘時數╣
  586. name: "RemainHours", title: 'common.RemainHours', width: 50, align: 'center',
  587. itemTemplate: function (val, item) {
  588. return fMoney(val * 1, 2);
  589. }
  590. },
  591. { name: "Memo", title: 'common.Memo', width: 100 }
  592. ],
  593. controller: {
  594. loadData: function (args) {
  595. if (args.IsFilter === undefined) {
  596. fnGetLeaveSet();
  597. }
  598. else {
  599. return oLeaveSet;
  600. }
  601. }
  602. },
  603. onInit: function (args) {
  604. oGrid1 = args.grid;
  605. }
  606. });
  607. $("#jsGrid2").jsGrid({
  608. width: "100%",
  609. height: "auto",
  610. autoload: false,
  611. pageLoading: true,
  612. inserting: false,
  613. editing: false,
  614. sorting: false,
  615. paging: true,
  616. pageIndex: 1,
  617. pageSize: 1000,
  618. fields: [
  619. {// ╠common.ChangeRecord⇒變更記錄╣
  620. name: "ChangeRecord", title: 'common.ChangeRecord', width: 100,
  621. itemTemplate: function (val, item) {
  622. var oLogInfo = $.parseJSON(item.LogInfo);
  623. return oLogInfo.ChangeRecord;
  624. }
  625. },
  626. {
  627. name: "Memo", title: 'common.Memo', width: 100,
  628. itemTemplate: function (val, item) {
  629. var oLogInfo = $.parseJSON(item.LogInfo);
  630. return oLogInfo.Memo;
  631. }
  632. },
  633. {// ╠common.ChangeUser⇒變更者╣
  634. name: "ChangeUser", title: 'common.ChangeUser', width: 50, align: 'center',
  635. itemTemplate: function (val, item) {
  636. var oLogInfo = $.parseJSON(item.LogInfo);
  637. return oLogInfo.ChangeUserName;
  638. }
  639. },
  640. {// ╠common.ChangeTime⇒ 變更時間╣
  641. name: "CreateDate", title: 'common.ChangeTime', width: 80, align: 'center',
  642. itemTemplate: function (val, item) {
  643. return newDate(val);
  644. }
  645. }
  646. ],
  647. controller: {
  648. loadData: function (args) {
  649. if (args.IsFilter === undefined) {
  650. fnGetChangeRecords();
  651. }
  652. else {
  653. return oChangeRecords;
  654. }
  655. }
  656. },
  657. onInit: function (args) {
  658. oGrid2 = args.grid;
  659. }
  660. });
  661. if (parent.UserInfo.roles.indexOf('Admin') > -1) {
  662. $("#litab2").show()
  663. $("#jsGrid3").jsGrid({
  664. width: "100%",
  665. height: "auto",
  666. autoload: true,
  667. filtering: false,
  668. inserting: false,
  669. editing: true,
  670. pageLoading: true,
  671. invalidMessage: i18next.t('common.InvalidData'),// ╠common.InvalidData⇒输入的数据无效!╣
  672. pageIndex: 1,
  673. pageSize: 10000,
  674. rowClick: function (args) {
  675. },
  676. fields: [
  677. {
  678. name: "ArgumentValue", title: 'common.HolidayCategory', width: 100, type: "text", align: "center", editing: false
  679. },
  680. {
  681. name: "Memo", title: 'common.HolidayCategoryExplanation', width: 150, type: "text"// ╠common.HolidayCategoryExplanation⇒假別說明╣
  682. },
  683. {// ╠common.ExpenditureHours⇒可預支時數(h)╣
  684. name: "Correlation", title: 'common.ExpenditureHours', width: 110, type: "text", align: "center",
  685. editTemplate: function (val, item) {
  686. var oControl = $('<input />', {
  687. class: "form-control",
  688. 'data-type': 'int',
  689. 'data-name': 'int',
  690. value: item.Correlation
  691. });
  692. moneyInput(oControl, 0, true);
  693. return this.editControl = oControl;
  694. },
  695. editValue: function () {
  696. return this.editControl.attr('data-value') || '';
  697. }
  698. },
  699. {// ╠common.MinimumLeaveHours⇒最小請假時數(h)╣
  700. name: "ExFeild1", title: 'common.MinimumLeaveHours', width: 110, type: "text", align: "center",
  701. editTemplate: function (val, item) {
  702. var oControl = $('<input />', {
  703. class: "form-control",
  704. 'data-type': 'int',
  705. 'data-name': 'int',
  706. value: item.ExFeild1
  707. });
  708. moneyInput(oControl, 2, true);
  709. return this.editControl = oControl;
  710. },
  711. editValue: function () {
  712. return this.editControl.attr('data-value') || '';
  713. }
  714. },
  715. {// ╠common.LeaveInterval⇒每次請假間隔(h)╣
  716. name: "ExFeild2", title: 'common.LeaveInterval', width: 110, type: "text", align: "center",
  717. editTemplate: function (val, item) {
  718. var oControl = $('<input />', {
  719. class: "form-control",
  720. 'data-type': 'int',
  721. 'data-name': 'int',
  722. value: item.ExFeild2
  723. });
  724. moneyInput(oControl, 2, true);
  725. return this.editControl = oControl;
  726. },
  727. editValue: function () {
  728. return this.editControl.attr('data-value') || '';
  729. }
  730. },
  731. {// ╠common.LeaveHoursPerMonth⇒每月請假最大時數╣
  732. name: "ExFeild3", title: 'common.LeaveHoursPerMonth', width: 110, type: "text", align: "center",
  733. editTemplate: function (val, item) {
  734. var oControl = $('<input />', {
  735. class: "form-control",
  736. 'data-type': 'int',
  737. 'data-name': 'int',
  738. value: item.ExFeild3
  739. });
  740. moneyInput(oControl, 2, true);
  741. return this.editControl = oControl;
  742. },
  743. editValue: function () {
  744. return this.editControl.attr('data-value') || '';
  745. }
  746. },
  747. {// ╠common.DecimalFraction⇒是否小數╣
  748. name: "ExFeild4", title: 'common.DecimalFraction', align: 'center', width: 100, type: "text",
  749. itemTemplate: function (val, item) {
  750. return val === 'Y' ? i18next.t('common.Yes') : i18next.t('common.No');
  751. },
  752. editTemplate: function (val, item) {
  753. var oControl = fnCreateRadiosInput('edit');
  754. oControl.find(':input[value="' + (val || 'N') + '"]').click();
  755. uniformInit(oControl);
  756. return this.editControl = oControl;
  757. },
  758. editValue: function () {
  759. return this.editControl.find(':input:checked').val();
  760. }
  761. },
  762. {
  763. title: 'common.Action', type: "control", width: 50, deleteButton: false, editButton: parent.UserInfo.roles.indexOf('EipView') === -1
  764. }
  765. ],
  766. controller: {
  767. loadData: function (args) {
  768. return fnGetLeaveSetting();
  769. },
  770. updateItem: function (args) {
  771. fnUpdateLeaveSetting(args);
  772. }
  773. },
  774. onInit: function (args) {
  775. oGrid3 = args.grid;
  776. }
  777. });
  778. }
  779. else {
  780. $("#litab2").hide()
  781. }
  782. };
  783. init();
  784. };
  785. require(['base', 'jsgrid', 'jqtree', 'formatnumber', 'util'], fnPageInit);