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.

1059 lines
56 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sQueryPrgId = 'Leave_Qry',
  4. sEditPrgId = 'Leave_Upd',
  5. sAction = getUrlParam('Action') || 'Add',
  6. sDataId = getUrlParam('Guid'),
  7. sCheckId = sDataId,
  8. fnPageInit = function () {
  9. var oCurData = { CheckFlows: [], HandleFlows: [] },
  10. oForm = $('#form_main'),
  11. saCheckOrder_Push = [],
  12. saUsers = [],
  13. sCurAuditFlowId = null,
  14. sCurHandleFlowId = null,
  15. bGoNext = true,
  16. /**
  17. * 獲取當前審核人員
  18. * @param {Object} data 當前審核資料
  19. */
  20. fnGetCurAuditor = function (data) {
  21. var saCheckFlows = $.parseJSON(data.CheckFlows),
  22. saNewList = Enumerable.From(saCheckFlows).GroupBy("$.Order").ToArray(),
  23. bAuditor = false,
  24. bHandle = false,
  25. bAllAudit = false;
  26. if ('B,E'.indexOf(data.Status) > -1) {//只有審核中或者待經辦的資料才可以出現審核區塊
  27. $.each(saNewList, function (idx, _data) {
  28. var sSignedWay = _data.source[0].SignedWay,
  29. iCount = Enumerable.From(_data.source).Where(function (e) { return (e.SignedDecision === 'Y' || e.SignedDecision === 'O'); }).Count(),
  30. sCurAuditor = Enumerable.From(_data.source).ToString(",", "$.SignedId");
  31. if ((('flow1,flow3'.indexOf(sSignedWay) > -1 && iCount === 0) || (sSignedWay === 'flow2' && iCount !== _data.source.length))) {
  32. if (sCurAuditor.indexOf(parent.UserID) > -1) {
  33. var oCurUser = Enumerable.From(_data.source).Where(function (e) { return e.SignedId === parent.UserID; }).First();
  34. if (sSignedWay === 'flow2' && iCount < _data.source.length - 1) {
  35. bGoNext = false;
  36. }
  37. if (!oCurUser.SignedDecision) {
  38. sCurAuditFlowId = oCurUser.FlowId;
  39. bAuditor = true;
  40. }
  41. }
  42. if (!bAllAudit) {//只要有需要審核的人,就不要檢核是否簽辦
  43. bAllAudit = true;
  44. }
  45. return false;
  46. }
  47. });
  48. if (!bAuditor && !bAllAudit) {//當沒有要審核的人員並且審核全部完成時才會檢核簽辦
  49. var saHandleFlows = $.parseJSON(data.HandleFlows),
  50. sCurAuditor = saHandleFlows[0].SignedId;
  51. if (saHandleFlows[0].SignedDecision !== 'Y' && sCurAuditor === parent.UserID) {
  52. sCurHandleFlowId = saHandleFlows[0].FlowId
  53. bHandle = true;
  54. }
  55. }
  56. }
  57. return {
  58. IsAuditor: bAuditor,
  59. IsHandler: bHandle
  60. };
  61. },
  62. /**
  63. * 註冊加簽事件
  64. * @param {Number} _grididx當前Gird 序號
  65. */
  66. fnRegisterAddFlows = function (_grididx) {
  67. $('.flowlink' + _grididx).on('click', function () {
  68. var oOption = {};
  69. oOption.SignedWay = $(this).data('id');
  70. oOption.Callback = function (data) {
  71. if (data.Users.length > 0) {
  72. var oFlow = {};
  73. if (data.FlowType === 'flow1') {
  74. $.each(data.Users, function (idx, user) {
  75. oFlow = {};
  76. oFlow.id = guid();
  77. oFlow.Order = saCheckOrder_Push.length + 1;
  78. oFlow.SignedWay = data.FlowType;
  79. oFlow.SignedMember = [{
  80. id: user.id,
  81. name: user.name,
  82. deptname: user.deptname,
  83. jobname: user.jobname
  84. }];
  85. saCheckOrder_Push.push(oFlow);
  86. });
  87. }
  88. else {
  89. var saUsers = [];
  90. $.each(data.Users, function (idx, user) {
  91. saUsers.push({
  92. id: user.id,
  93. name: user.name,
  94. deptname: user.deptname,
  95. jobname: user.jobname
  96. });
  97. });
  98. oFlow.id = guid();
  99. oFlow.Order = saCheckOrder_Push.length + 1;
  100. oFlow.SignedWay = data.FlowType;
  101. oFlow.SignedMember = saUsers;
  102. saCheckOrder_Push.push(oFlow);
  103. }
  104. saCheckOrder_Push = releaseGridList(saCheckOrder_Push);
  105. $("#jsGrid" + _grididx).jsGrid("loadData");
  106. }
  107. };
  108. oPenUserListPop(oOption);
  109. });
  110. },
  111. /**
  112. * 獲取資料
  113. */
  114. fnGet = function () {
  115. return g_api.ConnectLite(sQueryPrgId, ComFn.GetOne,
  116. {
  117. Guid: sDataId
  118. },
  119. function (res) {
  120. if (res.RESULT) {
  121. var oRes = res.DATA.rel,
  122. saFlowsText = [],
  123. sStatus = '';
  124. if (oRes.Status === 'C-O') {
  125. sStatus = '(' + i18next.t("common.HasReEdited") + ')';// ╠common.HasReEdited⇒已抽單╣
  126. }
  127. else if (oRes.Status === 'D-O') {
  128. sStatus = '(' + i18next.t("common.HasReturned") + ')';// ╠common.HasReturned⇒已退件╣
  129. }
  130. else if (oRes.Status === 'X') {
  131. sStatus = '(' + i18next.t("common.HasVoid") + ')';// ╠common.HasVoid⇒已作廢╣
  132. }
  133. //根據帳單狀態,移除抽單按鈕(扣除已經辦只能admin抽單)
  134. fnCheckReEdit(oRes.Status, oRes.AskTheDummy);
  135. if (oRes.AskTheDummy !== parent.UserID) {
  136. $('#Toolbar_Copy').remove();
  137. }
  138. if ('B,Y'.indexOf(oRes.Status) === -1) {
  139. $('#Toolbar_Void').remove();
  140. }
  141. var oCheck = fnGetCurAuditor(oRes);
  142. if (oCheck.IsAuditor) {
  143. $('#IsAuditor').show();
  144. }
  145. if (oCheck.IsHandler) {
  146. $('#IsHandler').show();
  147. }
  148. if (oCheck.IsAuditor || oCheck.IsHandler) {
  149. $('.submitdecision').click(function () {
  150. var sSubmitAction = $(this).data('id');
  151. fnSubmitDecision(sSubmitAction);
  152. });
  153. }
  154. if (oRes.VoidReason) {
  155. $('#VoidReason').text(oRes.VoidReason);
  156. $('.VoidReason').show();
  157. }
  158. if (oRes.CrosssignTurn === 'N') {
  159. $('.crosssignturn').remove();
  160. }
  161. oCurData = oRes;
  162. oCurData.CheckOrder = $.parseJSON(oCurData.CheckOrder);
  163. oCurData.CheckFlows = $.parseJSON(oCurData.CheckFlows);
  164. oCurData.HandleFlows = $.parseJSON(oCurData.HandleFlows);
  165. setFormVal(oForm, oRes);
  166. $('#StartDate').val(newDate(oCurData.StartDate));
  167. $('#EndDate').val(newDate(oCurData.EndDate));
  168. $('.AskTheDummy').text(oCurData.AskTheDummyName + '(' + oCurData.AskTheDummy + ') ' + oCurData.DeptName);
  169. $('.eip-note').text(oCurData.KeyNote);
  170. $('#status').text(sStatus);
  171. $('#Applicant,#AskTheDummy').text(oCurData.DeptName + ' ' + oCurData.AskTheDummyName);
  172. $('#Handle_Person').text(oCurData.Handle_PersonName);// ╠common.Important_1⇒普通╣ ╠common.Important_2⇒重要╣ ╠common.Important_3⇒很重要╣
  173. $('#Important').text(oCurData.Important === '1' ? i18next.t("common.Important_1") : oCurData.Important === '2' ? i18next.t("common.Important_2") : i18next.t("common.Important_3"));
  174. $('#SignedNumber').text(oCurData.SignedNumber);
  175. $.each(oCurData.CheckOrder, function (idx, order) {
  176. var sFlowType = i18next.t('common.' + order.SignedWay);
  177. if (order.SignedWay !== 'flow1') {
  178. saFlowsText.push(sFlowType + '(' + Enumerable.From(order.SignedMember).ToString(",", "$.name") + ')');
  179. }
  180. else {
  181. saFlowsText.push(Enumerable.From(order.SignedMember).ToString(",", "$.name"));
  182. }
  183. });
  184. $('#Recipient').text($('#Agent_Person option:selected').text() + '->' + saFlowsText.join('->'));
  185. fnGetFiles($('#AdditionalFiles'), oCurData.Guid, oCurData.RelationId, oCurData.ExFeild1, sProgramId);//加載附件
  186. fnUpload();//初始化上傳控件(審批與簽辦)
  187. fnRead();//如果是被通知的人,則修改為已閱讀狀態
  188. $("#jsGrid1").jsGrid("loadData");
  189. $("#jsGrid2").jsGrid("loadData");
  190. $('[name="SignedDecision"]').click(function () {
  191. if (this.value === 'O') {
  192. $('#addotheraudit').slideDown();
  193. }
  194. else {
  195. $('#addotheraudit').slideUp();
  196. }
  197. });
  198. $('[name="HandleDecision"]').click(function () {
  199. if (this.value === 'O') {
  200. $('#addotherhandle').slideDown();
  201. }
  202. else {
  203. $('#addotherhandle').slideUp();
  204. }
  205. });
  206. }
  207. });
  208. },
  209. /**
  210. * 複製
  211. */
  212. fnCopy = function () {
  213. var data = oCurData;
  214. data = packParams(data);
  215. if (data.Status === 'D-O') {
  216. data.RelationId = data.Guid;
  217. }
  218. else {
  219. delete data.RelationId;
  220. }
  221. data.OrgID = parent.OrgID;
  222. data.Guid = guid();
  223. data.SignedNumber = 'SerialNumber|' + parent.UserInfo.OrgID + '|QJ|MinYear|3|' + parent.UserInfo.ServiceCode + '|' + parent.UserInfo.ServiceCode;
  224. data.CheckFlows = fnCheckFlows(data, true, true, saUsers);
  225. data.HandleFlows = fnHandleFlows(data, saUsers);
  226. data.CheckOrder = JSON.stringify(data.CheckOrder);
  227. data.Status = 'A';
  228. data.IsHandled = 'N';
  229. data.Inspectors = '';
  230. data.Reminders = '';
  231. data.VoidReason = '';
  232. data.Flows_Lock = data.Flows_Lock || 'N';
  233. data.Handle_Lock = data.Handle_Lock || 'N';
  234. delete data.AnnualLeaveMemo;
  235. delete data.RowIndex;
  236. delete data.AskTheDummyName;
  237. delete data.Agent_PersonName;
  238. delete data.Handle_PersonName;
  239. delete data.HolidayCategoryName;
  240. delete data.DeptName;
  241. delete data.WenZhongAcount;
  242. delete data.CreateUserName;
  243. delete data.ModifyUserName;
  244. CallAjax(ComFn.W_Com, ComFn.GetAdd, {
  245. Params: {
  246. leave: data
  247. }
  248. }, function (res) {
  249. if (res.d > 0) {
  250. showMsgAndGo(i18next.t("message.Copy_Success"), sEditPrgId, '?Action=Upd&Guid=' + data.Guid); // ╠message.Copy_Success⇒複製成功╣
  251. }
  252. else {
  253. showMsg(i18next.t("message.Copy_Failed"), 'error'); // ╠message.Copy_Failed⇒複製失敗╣
  254. }
  255. }, function () {
  256. showMsg(i18next.t("message.Copy_Failed"), 'error'); // ╠message.Copy_Failed⇒複製失敗╣
  257. });
  258. },
  259. /**
  260. * 複製
  261. */
  262. fnRead = function () {
  263. var bToUpd = false;
  264. $.each(oCurData.CheckFlows, function (idx, _data) {
  265. if (_data.SignedId === parent.UserID && _data.SignedWay === 'flow4' && _data.SignedDecision === 'T') {
  266. _data.SignedDecision = 'R';
  267. bToUpd = true;
  268. return false;
  269. }
  270. });
  271. if (bToUpd) {
  272. CallAjax(ComFn.W_Com, ComFn.GetUpd, {
  273. Params: {
  274. leave: {
  275. values: { CheckFlows: JSON.stringify(oCurData.CheckFlows) },
  276. keys: { Guid: sDataId }
  277. }
  278. }
  279. });
  280. }
  281. },
  282. /**
  283. * 資料作廢
  284. */
  285. fnVoid = function () {
  286. layer.open({
  287. type: 1,
  288. title: i18next.t('common.Toolbar_Void'),// ╠common.Toolbar_Void⇒作廢╣
  289. shade: 0.75,
  290. maxmin: true, //开启最大化最小化按钮
  291. area: ['500px', '250px'],
  292. content: '<div class="pop-box">\
  293. <textarea name="VoidContent" id="VoidContent" style="min-width:300px;" class="form-control" rows="5" cols="20"></textarea>\
  294. </div>',
  295. btn: [i18next.t('common.Confirm'), i18next.t('common.Cancel')],//╠common.Confirm⇒確定╣╠common.Cancel⇒取消╣
  296. success: function (layero, index) {
  297. },
  298. yes: function (index, layero) {
  299. var sVoidReason = $('#VoidContent').val();
  300. if (!sVoidReason) {
  301. showMsg(i18next.t("message.VoidReason_Required")); // ╠message.VoidReason_Required⇒請填寫作廢原因╣
  302. return false;
  303. }
  304. g_api.ConnectLite(sEditPrgId, 'SetVoid', {
  305. guid: oCurData.Guid,
  306. VoidReason: sVoidReason
  307. }, function (res) {
  308. if (res.RESULT) {
  309. layer.close(index);
  310. showMsgAndGo(i18next.t('message.Void_Success'), sProgramId, '?Action=Upd&Guid=' + oCurData.Guid);// ╠message.Void_Success⇒作廢成功╣
  311. }
  312. else {
  313. showMsg(i18next.t('message.Void_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  314. }
  315. }, function () {
  316. showMsg(i18next.t('message.Void_Failed'), 'error'); // ╠message.Void_Failed⇒作廢失敗╣
  317. });
  318. }
  319. });
  320. },
  321. /**
  322. * 抽單
  323. */
  324. fnReEdit = function () {
  325. g_api.ConnectLite(sEditPrgId, 'SetReEdit', {
  326. guid: oCurData.Guid
  327. }, function (res) {
  328. if (res.RESULT) {
  329. showMsgAndGo(i18next.t('message.ReEdit_Success'), sProgramId, '?Action=Upd&Guid=' + oCurData.Guid);// ╠message.ReEdit_Success⇒抽單成功╣
  330. }
  331. else {
  332. showMsg(i18next.t('message.ReEdit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  333. }
  334. }, function () {
  335. showMsg(i18next.t('message.ReEdit_Failed'), 'error'); // ╠message.ReEdit_Failed⇒抽單失敗╣
  336. });
  337. },
  338. /**
  339. * 提交決定
  340. * @param {String} action 簽核 or 經辦
  341. */
  342. fnSubmitDecision = function (action) {
  343. var data = getFormSerialize(oForm),
  344. saNewCheckFlows = clone(oCurData.CheckFlows),
  345. saNewHandleFlows = clone(oCurData.HandleFlows),
  346. saNewCheckOrderPush = clone(saCheckOrder_Push),
  347. saAdds = [],//加簽核順序
  348. saNextUsers = [],//下組簽核人員
  349. saTipsUsers = [],//需要通知的人員
  350. saNextSignedWays = [],//下組需要處理的動作
  351. iCurOder = 0,//當前順序
  352. sHandlePerson = "";//經辦人
  353. if (action === 'Signed') {
  354. if (data.SignedDecision === 'N' && !data.SignedOpinion) {
  355. showMsg(i18next.t("message.SignedOpinion_required")); // ╠message.SignedOpinion_required⇒請填寫簽核意見╣
  356. return false;
  357. }
  358. else if (data.SignedDecision === 'O' && saCheckOrder_Push.length === 0) {
  359. showMsg(i18next.t("message.CheckOrderPush_required")); // ╠message.CheckOrderPush_required⇒請選擇加簽人員╣
  360. return false;
  361. }
  362. var oCurFlow = Enumerable.From(oCurData.CheckFlows).Where(function (e) { return e.FlowId === sCurAuditFlowId; }).First(),
  363. oNewCurFlow = clone(oCurFlow);
  364. iCurOder = oCurFlow.Order;
  365. $.each(saNewCheckOrderPush, function (idx, _push) {
  366. _push.Order = idx + 1 + iCurOder;
  367. });
  368. $.each(saNewCheckFlows, function (idx, _flow) {
  369. if (sCurAuditFlowId === _flow.FlowId) {
  370. _flow.SignedDecision = data.SignedDecision;
  371. _flow.SignedOpinion = data.SignedOpinion;
  372. _flow.SignedDate = newDate();
  373. if (data.SignedDecision === 'O') {
  374. _flow.SignedPush = saCheckOrder_Push;
  375. }
  376. }
  377. if (data.SignedDecision === 'O' && _flow.Order > iCurOder) {
  378. _flow.Order = _flow.Order + saNewCheckOrderPush.length;
  379. if (data.NoreTurn) {//如果再回傳給自己的話排序再增加一個值
  380. _flow.Order++;
  381. }
  382. else {//如果加簽核流程最後一個是通知,並且原流程下一個也是通知的話就合併新舊排序
  383. if (saNewCheckFlows[saNewCheckOrderPush.length - 1].SignedWay === 'flow4' && saNewCheckFlows[iCurOder + 1].SignedWay === saNewCheckFlows[saNewCheckOrderPush.length - 1].SignedWay) {
  384. _flow.Order--;
  385. }
  386. }
  387. }
  388. });
  389. saAdds = fnCheckFlows({ CheckOrder: saNewCheckOrderPush }, false, false, saUsers);
  390. if (data.SignedDecision === 'O' && data.NoreTurn) {
  391. oNewCurFlow.Order = oNewCurFlow.Order + saNewCheckOrderPush.length + 1;
  392. oNewCurFlow.FlowId = guid();
  393. saAdds.push(oNewCurFlow);
  394. }
  395. }
  396. else {
  397. if (data.HandleDecision === 'O' && saCheckOrder_Push.length === 0) {
  398. showMsg(i18next.t("message.CheckOrderPush_required")); // ╠message.CheckOrderPush_required⇒請選擇加簽人員╣
  399. return false;
  400. }
  401. iCurOder = saNewCheckFlows[saNewCheckFlows.length - 1].Order;//如果是签辦的話當前順序就是原本流程的最大順序
  402. $.each(saNewHandleFlows, function (idx, _flow) {
  403. if (sCurHandleFlowId === _flow.FlowId) {
  404. _flow.SignedDecision = data.HandleDecision;
  405. _flow.SignedOpinion = data.HnadleOpinion;
  406. _flow.SignedDate = newDate();
  407. if (data.HandleDecision === 'O') {
  408. _flow.SignedPush = saCheckOrder_Push;
  409. }
  410. if (data.HandleDecision === 'Y') {
  411. _flow.SignedPush = null;
  412. }
  413. }
  414. });
  415. if (data.HandleDecision === 'O') {
  416. $.each(saNewCheckOrderPush, function (idx, _push) {
  417. _push.Order = idx + saNewCheckFlows[saNewCheckFlows.length - 1].Order + 1;
  418. });
  419. saAdds = fnCheckFlows({ CheckOrder: saNewCheckOrderPush }, false, false, saUsers);
  420. }
  421. }
  422. saNewCheckFlows = saNewCheckFlows.concat(saAdds);
  423. saNewCheckFlows = Enumerable.From(saNewCheckFlows).OrderBy("$.Order").ToArray();
  424. var _List = Enumerable.From(saNewCheckFlows).GroupBy("$.Order").ToArray();
  425. saNewCheckFlows = [];
  426. $.each(_List, function (idx, _list) {
  427. //找到要通知的人
  428. var sSignedWay = _list.source[0].SignedWay;
  429. var LastOne = iCurOder >= _List.length
  430. if (idx === iCurOder && !LastOne) {
  431. switch (sSignedWay) {
  432. case "flow1":
  433. case "flow2":
  434. case "flow3":
  435. {
  436. saNextUsers = Enumerable.From(_list.source).Select("$.SignedId").ToArray();
  437. saNextSignedWays.push(sSignedWay);
  438. }
  439. break;
  440. case "flow4":
  441. { //不能算通知到
  442. $.each(_list.source, function (i, _source) {
  443. _source.SignedDecision = 'T';
  444. _source.SignedDate = newDate();
  445. });
  446. saTipsUsers = Enumerable.From(_list.source).Select("$.SignedId").ToArray();
  447. saNextSignedWays.push(sSignedWay);
  448. ++iCurOder
  449. }
  450. break;
  451. default:
  452. break;
  453. }
  454. }
  455. saNewCheckFlows = saNewCheckFlows.concat(_list.source);
  456. });
  457. //Flow => Handle => END
  458. if (action != 'Handle') {
  459. var CheckNextUser = saNextUsers.length === 0;
  460. if (CheckNextUser && iCurOder === _List.length) {
  461. sHandlePerson = saNewHandleFlows[0].SignedId;
  462. saNextSignedWays.push("flow5");
  463. }
  464. }
  465. g_api.ConnectLite(sEditPrgId, 'LeaveAudit', {
  466. Guid: oCurData.Guid,
  467. Action: action,
  468. GoNext: bGoNext ? 'Y' : 'N',
  469. HandlePerson: sHandlePerson,
  470. NextSignedWays: JSON.stringify(saNextSignedWays),
  471. NextUsers: JSON.stringify(saNextUsers),
  472. TipsUsers: JSON.stringify(saTipsUsers),
  473. CheckFlows: JSON.stringify(saNewCheckFlows),
  474. HandleFlows: JSON.stringify(saNewHandleFlows),
  475. SignedDecision: data.SignedDecision,
  476. HandleDecision: data.HandleDecision
  477. }, function (res) {
  478. if (res.RESULT) {
  479. if (res.DATA.Status === 'E') {
  480. //如果審核狀態是待經辦(所有人都審核完)的話就同步更新至行事曆和outlook中
  481. fnSynChronousCalendar();
  482. }
  483. showMsgAndGo(i18next.t('message.' + action + '_Success'), sProgramId, '?Action=Upd&Guid=' + oCurData.Guid);// ╠message.Void_Success⇒作廢成功╣
  484. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  485. }
  486. else {
  487. showMsg(i18next.t('message.' + action + '_Failed') + '<br>' + res.MSG, 'error'); // ╠message.Signed_Failed⇒簽核失敗╣ ╠message.Handle_Failed⇒簽辦失敗╣
  488. }
  489. }, function () {
  490. showMsg(i18next.t('message.' + action + '_Failed'), 'error'); // ╠message.Signed_Failed⇒簽核失敗╣ ╠message.Handle_Failed⇒簽辦失敗╣
  491. });
  492. },
  493. /**
  494. * 上傳附件
  495. * @param {Array} files 上傳的文件
  496. */
  497. fnUpload = function (files) {
  498. var option = {};
  499. option.input = $('#fileInput1');
  500. option.theme = 'dragdropbox';
  501. option.folder = 'Leave';
  502. option.type = 'list';
  503. option.parentid = sCurAuditFlowId;
  504. if (files) {
  505. option.files = files;
  506. }
  507. fnUploadRegister(option);
  508. option.input = $('#fileInput2');
  509. option.parentid = sCurHandleFlowId;
  510. fnUploadRegister(option);
  511. },
  512. /**
  513. * 同步新更新行事曆和outlook
  514. */
  515. fnSynChronousCalendar = function () {
  516. var data = {};
  517. data.CalType = oCurData.HolidayCategory === '12' ? '08' : '07';//07:請假||08:出差
  518. data.Title = oCurData.AskTheDummyName + '(' + oCurData.DeptName + ') ' + '「' + oCurData.HolidayCategoryName + '」' + oCurData.KeyNote;
  519. data.Description = i18next.t("common.LeaveReason") + ':' + oCurData.LeaveReason;
  520. data.StartDate = oCurData.StartDate;
  521. data.EndDate = oCurData.EndDate;
  522. data.Color = parent.UserInfo.CalColor;
  523. data.RelationId = oCurData.Guid;
  524. data.GroupMembers = '';
  525. data.Importment = oCurData.Important === '1' ? 'M' : 'H';
  526. data.OpenMent = 'C';
  527. data.AllDay = '0';
  528. data.Memo = 'leave';
  529. data.UserID = oCurData.AskTheDummy;
  530. g_api.ConnectLite('Calendar', ComFn.GetAdd, data,
  531. function (res) {
  532. if (res.RESULT) {
  533. var sNo = res.DATA.rel;
  534. if (parent.Outklook) {
  535. outlookAPI(outlook.Calendar_Add, {
  536. NO: sNo,
  537. ResponseRequested: false,
  538. AskTheDummy: oCurData.AskTheDummyName,
  539. HolidayCategoryName: oCurData.HolidayCategoryName
  540. });
  541. }
  542. }
  543. });
  544. },
  545. /**
  546. * ToolBar 按鈕事件 function
  547. * @param {Object}inst 按鈕物件對象
  548. * @param {Object} e 事件對象
  549. */
  550. fnButtonHandler = function (inst, e) {
  551. var sId = inst.id;
  552. switch (sId) {
  553. case "Toolbar_Qry":
  554. break;
  555. case "Toolbar_Save":
  556. break;
  557. case "Toolbar_ReAdd":
  558. break;
  559. case "Toolbar_Clear":
  560. clearPageVal();
  561. break;
  562. case "Toolbar_Leave":
  563. pageLeave();
  564. break;
  565. case "Toolbar_Add":
  566. break;
  567. case "Toolbar_Upd":
  568. break;
  569. case "Toolbar_Copy":
  570. fnRefreshFlowsThenCopy(oCurData, fnCopy);
  571. break;
  572. case "Toolbar_Void":
  573. fnVoid();
  574. break;
  575. case "Toolbar_ReEdit":
  576. // ╠message.CheckReEdit⇒確定要抽單嗎?╣ ╠common.Tips⇒提示╣
  577. layer.confirm(i18next.t('message.CheckReEdit'), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  578. fnReEdit();
  579. layer.close(index);
  580. });
  581. break;
  582. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  583. break;
  584. case "Toolbar_Print":
  585. fnPrePrint($(".panel-info"));
  586. break;
  587. default:
  588. alert("No handle '" + sId + "'");
  589. break;
  590. }
  591. },
  592. /**
  593. * 初始化 function
  594. */
  595. init = function () {
  596. var saCusBtns = null;
  597. if (sAction === 'Upd') {
  598. saCusBtns = [
  599. {
  600. id: 'Toolbar_ReEdit',
  601. value: 'common.ReEdit'// ╠common.ReEdit⇒抽單╣
  602. },
  603. {
  604. id: 'Toolbar_Copy',
  605. value: 'common.Toolbar_Copy'// ╠common.Toolbar_Copy⇒複製╣
  606. }];
  607. }
  608. commonInit({
  609. PrgId: sProgramId,
  610. ButtonHandler: fnButtonHandler,
  611. Buttons: saCusBtns,
  612. GoTop: true
  613. });
  614. $.whenArray([
  615. fnSetDeptDrop($('#Agent_DeptID')),
  616. fnSetUserDrop([
  617. {
  618. Select: $('#Agent_Person'),
  619. CallBack: function (data) {
  620. saUsers = data;
  621. }
  622. }
  623. ]),
  624. fnSetArgDrop([
  625. {
  626. ArgClassID: 'LeaveType',
  627. Select: $('#HolidayCategory'),
  628. ShowId: true
  629. }
  630. ])])
  631. .done(function () {
  632. fnGet();
  633. });
  634. $("#jsGrid1").jsGrid({
  635. width: "100%",
  636. height: "auto",
  637. autoload: true,
  638. pageLoading: true,
  639. pageIndex: 1,
  640. pageSize: 10000,
  641. rowClass: function (item, itemIndex) {
  642. var sRowClass = '';
  643. if (oCurData.CheckFlows.length !== itemIndex + 1) {
  644. sRowClass = item.Line ? 'grid-cuscell first-cell' : 'grid-cuscell';
  645. }
  646. else {
  647. sRowClass = 'last-cell';
  648. }
  649. return sRowClass;
  650. },
  651. fields: [
  652. {
  653. type: "Icon", width: 50, align: "center",
  654. itemTemplate: function (val, item) {
  655. var oIcon = {
  656. flow2: '<img src="../../images/flow2_View.gif">',
  657. flow3: '<img src="../../images/flow3_View.gif">',
  658. flow4: '<img src="../../images/flow4.gif">'
  659. };
  660. return item.Icon ? oIcon[item.SignedWay] || '' : '';
  661. }
  662. },
  663. {// ╠common.Order⇒順序╣
  664. name: "Order", title: 'common.Order', width: 50, align: "center",
  665. itemTemplate: function (val, item) {
  666. return val < 10 ? '0' + val : val;
  667. }
  668. },
  669. {// ╠common.SignedMember⇒簽核成員╣
  670. name: "SignedMember", title: 'common.SignedMember', width: 150,
  671. itemTemplate: function (val, item) {
  672. return $('<a>', { html: item.Department + ' ' + item.Jobtitle + '<br>' + item.SignedMember + (item.ParentId == '0' ? '(' + i18next.t("common.AgentPerson") + ')' : '') });// ╠common.CheckReEdit⇒代理人╣
  673. }
  674. },
  675. {// ╠common.Decision⇒決定╣
  676. name: "SignedDecision", title: 'common.Decision', width: 100,
  677. itemTemplate: function (val, item) {
  678. var sVal = val;
  679. if (val === 'Y') {
  680. sVal = i18next.t("common.Agree");// ╠common.Agree⇒同意╣
  681. }
  682. else if (val === 'N') {
  683. sVal = i18next.t("common.NotAgree");// ╠common.NotAgree⇒不同意╣
  684. }
  685. else if (val === 'O') {
  686. sVal = i18next.t("common.AddOther");// ╠common.AddOther⇒先加簽╣
  687. }
  688. else if (val === 'T') {
  689. sVal = i18next.t("common.HasNotice");// ╠common.HasNotice⇒已通知╣
  690. }
  691. else if (val === 'R') {
  692. sVal = i18next.t("common.HasRead");// ╠common.HasRead⇒已閱讀╣
  693. }
  694. return $('<a>', { html: sVal });
  695. }
  696. },
  697. {// ╠common.SignedOpinion⇒簽核意見╣
  698. name: "SignedOpinion", title: 'common.SignedOpinion', width: 450,
  699. itemTemplate: function (val, item) {
  700. var saVal = [],
  701. oDiv = $('<div>');
  702. if (item.SignedPush) {
  703. var saFlowsPush = item.SignedPush,
  704. saFlowsPushText = [],
  705. sFlowsPushText = '';
  706. $.each(saFlowsPush, function (idx, flow) {
  707. var sFlowType = i18next.t('common.' + flow.SignedWay);
  708. if (flow.SignedWay !== 'flow1') {
  709. saFlowsPushText.push(sFlowType + '(' + Enumerable.From(flow.SignedMember).ToString(",", "$.name") + ')');
  710. }
  711. else {
  712. saFlowsPushText.push(Enumerable.From(flow.SignedMember).ToString(",", "$.name"));
  713. }
  714. });
  715. sFlowsPushText = saFlowsPushText.join(' → ');
  716. saVal.push($('<a>', { html: sFlowsPushText }));
  717. saVal.push('<br />');
  718. }
  719. if (val) {
  720. saVal.push(val);
  721. saVal.push('<br />');
  722. }
  723. fnGetFiles(oDiv.append(saVal), item.FlowId);
  724. return oDiv;
  725. }
  726. },
  727. {// ╠common.SignedDate⇒簽核日期╣
  728. name: "SignedDate", title: 'common.SignedDate', width: 120,
  729. itemTemplate: function (val, item) {
  730. return val;
  731. }
  732. }
  733. ],
  734. controller: {
  735. loadData: function (args) {
  736. return {
  737. data: oCurData.CheckFlows,
  738. itemsCount: oCurData.CheckFlows.length //data.length
  739. };
  740. }
  741. }
  742. });
  743. $("#jsGrid2").jsGrid({
  744. width: "100%",
  745. height: "auto",
  746. autoload: true,
  747. pageLoading: true,
  748. pageIndex: 1,
  749. pageSize: 10000,
  750. rowClass: function (item, itemIndex) {
  751. var sRowClass = '';
  752. if (oCurData.HandleFlows.length !== itemIndex + 1) {
  753. sRowClass = item.Line ? 'grid-cuscell first-cell' : 'grid-cuscell';
  754. }
  755. else {
  756. sRowClass = 'last-cell';
  757. }
  758. return sRowClass;
  759. },
  760. fields: [
  761. {// ╠common.HandleMembers⇒經辦成員╣
  762. name: "SignedMember", title: 'common.HandleMembers', width: 150,
  763. itemTemplate: function (val, item) {
  764. return $('<a>', { html: item.Department + ' ' + item.Jobtitle + '<br>' + item.SignedMember + (item.ParentId == '0' ? '(' + i18next.t("common.AgentPerson") + ')' : '') });// ╠common.CheckReEdit⇒代理人╣
  765. }
  766. },
  767. {// ╠common.Status⇒狀態╣
  768. name: "SignedDecision", title: 'common.Status', width: 100,
  769. itemTemplate: function (val, item) {
  770. var sVal = val;
  771. if (val === 'Y') {
  772. sVal = i18next.t("common.Hashandle");// ╠common.Hashandle⇒已經辦╣
  773. }
  774. else if (val === 'N') {
  775. sVal = i18next.t("common.Nothandle");// ╠common.Nothandle⇒未處理╣
  776. }
  777. else if (val === 'O') {
  778. sVal = i18next.t("common.AddOtherAudit");// ╠common.AddOtherAudit⇒轉呈其它主管審批╣
  779. }
  780. return $('<a>', { html: sVal });
  781. }
  782. },
  783. {// ╠common.SignedOpinion⇒簽核意見╣
  784. name: "SignedOpinion", title: 'common.SignedOpinion', width: 450,
  785. itemTemplate: function (val, item) {
  786. var saVal = [],
  787. oDiv = $('<div>');
  788. if (item.SignedPush) {
  789. var saFlowsPush = item.SignedPush,
  790. saFlowsPushText = [],
  791. sFlowsPushText = '';
  792. $.each(saFlowsPush, function (idx, flow) {
  793. var sFlowType = i18next.t('common.' + flow.SignedWay);
  794. if (flow.SignedWay !== 'flow1') {
  795. saFlowsPushText.push(sFlowType + '(' + Enumerable.From(flow.SignedMember).ToString(",", "$.name") + ')');
  796. }
  797. else {
  798. saFlowsPushText.push(Enumerable.From(flow.SignedMember).ToString(",", "$.name"));
  799. }
  800. });
  801. sFlowsPushText = saFlowsPushText.join(' → ');
  802. saVal.push($('<a>', { html: sFlowsPushText }));
  803. saVal.push('<br />');
  804. }
  805. if (val) {
  806. saVal.push(val);
  807. saVal.push('<br />');
  808. }
  809. fnGetFiles(oDiv.append(saVal), item.FlowId);
  810. return oDiv;
  811. }
  812. },
  813. {// ╠common.HandleDate⇒ 經辦日期╣
  814. name: "SignedDate", title: 'common.HandleDate', width: 120,
  815. itemTemplate: function (val, item) {
  816. return val;
  817. }
  818. }
  819. ],
  820. controller: {
  821. loadData: function (args) {
  822. return {
  823. data: oCurData.HandleFlows,
  824. itemsCount: oCurData.HandleFlows.length //data.length
  825. };
  826. }
  827. }
  828. });
  829. $.each([3, 4], function (idx, _grididx) {
  830. fnRegisterAddFlows(_grididx);
  831. $("#jsGrid" + _grididx).jsGrid({
  832. width: "100%",
  833. height: "auto",
  834. autoload: true,
  835. filtering: false,
  836. pageLoading: true,
  837. pageIndex: 1,
  838. pageSize: 10000,
  839. fields: [
  840. {
  841. name: "Order", title: 'common.Order', width: 50, align: "center",
  842. itemTemplate: function (val, item) {
  843. return val < 10 ? '0' + val : val;
  844. }
  845. },
  846. {// ╠common.SignedWay⇒簽核方式╣
  847. name: "SignedWay", title: 'common.SignedWay', width: 120, align: "center",
  848. itemTemplate: function (val, item) {
  849. return i18next.t('common.' + val);
  850. }
  851. },
  852. {
  853. type: "Icon", width: 50, align: "center",
  854. itemTemplate: function (val, item) {
  855. var oIcon = {
  856. flow1: '<img src="../../images/flow_check.gif">',
  857. flow2: '<img src="../../images/flow_check.gif"><img src="../../images/flow_check.gif">',
  858. flow3: '<img src="../../images/flow_check.gif"><img src="../../images/flow_nocheck.gif">',
  859. flow4: '<img src="../../images/flow4.gif">'
  860. },
  861. sIcon = oIcon[item.SignedWay];
  862. if (item.Order !== saCheckOrder_Push.length) {
  863. sIcon += '<br><img src="../../images/flow_arrow.gif" style="vertical-align:top;">'
  864. }
  865. return sIcon;
  866. }
  867. },
  868. {
  869. name: "SignedMember", title: 'common.SignedMember', width: 500,
  870. itemTemplate: function (val, item) {
  871. return Enumerable.From(val).ToString(",", "$.name");
  872. }
  873. },
  874. {
  875. type: "control", title: 'common.Action', width: 200,
  876. itemTemplate: function (val, item) {
  877. var oBtns = [$('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  878. class: 'glyphicon glyphicon-pencil',
  879. title: i18next.t('common.Edit'),// ╠common.Edit⇒編輯╣
  880. click: function () {
  881. var oOption = {};
  882. oOption.SignedWay = item.SignedWay;
  883. oOption.SignedMember = item.SignedMember;
  884. oOption.Callback = function (data) {
  885. if (data.Users.length > 0) {
  886. var oFlow = {};
  887. if (data.FlowType === 'flow1') {
  888. $.each(data.Users, function (idx, user) {
  889. var oFlow = {};
  890. oFlow.id = guid();
  891. oFlow.Order = item.Order + idx;
  892. oFlow.SignedWay = data.FlowType;
  893. oFlow.SignedMember = [{
  894. id: user.id,
  895. name: user.name,
  896. deptname: user.deptname,
  897. jobname: user.jobname
  898. }];
  899. saCheckOrder_Push.insert(item.Order + idx, oFlow);
  900. });
  901. }
  902. else {
  903. var saUsers = [];
  904. $.each(data.Users, function (idx, user) {
  905. saUsers.push({
  906. id: user.id,
  907. name: user.name,
  908. deptname: user.deptname,
  909. jobname: user.jobname
  910. });
  911. });
  912. oFlow.id = guid();
  913. oFlow.Order = item.Order;
  914. oFlow.SignedWay = data.FlowType;
  915. oFlow.SignedMember = saUsers;
  916. saCheckOrder_Push.insert(item.Order, oFlow);
  917. }
  918. var iOrder = 1;
  919. $.each(saCheckOrder_Push, function (idx, _data) {
  920. if (item.id !== _data.id) {
  921. _data.Order = iOrder;
  922. iOrder++;
  923. }
  924. });
  925. saCheckOrder_Push = Enumerable.From(saCheckOrder_Push).Where(function (e) { return e.id !== item.id; }).ToArray();
  926. saCheckOrder_Push = releaseGridList(saCheckOrder_Push);
  927. $("#jsGrid" + _grididx).jsGrid("loadData");
  928. }
  929. };
  930. oPenUserListPop(oOption);
  931. }
  932. })),
  933. $('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  934. class: 'glyphicon glyphicon-trash',
  935. title: i18next.t('common.Toolbar_Del'),// ╠common.Toolbar_Del⇒刪除╣
  936. click: function () {
  937. var saNewList = Enumerable.From(saCheckOrder_Push).Where(function (e) { return e.id !== item.id; }).ToArray();
  938. saCheckOrder_Push = saNewList;
  939. $.each(saCheckOrder_Push, function (idx, _data) {
  940. _data.Order = idx + 1;
  941. });
  942. saCheckOrder_Push = releaseGridList(saCheckOrder_Push);
  943. $("#jsGrid" + _grididx).jsGrid("loadData");
  944. }
  945. }))];
  946. if (saCheckOrder_Push.length !== item.Order) {
  947. oBtns.push($('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  948. class: 'glyphicon glyphicon-arrow-down',
  949. title: i18next.t('common.Down'),// ╠common.Down⇒下移╣
  950. click: function () {
  951. var sOrder = Enumerable.From(saCheckOrder_Push).Where(function (e) { return e.id === item.id; }).ToString('', '$.Order'),
  952. iOrder = sOrder * 1;
  953. $.each(saCheckOrder_Push, function (idx, _data) {
  954. if (iOrder === _data.Order) {
  955. _data.Order++;
  956. }
  957. else if ((iOrder + 1) === _data.Order) {
  958. _data.Order--;
  959. }
  960. });
  961. saCheckOrder_Push = releaseGridList(saCheckOrder_Push);
  962. $("#jsGrid" + _grididx).jsGrid("loadData");
  963. }
  964. })));
  965. }
  966. else {
  967. oBtns.push($('<div>', { class: 'fa-item col-sm-3' }));
  968. }
  969. if (1 !== item.Order) {
  970. oBtns.push($('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  971. class: 'glyphicon glyphicon-arrow-up',
  972. title: i18next.t('common.Up'),// ╠common.Up⇒上移╣
  973. click: function () {
  974. var sOrder = Enumerable.From(saCheckOrder_Push).Where(function (e) { return e.id === item.id; }).ToString('', '$.Order'),
  975. iOrder = sOrder * 1;
  976. $.each(saCheckOrder_Push, function (idx, _data) {
  977. if (iOrder === _data.Order) {
  978. _data.Order--;
  979. }
  980. else if ((iOrder - 1) === _data.Order) {
  981. _data.Order++;
  982. }
  983. });
  984. saCheckOrder_Push = releaseGridList(saCheckOrder_Push);
  985. $("#jsGrid" + _grididx).jsGrid("loadData");
  986. }
  987. })));
  988. }
  989. return oBtns;
  990. }
  991. }
  992. ],
  993. controller: {
  994. loadData: function (args) {
  995. return {
  996. data: saCheckOrder_Push,
  997. itemsCount: saCheckOrder_Push.length //data.length
  998. };
  999. }
  1000. }
  1001. });
  1002. });
  1003. };
  1004. init();
  1005. };
  1006. require(['base', 'jsgrid', 'jqprint', 'filer', 'common_eip', 'util'], fnPageInit);