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.

134 lines
4.5 KiB

2 years ago
  1. 'use strict';
  2. var ReportService = 'CostAndProfitReport';
  3. var sProgramId = getProgramId();
  4. var LastQueryResult = "";
  5. var LastForm;
  6. var fnPageInit = function () {
  7. var canDo = new CanDo({
  8. /**
  9. * 客製化按鈕
  10. * @param {Object} pargs CanDo 對象
  11. */
  12. cusBtns: function (pargs) {
  13. var saCusBtns = [{
  14. id: 'Toolbar_PreviewReport',
  15. value: 'common.Toolbar_PreviewReport',// ╠common.Toolbar_PreviewReport⇒預覽報表╣
  16. action: function (pargs) {
  17. fnReport('pdf');
  18. }
  19. },
  20. {
  21. id: 'Toolbar_DownloadReport',
  22. value: 'common.Toolbar_DownloadReport',// ╠common.Toolbar_DownloadReport⇒下載報表╣
  23. action: function (pargs) {
  24. fnReport('excel');
  25. }
  26. }];
  27. return saCusBtns;
  28. },
  29. /**
  30. * 頁面初始化
  31. * @param {Object} pargs CanDo 對象
  32. */
  33. pageInit: function (pargs) {
  34. $.whenArray([fnSetDeptDropWithLimtedDeptId($('#ResponsibleDeptID')),
  35. fnSetUserDrop([
  36. {
  37. Select: $('#ResponsiblePerson'),
  38. Select2: true,
  39. ShowId: true,
  40. }
  41. ],
  42. fnSetArgDrop([
  43. {
  44. Select: $('#FeeClass'),
  45. ArgClassID: 'FeeClass',
  46. OrgID: pargs.OrgID,
  47. CallBack: function (data) {
  48. data = data.filter(c => c.id.indexOf('99') === 0);
  49. $('#FeeClass').html(createOptions(data, 'id', 'text', true));
  50. }
  51. }
  52. ])),
  53. fnSetEpoDropWithExhibitionCode({
  54. Select: $('#ProjectNO'),
  55. Select2: true,
  56. })
  57. ]).done(function () { });
  58. var iheight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 107;
  59. $('#report').css('height', iheight + 'px');
  60. $('.slide-box').on('click', function () {
  61. if ($(this).hasClass('fa-arrow-down')) {
  62. $('#report').css('height', iheight + 80 + 'px');
  63. }
  64. else {
  65. $('#report').css('height', iheight + 'px');
  66. }
  67. });
  68. $('#ResponsibleDeptID').on('change', function () {
  69. //fnSetHandle_PersonDrop(this.value);
  70. });
  71. }
  72. }),
  73. /**
  74. * 設定展覽名稱選單
  75. * @return ajax 物件
  76. */
  77. fnSetProjectDrop = function () {
  78. return g_api.ConnectLite('BillsReport', 'GetProjects', {}, function (res) {
  79. if (res.RESULT) {
  80. var saCustomers = res.DATA.rel;
  81. if (saCustomers.length > 0) {
  82. $('#ProjectNO').html(createOptions(saCustomers, 'id', 'text')).select2();
  83. }
  84. }
  85. });
  86. },
  87. /**
  88. * 設置部門資料連動業務
  89. * @param {String} deptid 部門ID
  90. */
  91. fnSetHandle_PersonDrop = function (deptid) {
  92. var sDepartmentID = deptid || '';
  93. fnSetUserDrop([
  94. {
  95. Action: 'add',
  96. DepartmentID: sDepartmentID,
  97. CallBack: function (data) {
  98. var saList = data;
  99. $('#ResponsiblePerson').html(createOptions(saList, 'MemberID', 'MemberName', true));
  100. }
  101. }
  102. ]);
  103. },
  104. /**
  105. * 預覽報表或下載報表
  106. * @param {String} flag 預覽或下載
  107. */
  108. fnReport = function (flag) {
  109. var oQuery = canDo._getFormSerialize();
  110. oQuery.Flag = flag;
  111. return g_api.ConnectLite(ReportService, sProgramId, oQuery, function (res) {
  112. if (res.RESULT) {
  113. var sPath = res.DATA.rel;
  114. LastQueryResult = sPath;
  115. if (flag === 'pdf') {
  116. $('#report').attr('src', gServerUrl + '/' + sPath);
  117. }
  118. else {
  119. canDo._downLoadFile(sPath);
  120. }
  121. }
  122. else {
  123. showMsg("Fail", 'error');
  124. console.log(res.MSG);
  125. }
  126. });
  127. };
  128. };
  129. require(['base', 'select2', 'cando'], fnPageInit);