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.

1092 lines
57 KiB

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