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.

84 lines
2.8 KiB

2 years ago
  1. 'use strict';
  2. let sProgramID = 'CurrencySetup_Qry';
  3. var fnPageInit = function () {
  4. var canDo = new CanDo({
  5. sortField: 'year',
  6. sortOrder: 'asc',
  7. /**
  8. * 當前程式所有ID名稱集合
  9. */
  10. idKeys: ['year', 'month', 'currency'],
  11. /**
  12. * Grid欄位設置可以是 function
  13. */
  14. gridFields: [
  15. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false },
  16. { name: "year", title: 'CurrencySetup_Qry.year', align: 'center', width: 200 },
  17. { name: "month", title: 'CurrencySetup_Qry.month', align: 'center', width: 200 },
  18. { name: "currency", title: 'CurrencySetup_Qry.currency', align: 'center', width: 200 },
  19. { name: "exchange_rate", title: 'CurrencySetup_Qry.exchange_rate', align: 'center', width: 200 }
  20. ],
  21. /**
  22. * 頁面初始化
  23. * @param {Object} pargs CanDo 對象
  24. */
  25. pageInit: function (pargs) {
  26. fpLoadYears();
  27. fpLoadMonth();
  28. fpLoadCurrency().done(() => {
  29. pargs._reSetQueryPm();
  30. pargs._initGrid();
  31. })
  32. }
  33. }),
  34. /**
  35. * 載入年份
  36. */
  37. fpLoadYears = function () {
  38. let dtCurrentDate = new Date();
  39. let ibaseYear = dtCurrentDate.getFullYear();
  40. let saYearList = [];
  41. //抓取當年度加減20年
  42. for (let y = ibaseYear - 20; y <= ibaseYear + 20; y++) {
  43. saYearList.push({
  44. year: y,
  45. value: y
  46. });
  47. }
  48. var sOptionHtml = createOptions(saYearList, 'year', 'value', false);
  49. $('#year').html(sOptionHtml).val(dtCurrentDate.getFullYear());
  50. },
  51. /**
  52. * 載入月份
  53. */
  54. fpLoadMonth = function () {
  55. let dtCurrentDate = new Date();
  56. let saMonthList = [];
  57. //抓取當年度加減20年
  58. for (let m = 1; m <= 12; m++) {
  59. saMonthList.push({
  60. month: m,
  61. value: m
  62. });
  63. }
  64. var sOptionHtml = createOptions(saMonthList, 'month', 'value', false);
  65. $('#month').html(sOptionHtml).val('');
  66. },
  67. /**
  68. * 載入幣別
  69. */
  70. fpLoadCurrency = function () {
  71. return g_api.ConnectLite(sProgramID, 'CurrencyList', {},
  72. function (res) {
  73. if (res.RESULT) {
  74. var saList = res.DATA.rel;
  75. var sOptionHtml = createOptions(saList, 'ArgumentID', 'ArgumentValue', true);
  76. $('#currency').html(sOptionHtml);
  77. }
  78. });
  79. };
  80. };
  81. require(['base', 'jsgrid', 'cando'], fnPageInit);