File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed
Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,11 @@ years.forEach((y) => {
8383 if ( act >= '2015-04-01' ) {
8484 let partIncreaseAmount ;
8585 let fullIncreaseAmount ;
86- if ( act >= '2022-07-01' ) {
86+ if ( act >= '2024-01-01' ) {
87+ partIncreaseAmount = 1 ;
88+ fullIncreaseAmount = 1 ;
89+ } else
90+ if ( act >= '2022-07-01' ) {
8791 partIncreaseAmount = 30000 ;
8892 fullIncreaseAmount = 30000 ;
8993 } else {
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const budgetNames = {
44 PERIOD2 : 'period2' ,
55 PERIOD3 : 'period3' ,
66 PERIOD4 : 'period4' ,
7+ PERIOD5 : 'period5' ,
78} ;
89
910const budgetStartDate = '2015-04-01' ; // when the budget calculation starts
@@ -86,6 +87,21 @@ const config = {
8687 } ,
8788 name : budgetNames . PERIOD4 ,
8889 firstIncreaseYears : 2 ,
90+ validUntil : '2023-12-31' ,
91+ } ,
92+ {
93+ initial : {
94+ // initial budget
95+ fullTime : 75000 ,
96+ partTime : 75000 ,
97+ } ,
98+ yearly : {
99+ // yearly increase
100+ fullTime : 1 ,
101+ partTime : 1 ,
102+ } ,
103+ name : budgetNames . PERIOD5 ,
104+ firstIncreaseYears : 2 ,
89105 validUntil : '2999-12-31' ,
90106 } ,
91107 ] ,
You can’t perform that action at this time.
0 commit comments