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.

1107 lines
58 KiB

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