Änderungen:
- @billing-module webpack alias wieder hinzugefügt
- Assets aus Billing-Modul Repository nach vendor/ kopiert
- Frontend baut jetzt erfolgreich ohne Warnungen
Hintergrund:
Nach dem Entfernen des Billing-Moduls wurde der Alias gelöscht.
Bei der Neu-Installation muss dieser wieder vorhanden sein, damit
die dynamischen Imports in router.js und Dashboard.vue funktionieren.
Assets-Synchronisierung:
Die Frontend-Assets des Billing-Moduls müssen manuell von
/Users/olli/Git/__privat/mycrm-billing-module/assets nach
vendor/mycrm/billing-module/assets kopiert werden, da Composer
nur PHP-Code automatisch synchronisiert.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Entfernt '@billing-module' Alias aus webpack.config.js, da das
Billing-Modul vollständig aus dem Projekt entfernt wurde.
Build läuft weiterhin erfolgreich. Die try-catch Blöcke in router.js
und Dashboard.vue fangen fehlende Module elegant ab.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
BREAKING CHANGE: All billing-related frontend code moved to billing module
Changes:
- Remove billing Vue components from core (InvoiceForm, InvoiceManagement, etc.)
- Remove billing config from core (billing_module.yaml)
- Update router.js to dynamically load billing routes from module
- Update Dashboard.vue to dynamically load InvoicesDashboardWidget
- Add webpack alias '@billing-module' pointing to vendor/mycrm/billing-module
- Billing module is now fully self-contained
The billing module now exports:
- routes.js: Route definitions for /billing/* paths
- components.js: Reusable components (InvoicesDashboardWidget)
- index.js: Main module exports
Frontend assets are loaded via '@billing-module' alias in webpack.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Created Document entity with properties for file management, including filename, originalFilename, mimeType, size, uploadedAt, uploadedBy, relatedEntity, relatedEntityId, and description.
- Implemented DocumentRepository for querying documents by related entity and user.
- Added GitRepository entity with properties for managing Git repositories, including URL, localPath, branch, provider, accessToken, project, lastSync, name, description, createdAt, and updatedAt.
- Implemented GitRepositoryRepository for querying repositories by project.
- Developed GitHubService for interacting with GitHub API, including methods for fetching commits, contributions, branches, and repository info.
- Developed GitService for local Git repository interactions, including methods for fetching commits, contributions, branches, and repository info.
- Developed GiteaService for interacting with Gitea API, including methods for fetching commits, contributions, branches, repository info, and testing connection.