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.

106 lines
4.1 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. id: 'Toolbar_PreviewReport',
  13. value: 'common.Toolbar_PreviewReport',// ╠common.Toolbar_PreviewReport⇒預覽報表╣
  14. action: function (pargs) {
  15. fnReport('pdf');
  16. }
  17. },
  18. {
  19. id: 'Toolbar_DownloadReport',
  20. value: 'common.Toolbar_DownloadReport',// ╠common.Toolbar_DownloadReport⇒下載報表╣
  21. action: function (pargs) {
  22. fnReport('excel');
  23. }
  24. }];
  25. return saCusBtns;
  26. },
  27. /**
  28. * 頁面初始化
  29. * @param {Object} pargs CanDo 對象
  30. */
  31. pageInit: function (pargs) {
  32. $.whenArray([
  33. fnSetArgDrop([
  34. {
  35. ArgClassID: 'TranType',
  36. CallBack: function (data) {
  37. var sOptions = '<label for="TransactionType_7"><input type="radio" id="TransactionType_7" name="TransactionType" value="A,B,C,D,E,F" checked="checked">全部</label>' + createRadios(data, 'id', 'text', 'TransactionType')
  38. $('#transactiontype').html(sOptions).find('[name="TransactionType"]').click(function () {
  39. $('#stransactiontype').val(this.value);
  40. });
  41. pargs._uniformInit($('#transactiontype'));
  42. }
  43. }
  44. ]),
  45. fnSetArgDrop([
  46. {
  47. ArgClassID: 'Area',
  48. LevelOfArgument: 1,
  49. ParentID: '',
  50. CallBack: function (data) {
  51. data.splice(0, 6);
  52. data = Enumerable.From(data).OrderBy("x=>x.id").ToArray()
  53. $('#State').html(createOptions(data, 'id', 'text', true));
  54. $('#State').select2()
  55. }
  56. }
  57. ]),
  58. fnSetCustomerWithGuid({
  59. Select: $('#CustomerGuid'),
  60. Select2: true,
  61. })
  62. ]).done(function () { });
  63. var iheight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 107;
  64. $('#report').css('height', iheight + 'px');
  65. $('.slide-box').on('click', function () {
  66. if ($(this).hasClass('fa-arrow-down')) {
  67. $('#report').css('height', iheight + 80 + 'px');
  68. }
  69. else {
  70. $('#report').css('height', iheight + 'px');
  71. }
  72. });
  73. }
  74. }),
  75. /**
  76. * 預覽報表或下載報表
  77. * @param {String} flag 預覽或下載
  78. */
  79. fnReport = function (flag) {
  80. var oQuery = canDo._getFormSerialize();
  81. oQuery.Flag = flag;
  82. var AdminUser = parent.UserInfo.roles.toLowerCase().indexOf('admin') > -1;
  83. oQuery.ResponsibleDeptID = '';
  84. if (!AdminUser)
  85. oQuery.ResponsibleDeptID = parent.UserInfo.DepartmentID;
  86. return g_api.ConnectLite(ReportService, sProgramId, oQuery, function (res) {
  87. if (res.RESULT) {
  88. var sPath = res.DATA.rel;
  89. if (flag === 'pdf') {
  90. $('#report').attr('src', gServerUrl + '/' + sPath);
  91. }
  92. else {
  93. canDo._downLoadFile(sPath);
  94. }
  95. }
  96. else {
  97. showMsg("Fail", 'error');
  98. console.log(res.MSG);
  99. }
  100. });
  101. };
  102. };
  103. require(['base', 'select2', 'cando'], fnPageInit);