feat: Doorlooptijd Dashboard implementation (#137)#265
Draft
rubenvdlinde wants to merge 14 commits intodevelopmentfrom
Draft
feat: Doorlooptijd Dashboard implementation (#137)#265rubenvdlinde wants to merge 14 commits intodevelopmentfrom
rubenvdlinde wants to merge 14 commits intodevelopmentfrom
Conversation
Contributor
Quality Report — ConductionNL/procest @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ❌ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ❌ | ||||
| stylelint | ❌ | ||||
| composer | ✅ | ✅ 100/100 | |||
| npm | ❌ | ❌ | |||
| PHPUnit | ⏭️ | ||||
| Newman | ⏭️ | ||||
| Playwright | ⏭️ |
Quality workflow — 2026-04-20 21:28 UTC
Download the full PDF report from the workflow artifacts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #137
Summary
Implemented the doorlooptijd-dashboard specification, adding comprehensive processing time tracking and reporting capabilities to Procest. This includes SLA configuration management, bottleneck analysis, trend visualization, dashboard widgets, and export functionality. The implementation provides managers with actionable insights into case processing times without requiring external BI tools.
Spec Reference
openspec/changes/doorlooptijd-dashboard/design.mdChanges
lib/Service/DoorlooptijdService.php— Core service for calculating case processing times and SLA adherencelib/Service/SlaConfigurationService.php— SLA configuration management per zaaktypelib/Service/BottleneckAnalysisService.php— Process step duration analysislib/Service/TrendAnalysisService.php— Historical trend calculationlib/Service/ReportingService.php— Report generation with filteringlib/Service/ExportService.php— CSV/Excel export functionalitylib/Controller/DoorlooptijdController.php— API endpoints for analytics datalib/Controller/ReportingController.php— Report management endpointslib/Dashboard/SlaAdherenceWidget.php— Dashboard widget for SLA metricslib/Dashboard/AverageProcessingTimeWidget.php— Processing time KPI widgetlib/Dashboard/OverdueCountWidget.php— Overdue cases count widgetappinfo/routes.php— New API route registrationsjs/views/DoorlooptijdDashboard.vue— Main analytics dashboard viewjs/views/ReportingPage.vue— Management reporting interfacejs/router/index.js— Frontend route configurationlib/Settings/DoorlooptijdAdmin.php— Administrator settings pageTest Coverage
tests/Unit/Service/DoorlooptijdServiceTest.php— Service calculation teststests/Unit/Service/SlaConfigurationServiceTest.php— SLA config teststests/Unit/Service/BottleneckAnalysisServiceTest.php— Bottleneck analysis teststests/Unit/Controller/DoorlooptijdControllerTest.php— API endpoint teststests/Unit/Controller/ReportingControllerTest.php— Reporting endpoint tests