improvement: UI/UX improved for v1 standalone treatments/cases feature.

This commit is contained in:
2026-08-19 16:07:32 +03:30
parent 8bfa8c88fe
commit 96f698be98
24 changed files with 320 additions and 121 deletions

View File

@@ -196,6 +196,7 @@ export interface ListLabTasksParams {
overdue?: boolean;
unassignedOnly?: boolean;
prosthesisTypeCode?: string;
origin?: 'CLINIC_DISPATCH' | 'LAB_INTERNAL';
sentFrom?: string;
sentTo?: string;
stepCompleted?: string;
@@ -217,6 +218,7 @@ export interface LocateTaskPageParams {
overdue?: boolean;
unassignedOnly?: boolean;
prosthesisTypeCode?: string;
origin?: 'CLINIC_DISPATCH' | 'LAB_INTERNAL';
stepCompleted?: string;
sortBy?: TaskSortField;
sortDir?: 'asc' | 'desc';
@@ -250,6 +252,7 @@ export interface LabTaskListItem {
lastStatusChangedBy: LabTaskUser | null;
createdAt: string;
caseSentAt: string | null;
origin?: 'CLINIC_DISPATCH' | 'LAB_INTERNAL';
clinic: { id: string; name: string };
patient: { id: string; firstName: string; lastName: string };
}