55 lines
2.2 KiB
Go
55 lines
2.2 KiB
Go
package organization
|
|
|
|
type (
|
|
UserPosisitionCode string
|
|
ItemGroupCode string
|
|
InfraGroupCode string
|
|
UnitTypeCode string
|
|
DoctorFeeTypeCode string
|
|
)
|
|
|
|
const (
|
|
UPCReg UserPosisitionCode = "registration" // Admisi/Pendaftaran
|
|
UPCNur UserPosisitionCode = "nurse" // Perawat
|
|
UPCDoc UserPosisitionCode = "doctor" // Dokter
|
|
UPCNut UserPosisitionCode = "nutritionist" // Ahli gizi
|
|
UPCMwi UserPosisitionCode = "mid-wife" // Bidan
|
|
UPCLab UserPosisitionCode = "laborant" // Laboran
|
|
UPCPha UserPosisitionCode = "pharmacy" // Farmasi
|
|
UPCPay UserPosisitionCode = "payment" // Pembayaran
|
|
UPCHur UserPosisitionCode = "human-resource" // Sumber Daya Manusia
|
|
UPCGea UserPosisitionCode = "general-affair" // Bagian Umum
|
|
UPCInt UserPosisitionCode = "specialist-intern" // PPDS
|
|
UPCMan UserPosisitionCode = "management" // Manajemen
|
|
|
|
ITGCInfra ItemGroupCode = "infra"
|
|
ITGCMedicine ItemGroupCode = "medicine"
|
|
ITGCDevice ItemGroupCode = "device"
|
|
ITGCMaterial ItemGroupCode = "material"
|
|
ITGCMCU ItemGroupCode = "mcu"
|
|
ITGCMCUSub ItemGroupCode = "mcuSub"
|
|
ITGCEmpFee ItemGroupCode = "employee-fee"
|
|
ITGCDocFee ItemGroupCode = "doctor-fee"
|
|
|
|
IFGCBuilding InfraGroupCode = "building" // Bangunan
|
|
IFGCFloor InfraGroupCode = "floor" // Lantai
|
|
IFGCRoom InfraGroupCode = "room" // Ruang
|
|
IFGCChamber InfraGroupCode = "chamber" // Kamar
|
|
IFGCBed InfraGroupCode = "bed" // Ranjang
|
|
IFGCWarehouse InfraGroupCode = "warehouse" // Gudang/Depo
|
|
IFGCCounter InfraGroupCode = "counter" // Counter
|
|
IFGCPubScreen InfraGroupCode = "public-screen" // Public Screen
|
|
|
|
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
|
|
)
|