Documentation and books - books.softwarehuset.com
Find a file
Nicolaj Hartmann 1f75c5d791 Add all backend domain, commands, repositories, and tests
This commit includes all previously untracked backend files:

Domain:
- Accounts, Attachments, BankConnections, Customers
- FiscalYears, Invoices, JournalEntryDrafts
- Orders, Products, UserAccess

Commands & Handlers:
- Full CQRS command structure for all domains

Repositories:
- PostgreSQL repositories for all read models
- Bank transaction and ledger repositories

GraphQL:
- Input types, scalars, and types for all entities
- Mutations and queries

Infrastructure:
- Banking integration (Enable Banking client)
- File storage, Invoicing, Reporting, SAF-T export
- Database migrations (003-029)

Tests:
- Integration tests for GraphQL endpoints
- Domain tests
- Invoicing and reporting tests

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-30 22:19:42 +01:00
.beads Add all backend domain, commands, repositories, and tests 2026-01-30 22:19:42 +01:00
account-suggestions Initial commit: Books accounting system with EventFlow CQRS 2026-01-18 02:52:30 +01:00
backend Add all backend domain, commands, repositories, and tests 2026-01-30 22:19:42 +01:00
frontend Improve Kontooversigt UX and add missing CVR validation 2026-01-30 14:47:45 +01:00
.gitignore Add frontend environment configuration for API URL injection 2026-01-18 03:12:45 +01:00
README.md Initial commit: Books accounting system with EventFlow CQRS 2026-01-18 02:52:30 +01:00

Books - Dansk Bogføringssystem

Et komplet bogføringssystem til danske virksomheder med support for regnskabsår, momsindberetning og SKAT-compliance.

Projektstruktur

books/
├── frontend/          # React/TypeScript frontend
│   ├── src/
│   │   ├── components/
│   │   ├── pages/
│   │   ├── stores/
│   │   ├── hooks/
│   │   ├── lib/
│   │   └── types/
│   ├── package.json
│   └── vite.config.ts
│
├── backend/           # .NET 8 Web API
│   ├── Books.Api/
│   │   ├── Controllers/
│   │   ├── Models/
│   │   ├── Services/
│   │   └── Program.cs
│   ├── Books.slnx
│   └── BACKEND_REQUIREMENTS.md
│
└── README.md

Teknologi Stack

Frontend

  • React 18 med TypeScript
  • Ant Design komponenter
  • Zustand state management
  • Vite build tool
  • Day.js til dato-håndtering

Backend

  • .NET 10 Web API
  • C# 14
  • Entity Framework Core
  • PostgreSQL database
  • JWT authentication
  • SLNX solution format

Kom i gang

Frontend

cd frontend
npm install
npm run dev

Backend

cd backend
dotnet restore
dotnet run --project Books.Api

Features

  • Regnskabsår (Fiscal Years) - opret, luk, lås
  • Regnskabsperioder - månedlig, kvartalsvis, halvårlig, årlig
  • Kontoplan med danske standardkonti
  • Hurtig bogføring interface
  • Årsafslutning med lukkeposter
  • Dynamiske åbningsbalancer
  • Momsindberetning
  • SKAT integration

Licens

Proprietary - Alle rettigheder forbeholdes.