Merge branch 'dev' into fe-prescription-56
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,6 +1,9 @@
|
||||
export interface Division {
|
||||
id?: number
|
||||
code: string
|
||||
name: string
|
||||
parent_id?: number | null
|
||||
childrens?: Division[] | null
|
||||
}
|
||||
|
||||
export interface DivisionPosition {
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
export interface Installation {
|
||||
id?: number | null
|
||||
code: string
|
||||
name: string
|
||||
encounterClass_code: string
|
||||
encounterClass_code?: string | null
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
export interface Subspecialist {
|
||||
id?: number
|
||||
code: string
|
||||
name: string
|
||||
specialist_id: number | string
|
||||
|
||||
+1
-1
@@ -2,5 +2,5 @@ export interface Unit {
|
||||
id?: number
|
||||
code: string
|
||||
name: string
|
||||
installation?: string | number
|
||||
installation_id?: string | number
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user