Bereits an AG übergeben läuft jetzt so, wie du es beschrieben hast:
Some checks failed
CI / Build (push) Failing after 1m6s
CI / Deploy (push) Has been skipped

Bezahlt setzen zählt in der Budgetanzeige automatisch mit.
Zusätzlich gibt es unter Neue Ausgabe eine eigene Insel für zusätzlich bereits übergebenes Geld, falls das nicht über einzelne Ausgaben läuft.
In den Budgetkarten wird das als gestrichelte Querlinie plus eigenem Chip dargestellt
This commit is contained in:
Jan
2026-04-13 21:22:02 +02:00
parent 051de0eea3
commit 34e5f96db7
13 changed files with 317 additions and 21 deletions

View File

@@ -33,6 +33,7 @@ const CSV_HEADERS = [
"description",
"amount",
"totalBudget",
"releasedAmount",
"colorCode",
"approvalStatus",
"approvalType",
@@ -198,6 +199,7 @@ export async function GET() {
description: "",
amount: "",
totalBudget: "",
releasedAmount: "",
colorCode: "",
approvalStatus: "",
approvalType: "",
@@ -250,6 +252,7 @@ export async function GET() {
description: "",
amount: "",
totalBudget: "",
releasedAmount: "",
colorCode: "",
approvalStatus: "",
approvalType: "",
@@ -302,6 +305,7 @@ export async function GET() {
description: "",
amount: "",
totalBudget: group.budgets.reduce((sum, budget) => sum + Number(budget.totalBudget), 0).toFixed(2),
releasedAmount: group.budgets.reduce((sum, budget) => sum + Number(budget.releasedAmount), 0).toFixed(2),
colorCode: "",
approvalStatus: "",
approvalType: "",
@@ -353,6 +357,7 @@ export async function GET() {
description: "",
amount: "",
totalBudget: Number(budget.totalBudget).toFixed(2),
releasedAmount: Number(budget.releasedAmount).toFixed(2),
colorCode: budget.colorCode,
approvalStatus: "",
approvalType: "",
@@ -510,6 +515,7 @@ export async function GET() {
description: "",
amount: "",
totalBudget: "",
releasedAmount: "",
colorCode: "",
approvalStatus: "",
approvalType: "",