add medicine, medicinemix, medicinemixitem, medicalactionsrc, medicalactionsrcitem, device, material, doctorfee

This commit is contained in:
dpurbosakti
2025-08-28 13:12:50 +07:00
parent 03fb2858d1
commit b4cef16061
24 changed files with 971 additions and 40 deletions

No files matched your search

@@ -1,7 +1,8 @@
package clinical
type (
CheckupScopeCode string
CheckupScopeCode string
DoctorFeeTypeCode string
)
const (
@@ -9,4 +10,9 @@ const (
CSCMLab CheckupScopeCode = "mic-lab" // Microbacterial Laboratorium
CSCPLab CheckupScopeCode = "pa-lab" // Patology Anatomy Laboratorium
CSCRad CheckupScopeCode = "radiology" // Radiology
DFTCOut DoctorFeeTypeCode = "outpatient" // Rawat Jalan
DFTCInp DoctorFeeTypeCode = "inpatient" // Rawat Inap
DFTCEme DoctorFeeTypeCode = "emergency" // Darurat
DFTCReh DoctorFeeTypeCode = "medic-rehab" // Rehab Medik
)