feat(T06): Verkaufsmodul + Rechtsdokumente + DATEV-Export + Sales UI

This commit is contained in:
2026-07-17 01:58:34 +02:00
parent a38d340ddc
commit 6603e411e9
33 changed files with 3481 additions and 107 deletions
+27
View File
@@ -0,0 +1,27 @@
"""SQLAlchemy models package.
Import all models here so they register with Base.metadata
before create_all/drop_all is called.
"""
from app.models.contact import Contact, ContactPerson
from app.models.datev_export import DATEVExport
from app.models.file import File
from app.models.ocr_result import OCRResult
from app.models.sale import Sale, SaleStatus
from app.models.user import User, UserRole
from app.models.vehicle import MobileDeListing, Vehicle
__all__ = [
"Contact",
"ContactPerson",
"DATEVExport",
"File",
"OCRResult",
"Sale",
"SaleStatus",
"User",
"UserRole",
"Vehicle",
"MobileDeListing",
]