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.

123 lines
4.1 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. fnSetEpoDropWithExhibitionCode({
  43. Select: $('#ProjectNO'),
  44. Select2: true,
  45. })
  46. ]).done(function () { });
  47. var iheight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 107;
  48. $('#report').css('height', iheight + 'px');
  49. $('.slide-box').on('click', function () {
  50. if ($(this).hasClass('fa-arrow-down')) {
  51. $('#report').css('height', iheight + 80 + 'px');
  52. }
  53. else {
  54. $('#report').css('height', iheight + 'px');
  55. }
  56. });
  57. $('#ResponsibleDeptID').on('change', function () {
  58. //fnSetHandle_PersonDrop(this.value);
  59. });
  60. }
  61. }),
  62. /**
  63. * 設定展覽名稱選單
  64. * @return ajax 物件
  65. */
  66. fnSetProjectDrop = function () {
  67. return g_api.ConnectLite('BillsReport', 'GetProjects', {}, function (res) {
  68. if (res.RESULT) {
  69. var saCustomers = res.DATA.rel;
  70. if (saCustomers.length > 0) {
  71. $('#ProjectNO').html(createOptions(saCustomers, 'id', 'text')).select2();
  72. }
  73. }
  74. });
  75. },
  76. /**
  77. * 設置部門資料連動業務
  78. * @param {String} deptid 部門ID
  79. */
  80. fnSetHandle_PersonDrop = function (deptid) {
  81. var sDepartmentID = deptid || '';
  82. fnSetUserDrop([
  83. {
  84. Action: 'add',
  85. DepartmentID: sDepartmentID,
  86. CallBack: function (data) {
  87. var saList = data;
  88. $('#ResponsiblePerson').html(createOptions(saList, 'MemberID', 'MemberName', true));
  89. }
  90. }
  91. ]);
  92. },
  93. /**
  94. * 預覽報表或下載報表
  95. * @param {String} flag 預覽或下載
  96. */
  97. fnReport = function (flag) {
  98. var oQuery = canDo._getFormSerialize();
  99. oQuery.Flag = flag;
  100. return g_api.ConnectLite(ReportService, sProgramId, oQuery, function (res) {
  101. if (res.RESULT) {
  102. var sPath = res.DATA.rel;
  103. LastQueryResult = sPath;
  104. if (flag === 'pdf') {
  105. $('#report').attr('src', gServerUrl + '/' + sPath);
  106. }
  107. else {
  108. canDo._downLoadFile(sPath);
  109. }
  110. }
  111. else {
  112. showMsg("Fail", 'error');
  113. console.log(res.MSG);
  114. }
  115. });
  116. };
  117. };
  118. require(['base', 'select2', 'cando'], fnPageInit);