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.

153 lines
5.4 KiB

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