- Rename DestinataerEmailEingang → EmailEingang with category support (destinataer, rechnung, land_pacht, stiftungsgeschichte, allgemein) - Add invoice capture workflow: create Verwaltungskosten from email, link DMS documents as invoice attachments, track payment status - Add Stiftungsgeschichte email category with auto-detection patterns (Ahnenforschung, Genealogie, Chronik, etc.) and DMS integration - Update poll_emails task with category detection and DMS context mapping - Show available history documents in Geschichte editor sidebar - Consolidate DMS views, remove legacy dokument templates - Update all detail/form templates for DMS document linking - Add deploy.sh script and streamline compose.yml Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
55 lines
1.0 KiB
Python
55 lines
1.0 KiB
Python
# models/ package – re-exports all models for backward compatibility
|
||
# Phase 0: Vision 2026 – Code-Refactoring
|
||
|
||
from .system import ( # noqa: F401
|
||
AppConfiguration,
|
||
ApplicationPermission,
|
||
AuditLog,
|
||
BackupJob,
|
||
CSVImport,
|
||
HelpBox,
|
||
)
|
||
|
||
from .dokumente import ( # noqa: F401
|
||
DokumentDatei,
|
||
)
|
||
|
||
from .land import ( # noqa: F401
|
||
DokumentLink,
|
||
Land,
|
||
LandAbrechnung,
|
||
LandVerpachtung,
|
||
Paechter,
|
||
)
|
||
|
||
from .finanzen import ( # noqa: F401
|
||
BankTransaction,
|
||
Rentmeister,
|
||
StiftungsKonto,
|
||
Verwaltungskosten,
|
||
)
|
||
|
||
from .destinataere import ( # noqa: F401
|
||
Destinataer,
|
||
DestinataerEmailEingang,
|
||
EmailEingang,
|
||
DestinataerNotiz,
|
||
DestinataerUnterstuetzung,
|
||
Foerderung,
|
||
Person,
|
||
UnterstuetzungWiederkehrend,
|
||
VierteljahresNachweis,
|
||
)
|
||
|
||
from .geschichte import ( # noqa: F401
|
||
GeschichteBild,
|
||
GeschichteSeite,
|
||
StiftungsKalenderEintrag,
|
||
)
|
||
|
||
from .veranstaltungen import ( # noqa: F401
|
||
BriefVorlage,
|
||
Veranstaltung,
|
||
Veranstaltungsteilnehmer,
|
||
)
|