feat: add initial application structure with configuration, UI components, and state management
This commit is contained in:
parent
fadf94002c
commit
0af6b17792
56 changed files with 6137 additions and 129 deletions
40
content/fixtures/finances.json
Normal file
40
content/fixtures/finances.json
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{
|
||||
"currentBalances": {
|
||||
"cash": 5000,
|
||||
"savings": 8000,
|
||||
"totalLiquid": 13000
|
||||
},
|
||||
"policies": {
|
||||
"equalHourlyWage": 20,
|
||||
"payrollOncostPct": 25,
|
||||
"savingsTargetMonths": 3,
|
||||
"minCashCushionAmount": 3000,
|
||||
"deferredCapHoursPerQtr": 240,
|
||||
"deferredSunsetMonths": 12,
|
||||
"surplusOrder": [
|
||||
"Deferred",
|
||||
"Savings",
|
||||
"Hardship",
|
||||
"Training",
|
||||
"Patronage",
|
||||
"Retained"
|
||||
],
|
||||
"paymentPriority": [
|
||||
"Payroll",
|
||||
"Taxes",
|
||||
"CriticalOps",
|
||||
"Vendors"
|
||||
],
|
||||
"volunteerScope": {
|
||||
"allowedFlows": ["Care", "SharedLearning"]
|
||||
}
|
||||
},
|
||||
"deferredLiabilities": {
|
||||
"totalDeferred": 2340,
|
||||
"byMember": {
|
||||
"member-1": 1700,
|
||||
"member-2": 0,
|
||||
"member-3": 640
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue