Skip to content

Commit a1813b5

Browse files
authored
feat: update budget page (#2106)
close #1859
1 parent b5a7b96 commit a1813b5

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

apps/nuxt/src/pages/TeeBudgetPage.vue

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,14 +162,16 @@ definePageMeta({
162162
const navigation = new Navigation()
163163
const budgetChartCanvas = ref<HTMLCanvasElement | null>(null)
164164
165-
const budgetLabels = ['Design', 'Développement et Data engineering', 'Pilotage', 'Coaching', 'BizDev']
165+
const budgetLabels = ['Design', 'Développement et Data engineering', 'Pilotage', 'Coaching', 'BizDev', 'Frais annexes']
166166
const budgetData = {
167-
2023: [83194, 164674, 154627, 48600, 10819],
168-
2024: [152552.4, 439117.59, 192628.8, 61862.4, 172558.18]
167+
2023: [83194, 164674, 154627, 48600, 10819, 0],
168+
2024: [157685, 444292, 191755, 65230, 183402, 3764],
169+
2025: [141960, 301069, 177341, 60264, 216129, 10764]
169170
}
170171
const yearsLabels = {
171172
2023: 2023,
172-
2024: '2024 (Prévisionnel)'
173+
2024: 2024,
174+
2025: '2025 (Prévisionnel)'
173175
}
174176
const yearlyTotals = computed(() => {
175177
return Object.entries(budgetData).reduce(

0 commit comments

Comments
 (0)