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.

1071 lines
55 KiB

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