Skip to content

Commit 3cf05ae

Browse files
committed
Temporarily "freeze" budget updates
1 parent aa98bfd commit 3cf05ae

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

admin-scripts/lib/budget-updates.spec.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {

admin-scripts/lib/config.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const budgetNames = {
44
PERIOD2: 'period2',
55
PERIOD3: 'period3',
66
PERIOD4: 'period4',
7+
PERIOD5: 'period5',
78
};
89

910
const 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
],

0 commit comments

Comments
 (0)