feature: Phase4 - Clinic two-step treatment UI
This commit is contained in:
6
frontend/src/types/treatment-catalog.ts
Normal file
6
frontend/src/types/treatment-catalog.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
export interface TreatmentCatalogEntry {
|
||||
id: string;
|
||||
code: string;
|
||||
labDependent: boolean;
|
||||
sortOrder: number;
|
||||
}
|
||||
@@ -136,6 +136,16 @@ export interface TreatmentDetailDraft {
|
||||
/** @deprecated Use TreatmentDetailDraft — kept for editor components until Phase 4 rename */
|
||||
export type TreatmentCaseDraft = TreatmentDetailDraft;
|
||||
|
||||
export interface LabCaseDraft {
|
||||
clientId: string;
|
||||
id?: string;
|
||||
destinationOrganizationId: string | null;
|
||||
labComment: string;
|
||||
detailClientIds: string[];
|
||||
sentAt?: string | null;
|
||||
sends?: LabCaseSendInfo[];
|
||||
}
|
||||
|
||||
export type SavedTreatmentDetailPayload = {
|
||||
clientId: string;
|
||||
id?: string;
|
||||
|
||||
Reference in New Issue
Block a user