improvement: all demo bugs fixed. give me more baby.
This commit is contained in:
@@ -38,7 +38,6 @@ export interface LabCaseTask {
|
||||
stepOrder: number;
|
||||
stepLabel: string;
|
||||
status: LabTaskStatus;
|
||||
isImportant: boolean;
|
||||
createdAt: string;
|
||||
lastStatusChangedAt: string | null;
|
||||
lastStatusChangedBy: LabTaskUser | null;
|
||||
@@ -77,6 +76,7 @@ export interface LabCaseAttachmentMeta {
|
||||
export interface LabCaseDetail {
|
||||
id: string;
|
||||
sentAt: string | null;
|
||||
isImportant: boolean;
|
||||
clinic: { id: string; name: string };
|
||||
patient: {
|
||||
id: string;
|
||||
@@ -133,7 +133,14 @@ export interface PaginatedLabCases {
|
||||
};
|
||||
}
|
||||
|
||||
export type TaskSortField = 'date' | 'status' | 'clinic' | 'patient' | 'important';
|
||||
export type TaskSortField =
|
||||
| 'date'
|
||||
| 'status'
|
||||
| 'clinic'
|
||||
| 'patient'
|
||||
| 'important'
|
||||
| 'prosthesis'
|
||||
| 'taskType';
|
||||
|
||||
export interface ListLabTasksParams {
|
||||
q?: string;
|
||||
|
||||
Reference in New Issue
Block a user