feat/page-cleaning: adjust add encounter

This commit is contained in:
Andrian Roshandy
2025-12-02 10:02:00 +07:00
parent d221203bd5
commit 88a2dc5aba
9 changed files with 779 additions and 224 deletions

No files matched your search

+5 -3
View File
@@ -1,5 +1,6 @@
import { type Base, genBase } from "./_base"
import { type Employee, genEmployee } from "./employee"
import type { Unit } from "./unit"
import type { Specialist } from "./specialist"
import type { Subspecialist } from "./subspecialist"
@@ -9,10 +10,11 @@ export interface Doctor extends Base {
ihs_number: string
sip_number: string
code?: string
unit_icode?: number
specialist_icode?: number
unit_code?: string
unit?: Unit
specialist_code?: string
specialist?: Specialist
subspecialist_icode?: number
subspecialist_code?: string
subspecialist?: Subspecialist
bpjs_code?: string
}