Files
HartOMat/backend/app/domains/billing/schemas.py
T
Hartmut f19a6ccde8 feat(F-G-H-I): STL cache, invoices, import validation, notification settings
Phase F — STL Hash Cache:
- Migration 041: step_file_hash column on cad_files
- cache_service.py: SHA256 hash + MinIO-backed STL cache (check/store)
- render_step_thumbnail: compute+persist hash before render
- generate_stl_cache: check MinIO cache before cadquery conversion, store after

Phase G — Invoices:
- Migration 042: invoices + invoice_lines tables with RLS
- Invoice/InvoiceLine models + schemas
- billing service: generate_invoice_number (INV-YYYY-NNNN), create/list/get/delete/PDF
- WeasyPrint PDF generation; backend Dockerfile + pyproject.toml deps
- invoice_router with 6 endpoints; registered in main.py
- frontend: Billing.tsx page + api/billing.ts; route + nav link

Phase H — Import Sanity Check:
- Migration 043: import_validations table
- ImportValidation model + schemas
- run_sanity_check: material fuzzy-match (cutoff=0.8), STEP availability, duplicate detection
- validate_excel_import Celery task (queue: step_processing)
- uploads.py: create ImportValidation on /excel, fire task, expose GET /validations/{id}
- frontend: Upload.tsx polling ValidationDialog with Ampel status indicators

Phase I — Notification Settings:
- Migration 044: notification_configs table (user×event×channel toggles)
- NotificationConfig model + seeds (in_app=true, email=false)
- get/upsert/reset config endpoints on /notifications/config
- frontend: NotificationSettings.tsx page + api/notifications.ts extensions

Infrastructure:
- docker-compose.yml: add worker-thumbnail service (concurrency=1, Q=thumbnail_rendering)
- Fix Dockerfile: libgdk-pixbuf-2.0-0 (correct Debian bookworm package name)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-06 18:05:01 +01:00

58 lines
1.3 KiB
Python

"""Billing schemas — Invoice + InvoiceLine Pydantic models."""
from __future__ import annotations
import uuid
from datetime import date, datetime
from decimal import Decimal
from pydantic import BaseModel
class InvoiceLineCreate(BaseModel):
order_line_id: uuid.UUID | None = None
description: str
quantity: int = 1
unit_price: Decimal | None = None
class InvoiceLineOut(BaseModel):
id: uuid.UUID
invoice_id: uuid.UUID
order_line_id: uuid.UUID | None
description: str
quantity: int
unit_price: Decimal | None
total: Decimal | None
model_config = {"from_attributes": True}
class InvoiceCreate(BaseModel):
order_line_ids: list[uuid.UUID] = []
notes: str | None = None
issued_at: date | None = None
due_at: date | None = None
vat_rate: Decimal = Decimal("0.19")
currency: str = "EUR"
class InvoiceStatusUpdate(BaseModel):
status: str # draft|sent|paid|cancelled
class InvoiceOut(BaseModel):
id: uuid.UUID
tenant_id: uuid.UUID | None
invoice_number: str
status: str
issued_at: date | None
due_at: date | None
total_net: Decimal | None
total_vat: Decimal | None
vat_rate: Decimal
currency: str
notes: str | None
pdf_key: str | None
created_at: datetime
lines: list[InvoiceLineOut] = []
model_config = {"from_attributes": True}