48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
package organization
|
|
|
|
type (
|
|
UserPosisitionCode string
|
|
ItemGroupCode string
|
|
InfraGroupCode string
|
|
UnitTypeCode string
|
|
DoctorFeeTypeCode string
|
|
)
|
|
|
|
const (
|
|
UPCDoc UserPosisitionCode = "doctor" // Dokter
|
|
UPCNur UserPosisitionCode = "nurse" // Perawat
|
|
UPCNut UserPosisitionCode = "nutritionist" // Ahli gizi
|
|
UPCLab UserPosisitionCode = "laborant" // Laboran
|
|
UPCPha UserPosisitionCode = "pharmacy" // Farmasi
|
|
UPCPay UserPosisitionCode = "payment" // Pembayaran
|
|
UPCPav UserPosisitionCode = "payment-verificator" // Konfirmasi pembayaran
|
|
UPCMan UserPosisitionCode = "management" // Manajemen
|
|
UPCInt UserPosisitionCode = "specialist-intern" // PPDS
|
|
|
|
ITGCInfra ItemGroupCode = "infra"
|
|
ITGCMedicine ItemGroupCode = "medicine"
|
|
ITGCDevice ItemGroupCode = "device"
|
|
ITGCMaterial ItemGroupCode = "material"
|
|
ITGCEmpFee ItemGroupCode = "employee-fee"
|
|
ITGCDocFee ItemGroupCode = "doctor-fee"
|
|
|
|
IFGCBuilding InfraGroupCode = "building"
|
|
IFGCFloor InfraGroupCode = "floor"
|
|
IFGCRoom InfraGroupCode = "room"
|
|
IFGCChamber InfraGroupCode = "chamber"
|
|
IFGCBed InfraGroupCode = "bed"
|
|
IFGCWarehouse InfraGroupCode = "warehouse"
|
|
|
|
UTCReg UnitTypeCode = "reg" // Registrasi
|
|
UTCExa UnitTypeCode = "exa" // Pemeriksaan
|
|
UTCPay UnitTypeCode = "pay" // Pembayaran
|
|
UTCPha UnitTypeCode = "pha" // Farmasi
|
|
UTCLab UnitTypeCode = "lab" // Laboratorium
|
|
UTCRad UnitTypeCode = "rad" // Radiologi
|
|
|
|
DFTCOut DoctorFeeTypeCode = "outpatient" // Rawat Jalan
|
|
DFTCInp DoctorFeeTypeCode = "inpatient" // Rawat Inap
|
|
DFTCEme DoctorFeeTypeCode = "emergency" // Darurat
|
|
DFTCReh DoctorFeeTypeCode = "medic-rehab" // Rehab Medik
|
|
)
|