Merge branch 'dev' into fe-prescription-56

This commit is contained in:
Andrian Roshandy
2025-10-07 03:10:19 +07:00
71 changed files with 963 additions and 3006 deletions
+7
View File
@@ -14,6 +14,13 @@ export interface PaginationMeta {
source: string
}
export interface TreeItem {
value: string
label: string
hasChildren: boolean
children?: TreeItem[]
}
export interface Base {
name: string
code: string
+3
View File
@@ -1,6 +1,9 @@
export interface Division {
id?: number
code: string
name: string
parent_id?: number | null
childrens?: Division[] | null
}
export interface DivisionPosition {
+2 -1
View File
@@ -1,5 +1,6 @@
export interface Installation {
id?: number | null
code: string
name: string
encounterClass_code: string
encounterClass_code?: string | null
}
+1
View File
@@ -1,4 +1,5 @@
export interface Subspecialist {
id?: number
code: string
name: string
specialist_id: number | string
+1 -1
View File
@@ -2,5 +2,5 @@ export interface Unit {
id?: number
code: string
name: string
installation?: string | number
installation_id?: string | number
}