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.

1105 lines
60 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sQueryPrgId = getQueryPrgId(),
  4. sViewPrgId = sProgramId.replace('_Upd', '_View'),
  5. sAction = getUrlParam('Action') || 'Add',
  6. sDataId = getUrlParam('Guid'),
  7. sCheckId = sDataId,
  8. fnPageInit = function () {
  9. var oCurData = { CheckOrder: [], TravelFeeItems: [] },
  10. oForm = $('#form_main'),
  11. oGrid = null,
  12. oValidator = null,
  13. sOptionHtml_Users = '',
  14. sOptionHtml_Currency = '',
  15. oAddItem = {},
  16. saUsers = [],
  17. /**
  18. * 獲取資料
  19. * @return {Object} ajax物件
  20. */
  21. fnGet = function () {
  22. if (sDataId) {
  23. return g_api.ConnectLite(sQueryPrgId, ComFn.GetOne,
  24. {
  25. Guid: sDataId
  26. },
  27. function (res) {
  28. if (res.RESULT) {
  29. var oRes = res.DATA.rel,
  30. sDateRange = '';
  31. oCurData = oRes;
  32. oCurData.TravelFeeItems = $.parseJSON(oCurData.TravelFeeItems);
  33. oCurData.TravelFeeInfo = $.parseJSON(oCurData.TravelFeeInfo);
  34. oCurData.CheckOrder = $.parseJSON(oCurData.CheckOrder);
  35. setFormVal(oForm, oRes);
  36. if (oCurData.TravelDateStart) {
  37. sDateRange = newDate(oCurData.TravelDateStart, 'date', true) + ' ~ ' + newDate(oCurData.TravelDateEnd, 'date', true);
  38. }
  39. $('#TravelDate').val(sDateRange);
  40. $('.Applicant').text(oCurData.ApplicantName + '(' + oCurData.Applicant + ') ' + oCurData.DeptName);
  41. fnGetUploadFiles(oCurData.Guid, fnUpload);
  42. if (oCurData.Handle_DeptID) {
  43. fnSetUserDrop([
  44. {
  45. Select: $('#Handle_Person'),
  46. DepartmentID: oCurData.Handle_DeptID,
  47. ShowId: true,
  48. Select2: true,
  49. Action: sAction,
  50. DefultVal: oCurData.Handle_Person
  51. }
  52. ]);
  53. }
  54. if (oCurData.Flows_Lock === 'Y') {
  55. $(".checkordertoolbox").hide();
  56. }
  57. else {
  58. $(".checkordertoolbox").show();
  59. }
  60. if (oCurData.Handle_Lock === 'Y') {
  61. $("#Handle_DeptID,#Handle_Person").attr('disabled', true);
  62. }
  63. else {
  64. $("#Handle_DeptID,#Handle_Person").removeAttr('disabled');
  65. }
  66. $("#jsGrid").jsGrid("loadData");
  67. $("#jsGrid1").jsGrid("loadData");
  68. setNameById().done(function () {
  69. getPageVal();//緩存頁面值,用於清除
  70. });
  71. }
  72. });
  73. }
  74. else {
  75. $('.Applicant').text(parent.UserInfo.MemberName + '(' + parent.UserInfo.MemberID + ') ' + parent.UserInfo.DepartmentName);
  76. $('#Applicant').val(parent.UserInfo.MemberID);
  77. oCurData.TravelFeeItems = [];
  78. oCurData.CheckOrder = [];
  79. oCurData.Guid = guid();
  80. fnUpload();
  81. return $.Deferred().resolve().promise();
  82. }
  83. },
  84. /**
  85. * 設定展覽下拉選單客制過
  86. * @param {Object} drop 當前控件
  87. * @return {Object} Ajax 物件
  88. */
  89. fnSetEpoDropCus = function (drop) {
  90. return g_api.ConnectLite('Exhibition_Upd', 'GetExhibitions',
  91. {
  92. SN: drop.SN || ''
  93. },
  94. function (res) {
  95. if (res.RESULT) {
  96. var saRes = res.DATA.rel;
  97. if (drop.Select) {
  98. drop.Select.html(createOptions(saRes, drop.IdName || 'SN', drop.TextName || 'ExhibitioFullName', drop.ShowId || false, "ExhibitioShotName_TW"));
  99. if (drop.DefultVal) {
  100. drop.Select.val(drop.DefultVal);
  101. }
  102. if (drop.Select2) {
  103. drop.Select.each(function () {
  104. $(this).select2();
  105. $(this).next().after($(this));
  106. });
  107. }
  108. }
  109. if (drop.CallBack && typeof drop.CallBack === 'function') {
  110. drop.CallBack(saRes);
  111. }
  112. }
  113. });
  114. },
  115. /**
  116. * 新增資料
  117. * @param {String} flag 新增或儲存後新增
  118. */
  119. fnAdd = function (flag) {
  120. var data = getFormSerialize(oForm);
  121. data = packParams(data);
  122. data.OrgID = parent.OrgID;
  123. data.Guid = oCurData.Guid;
  124. data.SignedNumber = 'SerialNumber|' + parent.UserInfo.OrgID + '|TER|MinYear|3|' + parent.UserInfo.ServiceCode + '|' + parent.UserInfo.ServiceCode;
  125. data.CheckFlows = fnCheckFlows(oCurData, false, true, saUsers);
  126. data.HandleFlows = fnHandleFlows(oCurData, saUsers);
  127. data.TravelFeeItems = JSON.stringify(oCurData.TravelFeeItems);
  128. data.CheckOrder = JSON.stringify(oCurData.CheckOrder);
  129. data.TravelFeeInfo.Total = data.TravelFeeInfo.Total || 0;
  130. data.TravelFeeInfo.Sum = data.TravelFeeInfo.Sum || 0;
  131. data.TravelFeeInfo = JSON.stringify(data.TravelFeeInfo);
  132. data.Status = 'A';
  133. data.IsHandled = 'N';
  134. data.Inspectors = '';
  135. data.Reminders = '';
  136. data.Flows_Lock = oCurData.Flows_Lock;
  137. data.Handle_Lock = oCurData.Handle_Lock;
  138. data.ExhibitionName = $('#ExhibitionNO option:selected').attr('exhibitioshotname_tw');
  139. if (!data.TravelDate) {
  140. delete data.TravelDateStart;
  141. delete data.TravelDateEnd;
  142. }
  143. else {
  144. data.TravelDateStart = $.trim(data.TravelDate.split('~')[0]);
  145. data.TravelDateEnd = $.trim(data.TravelDate.split('~')[1]);
  146. }
  147. delete data.TravelDate;
  148. g_api.ConnectLite(sProgramId, 'Insert', data, function (res) {
  149. if (res.DATA.rel) {
  150. fnReloadFeeItem(res.DATA.rel);
  151. bRequestStorage = false;
  152. if (flag === 'add') {
  153. showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Upd&Guid=' + data.Guid); // ╠message.Save_Success⇒新增成功╣
  154. }
  155. else {
  156. showMsgAndGo(i18next.t("message.Save_Success"), sProgramId, '?Action=Add'); // ╠message.Save_Success⇒新增成功╣
  157. }
  158. }
  159. else {
  160. showMsg(i18next.t("message.Save_Failed"), 'error'); // ╠message.Save_Failed⇒新增失敗╣
  161. }
  162. }, function () {
  163. showMsg(i18next.t("message.Save_Failed"), 'error'); // ╠message.Save_Failed⇒新增失敗╣
  164. });
  165. },
  166. /**
  167. * 修改資料
  168. * @param {Boolean} balert 是否提示
  169. * @return {Object} ajax物件
  170. */
  171. fnUpd = function (balert) {
  172. var data = getFormSerialize(oForm);
  173. data = packParams(data, 'upd');
  174. data.CheckFlows = fnCheckFlows(oCurData, false, true, saUsers);
  175. data.HandleFlows = fnHandleFlows(oCurData, saUsers);
  176. data.TravelFeeItems = JSON.stringify(oCurData.TravelFeeItems);
  177. data.CheckOrder = JSON.stringify(oCurData.CheckOrder);
  178. data.TravelFeeInfo = JSON.stringify(data.TravelFeeInfo);
  179. data.Status = oCurData.Status;
  180. data.Inspectors = '';
  181. data.Reminders = '';
  182. data.Flows_Lock = oCurData.Flows_Lock;
  183. data.Handle_Lock = oCurData.Handle_Lock;
  184. data.ExhibitionName = $('#ExhibitionNO option:selected').attr('exhibitioshotname_tw');
  185. data.Guid = oCurData.Guid;
  186. if (!data.TravelDate) {
  187. delete data.TravelDateStart;
  188. delete data.TravelDateEnd;
  189. }
  190. else {
  191. data.TravelDateStart = $.trim(data.TravelDate.split('~')[0]);
  192. data.TravelDateEnd = $.trim(data.TravelDate.split('~')[1]);
  193. }
  194. delete data.TravelDate;
  195. return g_api.ConnectLite(sProgramId, 'Update', data, function (res) {
  196. if (res.DATA.rel) {
  197. fnReloadFeeItem(res.DATA.rel);
  198. if (!balert) {
  199. bRequestStorage = false;
  200. showMsg(i18next.t("message.Modify_Success"), 'success'); //╠message.Modify_Success⇒修改成功╣
  201. if (window.bLeavePage) {
  202. setTimeout(function () {
  203. pageLeave();
  204. }, 1000);
  205. }
  206. }
  207. }
  208. else {
  209. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  210. }
  211. }, function () {
  212. showMsg(i18next.t("message.Modify_Failed"), 'error');//╠message.Modify_Failed⇒修改失敗╣
  213. });
  214. },
  215. /**
  216. * 資料刪除
  217. */
  218. fnDel = function () {
  219. CallAjax(ComFn.W_Com, ComFn.GetDel, {
  220. Params: {
  221. travelexpense: {
  222. Guid: sDataId
  223. }
  224. }
  225. }, function (res) {
  226. if (res.d > 0) {
  227. DelTask(sDataId);
  228. showMsgAndGo(i18next.t("message.Delete_Success"), sQueryPrgId); // ╠message.Delete_Success⇒刪除成功╣
  229. }
  230. else {
  231. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  232. }
  233. }, function () {
  234. showMsg(i18next.t("message.Delete_Failed"), 'error'); // ╠message.Delete_Failed⇒刪除失敗╣
  235. });
  236. },
  237. /**
  238. * 上傳附件
  239. * @param {Array} files 上傳的文件
  240. */
  241. fnUpload = function (files) {
  242. var option = {};
  243. option.input = $('#fileInput');
  244. option.theme = 'dragdropbox';
  245. option.folder = 'TravelExpenseReport';
  246. option.type = 'list';
  247. option.parentid = oCurData.Guid;
  248. if (files) {
  249. option.files = files;
  250. }
  251. fnUploadRegister(option);
  252. },
  253. /**
  254. * 重新計算資料
  255. */
  256. fnReloadFeeItem = function (Data) {
  257. oCurData.TravelFeeItems = $.parseJSON(Data.TravelFeeItems);
  258. oCurData.TravelFeeInfo = $.parseJSON(Data.TravelFeeInfo);
  259. $("#jsGrid1").jsGrid("loadData");
  260. fnSumFeeItems();
  261. },
  262. /**
  263. * 提交簽呈
  264. */
  265. fnSubmitPetition = function () {
  266. g_api.ConnectLite(sProgramId, 'TravelExpenseReportToAudit', {
  267. guid: oCurData.Guid
  268. }, function (res) {
  269. if (res.RESULT) {
  270. showMsgAndGo(i18next.t("message.ToAudit_Success"), sViewPrgId, '?Action=Upd&Guid=' + oCurData.Guid);// ╠message.ToAudit_Success⇒提交審核成功╣
  271. parent.msgs.server.pushTips(parent.fnReleaseUsers(res.DATA.rel));
  272. }
  273. else {
  274. showMsg(i18next.t('message.ToAudit_Failed') + '<br>' + res.MSG, 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  275. }
  276. }, function () {
  277. showMsg(i18next.t('message.ToAudit_Failed'), 'error'); // ╠message.ToAudit_Failed⇒提交審核失敗╣
  278. });
  279. },
  280. /**
  281. * 計算費用項目
  282. * @param {Object}item 按鈕物件對象
  283. * @param {Object}input 當前dom元素
  284. */
  285. fnSumFeeItem = function (item, input) {
  286. var iAll = (item.ExchangeRate || 1) * ((item.Amount1 || 0) * 1 + (item.Amount2 || 0) * 1 + (item.Amount3 || 0) * 1);
  287. $(input).parents('tr').find('.total').val(fMoney(iAll, 2, item.Currency));
  288. },
  289. /**
  290. * 總計所有費用項目
  291. */
  292. fnSumFeeItems = function () {
  293. var iAll = 0, sAll = '';
  294. $.each(oCurData.TravelFeeItems, function (idx, item) {
  295. iAll += (item.ExchangeRate || 1) * ((item.Amount1 || 0) * 1 + (item.Amount2 || 0) * 1 + (item.Amount3 || 0) * 1);
  296. });
  297. sAll = fMoney(iAll, 0, 'NTD');
  298. $('#TravelFeeInfo_Total').val(sAll).attr('data-value', sAll.replaceAll(',', '')).change();
  299. },
  300. /**
  301. * ToolBar 按鈕事件 function
  302. * @param {Object}inst 按鈕物件對象
  303. * @param {Object} e 事件對象
  304. * @return {Object}是否停止
  305. */
  306. fnButtonHandler = function (inst, e) {
  307. var sId = inst.id;
  308. switch (sId) {
  309. case "Toolbar_Qry":
  310. break;
  311. case "Toolbar_Save":
  312. if (!$("#form_main").valid()) {
  313. oValidator.focusInvalid();
  314. return false;
  315. }
  316. if (sAction === 'Add') {
  317. fnAdd('add');
  318. }
  319. else {
  320. fnUpd();
  321. }
  322. break;
  323. case "Toolbar_ReAdd":
  324. if (!$("#form_main").valid()) {
  325. oValidator.focusInvalid();
  326. return false;
  327. }
  328. fnAdd('readd');
  329. break;
  330. case "Toolbar_Clear":
  331. clearPageVal();
  332. break;
  333. case "Toolbar_Leave":
  334. pageLeave();
  335. break;
  336. case "Toolbar_Add":
  337. break;
  338. case "Toolbar_Upd":
  339. break;
  340. case "Toolbar_Copy":
  341. break;
  342. case "Toolbar_Petition":
  343. if (!$("#form_main").valid()) {
  344. oValidator.focusInvalid();
  345. return false;
  346. }
  347. fnUpd(true).done(function () {
  348. fnSubmitPetition();
  349. });
  350. break;
  351. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  352. layer.confirm(i18next.t("message.ConfirmToDelete"), { icon: 3, title: i18next.t('common.Tips') }, function (index) {
  353. fnDel();
  354. layer.close(index);
  355. });
  356. break;
  357. default:
  358. alert("No handle '" + sId + "'");
  359. break;
  360. }
  361. },
  362. /**
  363. * 初始化 function
  364. */
  365. init = function () {
  366. var saCusBtns = null;
  367. if (sAction === 'Upd') {
  368. saCusBtns = [{
  369. id: 'Toolbar_Petition',
  370. value: 'common.SubmitPetition'// ╠common.SubmitPetition⇒提交簽呈╣
  371. }];
  372. }
  373. commonInit({
  374. PrgId: sProgramId,
  375. ButtonHandler: fnButtonHandler,
  376. Buttons: saCusBtns,
  377. GoTop: true
  378. });
  379. oValidator = $("#form_main").validate();
  380. $('#TravelDate').dateRangePicker(
  381. {
  382. language: 'zh-TW',
  383. separator: ' ~ ',
  384. format: 'YYYY/MM/DD',
  385. autoClose: true
  386. });
  387. $.whenArray([
  388. fnSetDeptDrop($('#Handle_DeptID')),
  389. fnSetFlowDrop({
  390. Flow_Type: parent.SysSet.Eip_004,
  391. ShareTo: parent.UserID,
  392. CallBack: function (data) {
  393. $.each(data, function (idx, item) {
  394. var saFlows = $.parseJSON(item.Flows),
  395. saFlowsText = [],
  396. sFlowsText = '';
  397. $.each(saFlows, function (idx, flow) {
  398. var sFlowType = i18next.t('common.' + flow.SignedWay);
  399. if (flow.SignedWay !== 'flow1') {
  400. saFlowsText.push(sFlowType + '(' + Enumerable.From(flow.SignedMember).ToString(",", "$.name") + ')');
  401. }
  402. else {
  403. saFlowsText.push(Enumerable.From(flow.SignedMember).ToString(",", "$.name"));
  404. }
  405. });
  406. sFlowsText = saFlowsText.join(' → ');
  407. item.text = item.Flow_Name + ' - ' + (sFlowsText.length > 60 ? sFlowsText.substr(0, 60) + '...' : sFlowsText);
  408. });
  409. $('#FlowId').html(createOptions(data, 'Guid', 'text')).on('change', function () {
  410. var sFlowId = this.value;
  411. if (sFlowId) {
  412. CallAjax(ComFn.W_Com, ComFn.GetOne, {
  413. Type: '',
  414. Params: {
  415. checkflow: {
  416. Guid: sFlowId
  417. }
  418. }
  419. }, function (res) {
  420. if (res.d) {
  421. var oRes = $.parseJSON(res.d);
  422. oRes.Flows = $.parseJSON(oRes.Flows);
  423. oCurData.CheckOrder = oRes.Flows;
  424. oCurData.Flows_Lock = oRes.Flows_Lock;
  425. oCurData.Handle_Lock = oRes.Handle_Lock;
  426. $("#Handle_DeptID").val(oRes.Handle_DeptID);
  427. $("#Handle_Person").val(oRes.Handle_Person).trigger('change');
  428. if (oRes.Flows_Lock === 'Y') {
  429. $(".checkordertoolbox").hide();
  430. }
  431. else {
  432. $(".checkordertoolbox").show();
  433. }
  434. if (oRes.Handle_Lock === 'Y') {
  435. $("#Handle_DeptID,#Handle_Person").attr('disabled', true);
  436. }
  437. else {
  438. $("#Handle_DeptID,#Handle_Person").removeAttr('disabled');
  439. }
  440. $("#jsGrid").jsGrid("loadData");
  441. }
  442. });
  443. }
  444. else {
  445. oCurData.CheckOrder = [];
  446. $(".checkordertoolbox").hide();
  447. $("#jsGrid").jsGrid("loadData");
  448. $("#Handle_DeptID,#Handle_Person").removeAttr('disabled');
  449. }
  450. });
  451. }
  452. }),
  453. fnSetEpoDropCus({
  454. Select: $('#ExhibitionNO'),
  455. IdName: 'ExhibitionCode',
  456. TextName: 'ExhibitioFullName',
  457. Select2: true
  458. }),
  459. fnSetUserDrop([
  460. {
  461. Select: $('#Handle_Person'),
  462. Select2: true,
  463. ShowId: true,
  464. Action: sAction,
  465. CallBack: function (data) {
  466. saUsers = data;
  467. sOptionHtml_Users = createOptions(data, 'MemberID', 'MemberName');
  468. }
  469. }
  470. ]),
  471. fnSetArgDrop([
  472. {
  473. ArgClassID: 'Currency',
  474. CallBack: function (data) {
  475. sOptionHtml_Currency = createOptions(data, 'id', 'id');
  476. }
  477. }
  478. ])])
  479. .done(function () {
  480. fnGet().done(function () {
  481. moneyInput($('[data-type="int"]'), 2, true);
  482. });
  483. $("#jsGrid1").jsGrid({
  484. width: "100%",
  485. height: "auto",
  486. autoload: true,
  487. filtering: false,
  488. inserting: true,
  489. editing: true,
  490. pageLoading: true,
  491. confirmDeleting: true,
  492. invalidMessage: i18next.t('common.InvalidData'),// ╠common.InvalidData⇒输入的数据无效!╣
  493. deleteConfirm: i18next.t('message.ConfirmToDelete'),// ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣
  494. pageIndex: 1,
  495. pageSize: 10000,
  496. rowClick: function (args) {},
  497. fields: [
  498. {
  499. name: "Date", title: 'Date', width: 100, type: "text", validate: { validator: 'required', message: i18next.t('common.Date_required') },// ╠common.Date_required⇒請輸入日期╣
  500. insertTemplate: function (val, item) {
  501. var oControl = $('<input />', {
  502. class: "form-control w100p date-picker"
  503. });
  504. oControl.datepicker({
  505. changeYear: true,
  506. changeMonth: true,
  507. altFormat: 'yyyy/MM/dd'
  508. });
  509. return this.insertControl = oControl;
  510. },
  511. insertValue: function () {
  512. return this.insertControl.val();
  513. },
  514. editTemplate: function (val, item) {
  515. var oControl = $('<input />', {
  516. class: "form-control w100p date-picker",
  517. value: val
  518. });
  519. oControl.datepicker({
  520. changeYear: true,
  521. changeMonth: true,
  522. altFormat: 'yyyy/MM/dd'
  523. });
  524. return this.editControl = oControl;
  525. },
  526. editValue: function () {
  527. return this.editControl.val();
  528. }
  529. },
  530. {
  531. name: "Particulars", title: 'PARTICULARS', width: 150, type: "text",
  532. insertTemplate: function (val, item) {
  533. var oControl = $('<textarea rows="2" cols="20" />', {
  534. class: "form-control w100p"
  535. });
  536. return this.insertControl = oControl;
  537. },
  538. insertValue: function () {
  539. return this.insertControl.val();
  540. },
  541. editTemplate: function (val, item) {
  542. var oControl = $('<textarea rows="2" cols="20" />', {
  543. class: "form-control w100p"
  544. });
  545. return this.editControl = oControl.val(val);
  546. },
  547. editValue: function () {
  548. return this.editControl.val();
  549. }
  550. },
  551. {
  552. name: "Currency", title: 'common.Financial_Currency', width: 70, type: "text", validate: { validator: 'required', message: i18next.t('common.Currency_required') },// ╠common.Currency_required⇒請選擇幣別╣
  553. insertTemplate: function (val, item) {
  554. var oControl = $('<select />', {
  555. class: "form-control",
  556. html: sOptionHtml_Currency
  557. });
  558. return this.insertControl = oControl;
  559. },
  560. insertValue: function () {
  561. return this.insertControl.val();
  562. },
  563. editTemplate: function (val, item) {
  564. var oControl = $('<select />', {
  565. class: "form-control",
  566. html: sOptionHtml_Currency
  567. }).val(item.Currency);
  568. return this.editControl = oControl;
  569. },
  570. editValue: function () {
  571. return this.editControl.val();
  572. }
  573. },
  574. {// ╠common.TravelExpenseFee1⇒日支額╣
  575. name: "Amount1", title: 'common.TravelExpenseFee1', width: 110, type: "text", align: "right", validate: { validator: 'required', message: i18next.t('common.TravelExpenseFee1_required') },// ╠common.TravelExpenseFee1_required⇒請輸入日支額╣
  576. itemTemplate: function (val, item) {
  577. return fMoney(item.Amount1, 2, item.Currency);
  578. },
  579. insertTemplate: function (val, item) {
  580. var oControl = $('<input />', {
  581. class: "form-control",
  582. 'data-type': 'int',
  583. 'data-name': 'int',
  584. change: function () {
  585. oAddItem.Amount1 = $(this).attr('data-value');
  586. fnSumFeeItem(oAddItem, this);
  587. }
  588. });
  589. moneyInput(oControl, 2, true);
  590. return this.insertControl = oControl;
  591. },
  592. insertValue: function () {
  593. return this.insertControl.attr('data-value');
  594. },
  595. editTemplate: function (val, item) {
  596. var oControl = $('<input />', {
  597. class: "form-control",
  598. 'data-type': 'int',
  599. 'data-name': 'int',
  600. value: item.Amount1,
  601. change: function () {
  602. item.Amount1 = $(this).attr('data-value');
  603. fnSumFeeItem(item, this);
  604. }
  605. });
  606. moneyInput(oControl, 2, true);
  607. return this.editControl = oControl;
  608. },
  609. editValue: function () {
  610. return this.editControl.attr('data-value');
  611. }
  612. },
  613. {// ╠common.TravelExpenseFee2⇒住宿費╣
  614. name: "Amount2", title: 'common.TravelExpenseFee2', width: 110, type: "text", align: "right", validate: { validator: 'required', message: i18next.t('common.TravelExpenseFee2_required') },// ╠common.TravelExpenseFee2_required⇒請輸入住宿費╣
  615. itemTemplate: function (val, item) {
  616. return fMoney(item.Amount2, 2, item.Currency);
  617. },
  618. insertTemplate: function (val, item) {
  619. var oControl = $('<input />', {
  620. class: "form-control",
  621. 'data-type': 'int',
  622. 'data-name': 'int',
  623. change: function () {
  624. oAddItem.Amount2 = $(this).attr('data-value');
  625. fnSumFeeItem(oAddItem, this);
  626. }
  627. });
  628. moneyInput(oControl, 2, true);
  629. return this.insertControl = oControl;
  630. },
  631. insertValue: function () {
  632. return this.insertControl.attr('data-value');
  633. },
  634. editTemplate: function (val, item) {
  635. var oControl = $('<input />', {
  636. class: "form-control",
  637. 'data-type': 'int',
  638. 'data-name': 'int',
  639. value: item.Amount2,
  640. change: function () {
  641. item.Amount2 = $(this).attr('data-value');
  642. fnSumFeeItem(item, this);
  643. }
  644. });
  645. moneyInput(oControl, 2, true);
  646. return this.editControl = oControl;
  647. },
  648. editValue: function () {
  649. return this.editControl.attr('data-value');
  650. }
  651. },
  652. {// ╠common.TravelExpenseFee3⇒其他╣
  653. name: "Amount3", title: 'common.TravelExpenseFee3', width: 110, type: "text", align: "right", validate: { validator: 'required', message: i18next.t('common.TravelExpenseFee3_required') },// ╠common.TravelExpenseFee3_required⇒請輸入其他╣
  654. itemTemplate: function (val, item) {
  655. return fMoney(item.Amount3, 2, item.Currency);
  656. },
  657. insertTemplate: function (val, item) {
  658. var oControl = $('<input />', {
  659. class: "form-control w100p left wright amount",
  660. 'data-type': 'int',
  661. 'data-name': 'int',
  662. change: function () {
  663. oAddItem.Amount3 = $(this).attr('data-value');
  664. fnSumFeeItem(oAddItem, this);
  665. }
  666. });
  667. moneyInput(oControl, 2, true);
  668. return this.insertControl = oControl;
  669. },
  670. insertValue: function () {
  671. return this.insertControl.attr('data-value');
  672. },
  673. editTemplate: function (val, item) {
  674. var oControl = $('<input />', {
  675. class: "form-control",
  676. 'data-type': 'int',
  677. 'data-name': 'int',
  678. value: item.Amount3,
  679. change: function () {
  680. item.Amount3 = $(this).attr('data-value');
  681. fnSumFeeItem(item, this);
  682. }
  683. });
  684. moneyInput(oControl, 2, true);
  685. return this.editControl = oControl;
  686. },
  687. editValue: function () {
  688. return this.editControl.attr('data-value');
  689. }
  690. },
  691. {// ╠common.ExchangeRate⇒匯率╣
  692. name: "ExchangeRate", title: 'common.ExchangeRate', width: 100, type: "text", align: "center",
  693. insertTemplate: function (val, item) {
  694. var oControl = $('<input />', {
  695. class: "form-control",
  696. change: function () {
  697. oAddItem.ExchangeRate = this.value;
  698. fnSumFeeItem(oAddItem, this);
  699. }
  700. });
  701. return this.insertControl = oControl;
  702. },
  703. insertValue: function () {
  704. return this.insertControl.val();
  705. },
  706. editTemplate: function (val, item) {
  707. var oControl = $('<input />', {
  708. class: "form-control",
  709. value: val,
  710. change: function () {
  711. item.ExchangeRate = this.value;
  712. fnSumFeeItem(item, this);
  713. }
  714. });
  715. return this.editControl = oControl;
  716. },
  717. editValue: function () {
  718. return this.editControl.val();
  719. }
  720. },
  721. {
  722. name: "Total", title: 'TWD', width: 110, type: "text", align: "right",
  723. itemTemplate: function (val, item) {
  724. return fMoney(val, 2, item.Currency);
  725. },
  726. insertTemplate: function (val, item) {
  727. var oControl = $('<input />', {
  728. class: "form-control w100p total",
  729. 'data-type': 'int',
  730. 'data-name': 'int',
  731. disabled: 'disabled',
  732. value: val
  733. });
  734. moneyInput(oControl, 2, true);
  735. return this.insertControl = oControl;
  736. },
  737. insertValue: function () {
  738. let AmountStr = this.insertControl.val().replaceAll(',', '');
  739. let PositiveInt = Math.round(AmountStr);
  740. this.insertControl.val(PositiveInt);
  741. this.insertControl[0].dataset.value = PositiveInt;
  742. return this.insertControl.val().replaceAll(',', '');
  743. },
  744. editTemplate: function (val, item) {
  745. var oControl = $('<input />', {
  746. class: "form-control w100p total",
  747. 'data-type': 'int',
  748. 'data-name': 'int',
  749. disabled: 'disabled',
  750. value: val
  751. });
  752. moneyInput(oControl, 2, true);
  753. return this.editControl = oControl;
  754. },
  755. editValue: function () {
  756. let AmountStr = this.editControl.val().replaceAll(',', '');
  757. let PositiveInt = Math.round(AmountStr);
  758. this.editControl.val(PositiveInt);
  759. this.editControl[0].dataset.value = PositiveInt;
  760. return this.editControl.val().replaceAll(',', '');
  761. }
  762. },
  763. {
  764. type: "control", width: 50
  765. }
  766. ],
  767. controller: {
  768. loadData: function (args) {
  769. return {
  770. data: oCurData.TravelFeeItems,
  771. itemsCount: oCurData.TravelFeeItems.length //data.length
  772. };
  773. },
  774. insertItem: function (args) {
  775. args.guid = guid();
  776. args.Index = oCurData.TravelFeeItems.length + 1;
  777. oCurData.TravelFeeItems.push(args);
  778. oAddItem = {};
  779. },
  780. updateItem: function (args) {
  781. },
  782. deleteItem: function (args) {
  783. var saNewTravelFeeItems = [];
  784. $.each(oCurData.TravelFeeItems, function (idx, _data) {
  785. if (_data.guid !== args.guid) {
  786. saNewTravelFeeItems.push(_data);
  787. }
  788. });
  789. $.each(saNewTravelFeeItems, function (idx, _data) {
  790. _data.Index = idx + 1;
  791. });
  792. oCurData.TravelFeeItems = saNewTravelFeeItems;
  793. }
  794. },
  795. onDataLoaded: function (args) {
  796. },
  797. onItemInserted: function (args) {
  798. fnSumFeeItems();
  799. },
  800. onItemUpdated: function (args) {
  801. fnSumFeeItems();
  802. },
  803. onItemDeleted: function (args) {
  804. fnSumFeeItems();
  805. },
  806. onInit: function (args) {
  807. oGrid = args.grid;
  808. }
  809. });
  810. });
  811. $('#Handle_DeptID').on('change', function () {
  812. fnSetUserDrop([
  813. {
  814. Select: $('#Handle_Person'),
  815. DepartmentID: this.value,
  816. ShowId: true,
  817. Select2: true,
  818. Action: sAction
  819. }
  820. ]);
  821. });
  822. $('#Agent_Person').on('change', function () {
  823. oCurData.Agent_Person = this.value;
  824. });
  825. $('#TravelFeeInfo_Total,#TravelFeeInfo_CompanyAdvance').on('change', function () {
  826. var iTotal = 0, iAdvance = 0, iSum = 0, sSum = '';
  827. if (this.id === 'TravelFeeInfo_Total') {
  828. iTotal = $(this).attr('data-value');
  829. iAdvance = $('#TravelFeeInfo_CompanyAdvance').attr('data-value');
  830. }
  831. else {
  832. iTotal = $('#TravelFeeInfo_Total').attr('data-value');
  833. iAdvance = $(this).attr('data-value') || $(this).val();
  834. }
  835. iSum = iTotal * 1 - (!iAdvance ? 0 : iAdvance) * 1;
  836. sSum = fMoney(iSum, 0, 'NTD');
  837. $('#TravelFeeInfo_CompanyCope,#TravelFeeInfo_Sum').val(sSum).attr('data-value', sSum.replaceAll(',', ''));
  838. });
  839. $('.flowlink').on('click', function () {
  840. var oOption = {};
  841. oOption.SignedWay = this.id;
  842. oOption.Callback = function (data) {
  843. if (data.Users.length > 0) {
  844. var oFlow = {};
  845. if (data.FlowType === 'flow1') {
  846. $.each(data.Users, function (idx, user) {
  847. oFlow = {};
  848. oFlow.id = guid();
  849. oFlow.Order = oCurData.CheckOrder.length + 1;
  850. oFlow.SignedWay = data.FlowType;
  851. oFlow.SignedMember = [{
  852. id: user.id,
  853. name: user.name,
  854. deptname: user.deptname,
  855. jobname: user.jobname
  856. }];
  857. oCurData.CheckOrder.push(oFlow);
  858. });
  859. }
  860. else {
  861. var saSignedMember = [];
  862. $.each(data.Users, function (idx, user) {
  863. saSignedMember.push({
  864. id: user.id,
  865. name: user.name,
  866. deptname: user.deptname,
  867. jobname: user.jobname
  868. });
  869. });
  870. oFlow.id = guid();
  871. oFlow.Order = oCurData.CheckOrder.length + 1;
  872. oFlow.SignedWay = data.FlowType;
  873. oFlow.SignedMember = saSignedMember;
  874. oCurData.CheckOrder.push(oFlow);
  875. }
  876. oCurData.CheckOrder = releaseGridList(oCurData.CheckOrder);
  877. $("#jsGrid").jsGrid("loadData");
  878. }
  879. };
  880. oPenUserListPop(oOption);
  881. });
  882. $("#jsGrid").jsGrid({
  883. width: "100%",
  884. height: "auto",
  885. autoload: true,
  886. filtering: false,
  887. pageLoading: true,
  888. pageIndex: 1,
  889. pageSize: 10000,
  890. fields: [
  891. {
  892. name: "Order", title: 'common.Order', width: 50, align: "center",
  893. itemTemplate: function (val, item) {
  894. return val < 10 ? '0' + val : val;
  895. }
  896. },
  897. {
  898. name: "SignedWay", title: 'common.SignedWay', width: 120, align: "center",
  899. itemTemplate: function (val, item) {
  900. return i18next.t('common.' + val);
  901. }
  902. },
  903. {
  904. type: "Icon", width: 50, align: "center",
  905. itemTemplate: function (val, item) {
  906. var oIcon = {
  907. flow1: '<img src="../../images/flow_check.gif">',
  908. flow2: '<img src="../../images/flow_check.gif"><img src="../../images/flow_check.gif">',
  909. flow3: '<img src="../../images/flow_check.gif"><img src="../../images/flow_nocheck.gif">',
  910. flow4: '<img src="../../images/flow4.gif">'
  911. },
  912. sIcon = oIcon[item.SignedWay];
  913. if (item.Order !== oCurData.CheckOrder.length) {
  914. sIcon += '<br><img src="../../images/flow_arrow.gif" style="vertical-align:top;">';
  915. }
  916. return sIcon;
  917. }
  918. },
  919. {
  920. name: "SignedMember", title: 'common.SignedMember', width: 500,
  921. itemTemplate: function (val, item) {
  922. return Enumerable.From(val).ToString(",", "$.name");
  923. }
  924. },
  925. {
  926. type: "control", title: 'common.Action', width: 200,
  927. itemTemplate: function (val, item) {
  928. var oBtns = [$('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  929. class: 'glyphicon glyphicon-pencil' + (oCurData.Flows_Lock === 'Y' ? ' disabled' : ''),
  930. title: i18next.t('common.Edit'),// ╠common.Edit⇒編輯╣
  931. click: function () {
  932. if ($(this).hasClass('disabled')) { return false; }
  933. var oOption = {};
  934. oOption.SignedWay = item.SignedWay;
  935. oOption.SignedMember = item.SignedMember;
  936. oOption.Callback = function (data) {
  937. if (data.Users.length > 0) {
  938. var oFlow = {};
  939. if (data.FlowType === 'flow1') {
  940. $.each(data.Users, function (idx, user) {
  941. var oFlow = {};
  942. oFlow.id = guid();
  943. oFlow.Order = item.Order + idx;
  944. oFlow.SignedWay = data.FlowType;
  945. oFlow.SignedMember = [{
  946. id: user.id,
  947. name: user.name,
  948. deptname: user.deptname,
  949. jobname: user.jobname
  950. }];
  951. oCurData.CheckOrder.insert(item.Order + idx, oFlow);
  952. });
  953. }
  954. else {
  955. var saSignedMember = [];
  956. $.each(data.Users, function (idx, user) {
  957. saSignedMember.push({
  958. id: user.id,
  959. name: user.name,
  960. deptname: user.deptname,
  961. jobname: user.jobname
  962. });
  963. });
  964. oFlow.id = guid();
  965. oFlow.Order = item.Order;
  966. oFlow.SignedWay = data.FlowType;
  967. oFlow.SignedMember = saSignedMember;
  968. oCurData.CheckOrder.insert(item.Order, oFlow);
  969. }
  970. var iOrder = 1;
  971. $.each(oCurData.CheckOrder, function (idx, _data) {
  972. if (item.id !== _data.id) {
  973. _data.Order = iOrder;
  974. iOrder++;
  975. }
  976. });
  977. oCurData.CheckOrder = Enumerable.From(oCurData.CheckOrder).Where(function (e) { return e.id !== item.id; }).ToArray();
  978. oCurData.CheckOrder = releaseGridList(oCurData.CheckOrder);
  979. $("#jsGrid").jsGrid("loadData");
  980. }
  981. };
  982. oPenUserListPop(oOption);
  983. }
  984. })),
  985. $('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  986. class: 'glyphicon glyphicon-trash' + (oCurData.Flows_Lock === 'Y' ? ' disabled' : ''),
  987. title: i18next.t('common.Toolbar_Del'),// ╠common.Toolbar_Del⇒刪除╣
  988. click: function () {
  989. if ($(this).hasClass('disabled')) { return false; }
  990. var saNewList = Enumerable.From(oCurData.CheckOrder).Where(function (e) { return e.id !== item.id; }).ToArray();
  991. oCurData.CheckOrder = saNewList;
  992. $.each(oCurData.CheckOrder, function (idx, _data) {
  993. _data.Order = idx + 1;
  994. });
  995. oCurData.CheckOrder = releaseGridList(oCurData.CheckOrder);
  996. $("#jsGrid").jsGrid("loadData");
  997. }
  998. }))];
  999. if (oCurData.CheckOrder.length !== item.Order) {
  1000. oBtns.push($('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  1001. class: 'glyphicon glyphicon-arrow-down' + (oCurData.Flows_Lock === 'Y' ? ' disabled' : ''),
  1002. title: i18next.t('common.Down'),// ╠common.Down⇒下移╣
  1003. click: function () {
  1004. if ($(this).hasClass('disabled')) { return false; }
  1005. var sOrder = Enumerable.From(oCurData.CheckOrder).Where(function (e) { return e.id === item.id; }).ToString('', '$.Order'),
  1006. iOrder = sOrder * 1;
  1007. $.each(oCurData.CheckOrder, function (idx, _data) {
  1008. if (iOrder === _data.Order) {
  1009. _data.Order++;
  1010. }
  1011. else if (iOrder + 1 === _data.Order) {
  1012. _data.Order--;
  1013. }
  1014. });
  1015. oCurData.CheckOrder = releaseGridList(oCurData.CheckOrder);
  1016. $("#jsGrid").jsGrid("loadData");
  1017. }
  1018. })));
  1019. }
  1020. else {
  1021. oBtns.push($('<div>', { class: 'fa-item col-sm-3' }));
  1022. }
  1023. if (1 !== item.Order) {
  1024. oBtns.push($('<div>', { class: 'fa-item col-sm-3' }).append($('<i>', {
  1025. class: 'glyphicon glyphicon-arrow-up' + (oCurData.Flows_Lock === 'Y' ? ' disabled' : ''),
  1026. title: i18next.t('common.Up'),// ╠common.Up⇒上移╣
  1027. click: function () {
  1028. if ($(this).hasClass('disabled')) { return false; }
  1029. var sOrder = Enumerable.From(oCurData.CheckOrder).Where(function (e) { return e.id === item.id; }).ToString('', '$.Order'),
  1030. iOrder = sOrder * 1;
  1031. $.each(oCurData.CheckOrder, function (idx, _data) {
  1032. if (iOrder === _data.Order) {
  1033. _data.Order--;
  1034. }
  1035. else if (iOrder - 1 === _data.Order) {
  1036. _data.Order++;
  1037. }
  1038. });
  1039. oCurData.CheckOrder = releaseGridList(oCurData.CheckOrder);
  1040. $("#jsGrid").jsGrid("loadData");
  1041. }
  1042. })));
  1043. }
  1044. return oBtns;
  1045. }
  1046. }
  1047. ],
  1048. controller: {
  1049. loadData: function (args) {
  1050. return {
  1051. data: oCurData.CheckOrder,
  1052. itemsCount: oCurData.CheckOrder.length //data.length
  1053. };
  1054. },
  1055. insertItem: function (args) {
  1056. },
  1057. updateItem: function (args) {
  1058. },
  1059. deleteItem: function (args) {
  1060. }
  1061. }
  1062. });
  1063. };
  1064. init();
  1065. };
  1066. require(['base', 'select2', 'jsgrid', 'daterangepicker', 'formatnumber', 'filer', 'common_eip', 'util'], fnPageInit, 'daterangepicker');