Sha256: 92fcc399a634bd34bed0307a28c2d937460300034c163c2178032d563d7b5780
Contents?: true
Size: 694 Bytes
Versions: 28
Compression:
Stored size: 694 Bytes
Contents
require_dependency "renalware/clinical" module Renalware module Clinical class Patient < ActiveType::Record[Renalware::Patient] has_many :allergies # These statuses match NHS standards for the display of recorded allergy status. # Note that # - if no_known_allergies then patient.allergies must be empty # - if known_allergies then patient.allergies must be not be empty # - unavailable is not currently used enumerize :allergy_status, in: %i(unrecorded known_allergies no_known_allergies unavailable), default: "unrecorded" end end end
Version data entries
28 entries across 28 versions & 1 rubygems