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.

409 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. saLeave = [],
  7. saBusTrip = [],
  8. saOvertime = [],
  9. saAttendanceDiff = [],
  10. oBaseQueryPm = {
  11. pageIndex: 1,
  12. pageSize: parent.SysSet.GridRecords || 10,
  13. sortField: 'CardDate',
  14. sortOrder: 'desc'
  15. },
  16. /**
  17. * 獲取資料
  18. * @param {Object} args 查詢條件參數
  19. * @return {Object} Ajax返回物件
  20. */
  21. fnGet = function (args) {
  22. var oQueryPm = {},
  23. oQuery = getFormSerialize(oForm);
  24. $.extend(oQueryPm, oBaseQueryPm, args);
  25. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  26. $.extend(oQueryPm, oQuery);
  27. return $.whenArray([
  28. g_api.ConnectLite(sProgramId, ComFn.GetPage, oQueryPm),
  29. g_api.ConnectLite(sProgramId, 'GetLeave',
  30. {
  31. UserIDs: oQuery.UserIDs,
  32. DateStart: oQueryPm.DateStart,
  33. DateEnd: oQueryPm.DateEnd
  34. },
  35. function (res) {
  36. if (res.RESULT) {
  37. saLeave = res.DATA.rel;
  38. }
  39. }),
  40. g_api.ConnectLite(sProgramId, 'GetBusTrip',
  41. {
  42. UserIDs: oQuery.UserIDs,
  43. DateStart: oQueryPm.DateStart,
  44. DateEnd: oQueryPm.DateEnd
  45. },
  46. function (res) {
  47. if (res.RESULT) {
  48. saBusTrip = res.DATA.rel;
  49. }
  50. }),
  51. //g_api.ConnectLite(sProgramId, 'GetOvertime', {
  52. // UserIDs: oQuery.UserIDs,
  53. // DateStart: oQueryPm.DateStart,
  54. // DateEnd: oQueryPm.DateEnd
  55. //}, function (res) {
  56. // if (res.RESULT) {
  57. // saOvertime = res.DATA.rel;
  58. // }
  59. //}),
  60. g_api.ConnectLite(sProgramId, 'GetAttendanceDiff',
  61. {
  62. UserIDs: oQuery.UserIDs,
  63. DateStart: oQueryPm.DateStart,
  64. DateEnd: oQueryPm.DateEnd
  65. }
  66. , function (res) {
  67. if (res.RESULT) {
  68. saAttendanceDiff = res.DATA.rel;
  69. }
  70. })
  71. ]);
  72. },
  73. /**
  74. * 處理請假加班和出差資料的考情關係
  75. * @param {Object} date 當前考勤資料日期
  76. * @param {String} userid 人員id
  77. * @param {Object} flag 請假出差標記
  78. * @return {Boolean} 是否停止
  79. */
  80. fnGetCorrect = function (date, userid, flag) {
  81. var oA = $('<a>', { class: 'a-url' }),
  82. sPrgId = '',
  83. oCorrect = {},
  84. oStatus = {
  85. 'H-O': i18next.t('common.HasCompleted'),// ╠common.HasCompleted⇒已完成╣
  86. 'B': i18next.t('common.InAudit'),// ╠common.InAudit⇒審核中╣
  87. 'E': i18next.t('common.ToHandle'),// ╠common.ToHandle⇒待經辦╣
  88. };
  89. if (flag === 1) {
  90. sPrgId = 'Leave_View';
  91. $.each(saLeave, function (idx, item) {
  92. var rDate = new Date(newDate(date, true));
  93. if (userid === item.AskTheDummy && rDate >= new Date(newDate(item.StartDate, true)) && rDate <= new Date(newDate(item.EndDate, true))) {
  94. oCorrect = item;
  95. return false;
  96. }
  97. });
  98. }
  99. else if (flag === 2) {
  100. sPrgId = 'BusinessTravel_View';
  101. $.each(saBusTrip, function (idx, item) {
  102. var rDate = new Date(newDate(date, true));
  103. if (userid === item.AskTheDummy && rDate >= new Date(newDate(item.StartDate, true)) && rDate <= new Date(newDate(item.EndDate, true))) {
  104. oCorrect = item;
  105. return false;
  106. }
  107. });
  108. }
  109. else if (flag === 3) {
  110. sPrgId = 'OverTime_View';
  111. $.each(saOvertime, function (idx, item) {
  112. var rDate = new Date(newDate(date, true));
  113. if (userid === item.AskTheDummy && rDate >= new Date(newDate(item.StartDate, true)) && rDate <= new Date(newDate(item.EndDate, true))) {
  114. oCorrect = item;
  115. return false;
  116. }
  117. });
  118. }
  119. else if (flag === 4) {
  120. sPrgId = 'AttendanceDiff_View';
  121. $.each(saAttendanceDiff, function (idx, item) {
  122. var rDate = newDate(date, true);
  123. if (userid === item.AskTheDummy && rDate === newDate(item.FillBrushDate, true)) {
  124. oCorrect = item;
  125. return false;
  126. }
  127. });
  128. }
  129. oA.html(oStatus[oCorrect.Status]).click(function () {
  130. parent.openPageTab(sPrgId, '?Action=Upd&Guid=' + oCorrect.Guid);
  131. });
  132. return oA;
  133. },
  134. /**
  135. * 匯出資料
  136. */
  137. fnExcel = function () {
  138. var oQuery = getFormSerialize(oForm);
  139. g_api.ConnectLite(sProgramId, 'GetExcel', {
  140. UserIDs: oQuery.UserIDs,
  141. DateStart: oQuery.DateStart,
  142. DateEnd: oQuery.DateEnd
  143. }, function (res) {
  144. if (res.RESULT) {
  145. DownLoadFile(res.DATA.rel);
  146. }
  147. });
  148. },
  149. /**
  150. * 同步打卡資料
  151. * @param {Boolean} isreset 是否重置
  152. * @return {Boolean} 是否停止
  153. */
  154. fnTransferEip = function (isreset) {
  155. var sDateStart = $('#DateStart').val(),
  156. sDateEnd = $('#DateEnd').val();
  157. if (sDateStart === '' || sDateEnd === '') {
  158. showMsg(i18next.t("message.SynchronousDateInterval_Required")); //╠message.SynchronousDateInterval_Required⇒請選擇要同步的時間區間╣
  159. return false;
  160. }
  161. g_api.ConnectLite(sProgramId, 'TransferEip', {
  162. DateStart: sDateStart,
  163. DateEnd: sDateEnd,
  164. IsReSet: isreset
  165. }, function (res) {
  166. if (res.RESULT) {
  167. oGrid.loadData();
  168. showMsg(i18next.t("message.SynchronousSuccess"), 'success'); //╠message.SynchronousSuccess⇒同步成功╣
  169. }
  170. });
  171. },
  172. /**
  173. * ToolBar 按鈕事件 function
  174. * @param {Object} inst 按鈕物件對象
  175. * @param {Object} e 事件對象
  176. * @return {Boolean} 是否停止
  177. */
  178. fnButtonHandler = function (inst, e) {
  179. var sId = inst.id;
  180. switch (sId) {
  181. case "Toolbar_Qry":
  182. var iNum = $('#PerPageNum').val();
  183. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  184. cacheQueryCondition();
  185. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  186. break;
  187. case "Toolbar_Save":
  188. fnSave('add');
  189. break;
  190. case "Toolbar_ReAdd":
  191. break;
  192. case "Toolbar_Clear":
  193. clearPageVal();
  194. break;
  195. case "Toolbar_Leave":
  196. break;
  197. case "Toolbar_Add":
  198. break;
  199. case "Toolbar_Upd":
  200. break;
  201. case "Toolbar_Copy":
  202. break;
  203. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  204. break;
  205. case "Toolbar_TransferEip":
  206. fnTransferEip(true);
  207. break;
  208. case "Toolbar_ReSetSynchronous":
  209. fnTransferEip(true);
  210. break;
  211. case "Toolbar_Exp":
  212. if (oGrid.data.length === 0) {
  213. showMsg(i18next.t("message.NoDataExport"));// ╠message.NoDataExport⇒沒有資料匯出╣
  214. return false;
  215. }
  216. fnExcel();
  217. break;
  218. default:
  219. alert("No handle '" + sId + "'");
  220. break;
  221. }
  222. },
  223. /**
  224. * init 初始化
  225. */
  226. init = function () {
  227. var saCusBtns = [];
  228. saCusBtns.push({
  229. id: 'Toolbar_TransferEip',
  230. value: 'common.Synchronous'// ╠common.Synchronous⇒同步╣
  231. });
  232. //if (parent.UserInfo.roles.indexOf('Admin') > -1) {
  233. // saCusBtns.push({
  234. // id: 'Toolbar_ReSetSynchronous',
  235. // value: 'common.ReSetSynchronous'// ╠common.ReSetSynchronous⇒同步重置╣
  236. // });
  237. //}
  238. commonInit({
  239. PrgId: sProgramId,
  240. ButtonHandler: fnButtonHandler,
  241. Buttons: saCusBtns,
  242. SearchBar: true
  243. });
  244. if (!(parent.UserInfo.roles.indexOf('Admin') > -1 || parent.UserInfo.roles.indexOf('EipManager') > -1 || parent.UserInfo.roles.indexOf('EipView') > -1)) {
  245. $('.eipmg').remove();
  246. $('.noteipmg').show();
  247. }
  248. else {
  249. $('.noteipmg').remove();
  250. }
  251. $('.add-on').click(function () {
  252. var oOption = {};
  253. oOption.Flowtype = true;
  254. oOption.Callback = function (data) {
  255. var saSelectedUser = [],
  256. saSearchUserIds = [];
  257. if (data.Users.length > 0) {
  258. $.each(data.Users, function (idx, user) {
  259. saSelectedUser.push(user.name);
  260. saSearchUserIds.push(user.id);
  261. });
  262. }
  263. $('#UserName').val(saSelectedUser.join(','));
  264. $('#UserIDs').val(saSearchUserIds.join(','));
  265. };
  266. oPenUserListPop(oOption);
  267. });
  268. reSetQueryPm(sProgramId);
  269. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  270. $("#jsGrid").jsGrid({
  271. width: "100%",
  272. height: iHeight + "px",
  273. autoload: true,
  274. pageLoading: true,
  275. inserting: false,
  276. editing: false,
  277. sorting: true,
  278. paging: true,
  279. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  280. pageSize: parent.SysSet.GridRecords || 10,
  281. pageButtonCount: parent.SysSet.GridPages || 15,
  282. pagePrevText: "<",
  283. pageNextText: ">",
  284. pageFirstText: "<<",
  285. pageLastText: ">>",
  286. onPageChanged: function (args) {
  287. cacheQueryCondition(args.pageIndex);
  288. },
  289. fields: [
  290. { name: "RowIndex", title: 'common.RowNumber', align: "center", type: "text", width: 50, sorting: false },
  291. {
  292. name: "OrgID", title: 'Organization_Upd.OrgID', align: "center", type: "text", width: 80
  293. },
  294. {
  295. name: "CardUserName", title: 'common.FullName', align: "left", type: "text", width: 100
  296. },
  297. {// ╠common.Date⇒日期╣
  298. name: "CardDate", title: 'common.Date', align: "center", type: "text", width: 100,
  299. itemTemplate: function (val, item) {
  300. return newDate(val, true);
  301. }
  302. },
  303. {// ╠common.TimeA⇒上班/刷卡╣
  304. name: "TimeA", title: 'common.TimeA', type: "text", align: "center", width: 120,
  305. itemTemplate: function (val, item) {
  306. var sText = '-----';
  307. if (item.TimeA) {
  308. sText = $.grep(item.TimeA.split(':'), function (e, i) { return i !== 2; }).join(':') + ' / ' + (item.StatusA ? '<span class="t-red">' + item.SignIn.substr(0, 5) + '</span>' : item.SignIn.substr(0, 5));
  309. }
  310. return sText;
  311. }
  312. },
  313. {// ╠common.TimeP⇒下班/刷卡╣
  314. name: "TimeP", title: 'common.TimeP', type: "text", align: "center", width: 120,
  315. itemTemplate: function (val, item) {
  316. var sText = '-----';
  317. if (item.TimeP) {
  318. if (item.SignOut) {
  319. sText = item.TimeP + ' / ' + (item.StatusP ? '<span class="t-red">' + item.SignOut.substr(0, 5) + '</span>' : item.SignOut.substr(0, 5));
  320. }
  321. }
  322. return sText;
  323. }
  324. },
  325. {// ╠common.WorkHours⇒時數╣
  326. name: "Hours", title: 'common.WorkHours', align: "center", type: "text", width: 50
  327. },
  328. {// ╠common.LackHours⇒欠勤╣
  329. name: "Hours", title: 'common.LackHours', align: "center", type: "text", width: 50,
  330. itemTemplate: function (val, item) {
  331. var sText = '--';
  332. if (item.Hours === '0' || !!Number(item.Hours)) {
  333. let MaxLimitedHours = 9.00;
  334. let ActualHours = Number(item.Hours);
  335. let LackHour = parseFloat((MaxLimitedHours - ActualHours).toFixed(2));;
  336. sText = Math.ceil(LackHour);
  337. }
  338. return sText;
  339. }
  340. },
  341. {
  342. name: "Memo", title: 'common.Memo', type: "text", width: 100
  343. },
  344. {// ╠common.AskForLeave⇒請假╣
  345. name: "CardDate", title: 'common.AskForLeave', align: "center", type: "text", width: 80, sorting: false,
  346. itemTemplate: function (val, item) {
  347. return fnGetCorrect(val, item.UserID, 1);
  348. }
  349. },
  350. {// ╠common.OnBusinessTrip⇒出差╣
  351. name: "CardDate", title: 'common.OnBusinessTrip', align: "center", type: "text", width: 80, sorting: false,
  352. itemTemplate: function (val, item) {
  353. return fnGetCorrect(val, item.UserID, 2);
  354. }
  355. },
  356. //{// ╠common.WorkOvertime⇒加班╣
  357. // name: "CardDate", title: 'common.WorkOvertime', align: "center", type: "text", width: 100, sorting: false,
  358. // itemTemplate: function (val, item) {
  359. // return fnGetCorrect(val, item.UserID, 3);
  360. // }
  361. //},
  362. {// ╠common.AttendanceDiff⇒差勤異常╣
  363. name: "CardDate", title: 'common.AttendanceDiff', align: "center", type: "text", width: 80, sorting: false,
  364. itemTemplate: function (val, item) {
  365. return fnGetCorrect(val, item.UserID, 4);
  366. }
  367. }
  368. ],
  369. controller: {
  370. loadData: function (args) {
  371. return fnGet(args);
  372. }
  373. },
  374. onInit: function (args) {
  375. oGrid = args.grid;
  376. }
  377. });
  378. };
  379. init();
  380. };
  381. require(['base', 'select2', 'jsgrid', 'filer', 'common_eip', 'util'], fnPageInit);