3417ed6698
- expense_kind enum (utilities + maintenance/repair/cleaning/insurance/tax/rent/other) - property_expenses table with optional link to a property_accounts row (preserves history via ON DELETE SET NULL) - services/expenses.ts: CRUD + 12-month monthly series aggregation + year-to-date summary by kind - /properties/[id]/expenses tab: inline SVG line chart for electricity + water last 12 months (no chart library), summary card, add/edit/delete inline with account linking when kind matches
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
export * from './_shared';
|
|
export * from './tenancy';
|
|
export * from './properties';
|
|
export * from './rooms';
|
|
export * from './accounts';
|
|
export * from './expenses';
|
|
export * from './assets';
|
|
export * from './documents';
|
|
export * from './checklists';
|
|
export * from './maintenance';
|
|
export * from './projects';
|
|
export * from './decisions';
|
|
export * from './wiki';
|
|
export * from './notifications';
|
|
// audit ships in a later phase.
|