diff --git a/pom.xml b/pom.xml index 4c1a676c0..d56403813 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 manage - 2.3.44 + 2.3.45 UTF-8 2.4.0 diff --git a/src/main/ui/static/config/platformrevenue/platformrevenue.js b/src/main/ui/static/config/platformrevenue/platformrevenue.js index e02654fea..74fc5f5aa 100644 --- a/src/main/ui/static/config/platformrevenue/platformrevenue.js +++ b/src/main/ui/static/config/platformrevenue/platformrevenue.js @@ -143,7 +143,7 @@ define(['angular', 'decimal', 'uiRouter', 'angularEcharts', '../../analysis/repo app.controller('platformRevenueRootCtrl', ['$scope', '$http', '$filter', 'chartParser', function ($scope, $http, $filter, chartParser) { $scope.params = {year: new Date().getFullYear()}; - $scope.availableYears = [new Date().getFullYear() - 1, new Date().getFullYear()]; + $scope.availableYears = [new Date().getFullYear() - 4 ,new Date().getFullYear() - 3, new Date().getFullYear() - 2, new Date().getFullYear() - 1 ,new Date().getFullYear()]; $scope.initMonth = function (year) { $scope.months = []; for (var i = 1; i < 13; i++) {