Sha256: 3daf5e6a6c0ce3441331d06e4687135aa93c217b8b5307c3cf602fd6ca3f6945
Contents?: true
Size: 1.08 KB
Versions: 52
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true require "document/embedded" require "document/enum" module Renalware class PatientDocument < Document::Embedded attribute :interpreter_notes, String attribute :admin_notes, String attribute :special_needs_notes, String attribute :diabetes, DatedBooleanDiagnosis class Referral < Document::Embedded attribute :referring_physician_name, String attribute :referral_date, Date attribute :referral_type, String attribute :referral_notes, String end attribute :referral, Referral class Psychosocial < Document::Embedded attribute :housing, String attribute :social_network, String attribute :care_package, String attribute :other, String attribute :updated_at, Date end attribute :psychosocial, Psychosocial class History < Document::Embedded attribute :alcohol, Document::Enum, enums: %i(never rarely social heavy) attribute :smoking, Document::Enum, enums: %i(no ex yes) # RRSMOKING %i(never former current) end attribute :history, History end end
Version data entries
52 entries across 52 versions & 1 rubygems