feat/action-report: done

This commit is contained in:
2025-12-01 17:47:59 +07:00
parent ece6a0b7a5
commit 8306e1217e
15 changed files with 930 additions and 2 deletions
@@ -8,6 +8,7 @@ type (
InfraGroupCode string
UnitTypeCode string
DoctorFeeTypeCode string
ActionBillingCode string
)
const (
@@ -62,4 +63,8 @@ const (
DFTCInp DoctorFeeTypeCode = "inpatient" // Rawat Inap
DFTCEme DoctorFeeTypeCode = "emergency" // Darurat
DFTCReh DoctorFeeTypeCode = "medic-rehab" // Rehab Medik
ABCGeneral ActionBillingCode = "general"
ABCRegional ActionBillingCode = "regional"
ABCLocal ActionBillingCode = "local"
)