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.

1191 lines
61 KiB

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