feat: Case Management - Filters, Search, Custom Properties, and Documents Checklist (#180)#266
Draft
rubenvdlinde wants to merge 11 commits intodevelopmentfrom
Draft
feat: Case Management - Filters, Search, Custom Properties, and Documents Checklist (#180)#266rubenvdlinde wants to merge 11 commits intodevelopmentfrom
rubenvdlinde wants to merge 11 commits intodevelopmentfrom
Conversation
…ustom properties and documents panels (#180)
Contributor
Quality Report — ConductionNL/procest @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ❌ | ||||
| phpcs | ❌ | ||||
| phpmd | ❌ | ||||
| psalm | ❌ | ||||
| phpstan | ❌ | ||||
| phpmetrics | ❌ | ||||
| eslint | ❌ | ||||
| stylelint | ❌ | ||||
| composer | ❌ | ❌ | |||
| npm | ❌ | ❌ | |||
| PHPUnit | ❌ | ||||
| Newman | ❌ | ||||
| Playwright | ❌ |
Quality workflow — 2026-04-20 21:41 UTC
Download the full PDF report from the workflow artifacts.
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:43 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 #180
Summary
Implemented case management features focused on user experience enhancements:
These features improve case management workflow by providing better filtering, search, and visibility into custom properties and required documents.
Spec Reference
openspec/changes/case-management/design.mdChanges
src/views/cases/CaseList.vue— Added filter controls for priority, handler, and overdue status; added client-side search across title, description, and identifier; added filter group UI with clear filters buttonsrc/views/cases/CaseDetail.vue— Imported and integrated CustomPropertiesPanel and DocumentChecklist components; added two new detail cards to display case properties and required documentssrc/utils/caseValidation.js— EnhancedgetCaseTypeUnusableReason()with detailed error messages including days until/since validity window boundaries and administrative guidanceTest Coverage
All Vue components follow existing patterns in the codebase:
Implementation Notes