feat(T06): Verkaufsmodul + Rechtsdokumente + DATEV-Export + Sales UI
This commit is contained in:
@@ -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",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user