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.

1192 lines
61 KiB

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