Sha256: 12b25047049e210c8f26a69fc03130867d43a08d42791cf7c1fa223f26f03e47

Contents?: true

Size: 730 Bytes

Versions: 28

Compression:

Stored size: 730 Bytes

Contents

require_dependency "renalware/transplants"

module Renalware
  module Transplants
    class Patient < ActiveType::Record[Renalware::Patient]
      has_one :current_donor_stage, -> { current }, class_name: "DonorStage"

      def has_ever_been_a_donor?
        @has_ever_been_a_donor ||= begin
          donor_modality = "Renalware::Transplants::DonorModalityDescription"
          modality_descriptions.exists?(type: donor_modality)
        end
      end

      def has_ever_been_a_recipient?
        @has_ever_been_a_recipient ||= begin
          recipient_modality = "Renalware::Transplants::RecipientModalityDescription"
          modality_descriptions.exists?(type: recipient_modality)
        end
      end
    end
  end
end

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
renalware-core-2.0.8 app/models/renalware/transplants/patient.rb
renalware-core-2.0.7 app/models/renalware/transplants/patient.rb
renalware-core-2.0.5 app/models/renalware/transplants/patient.rb
renalware-core-2.0.4 app/models/renalware/transplants/patient.rb
renalware-core-2.0.3 app/models/renalware/transplants/patient.rb
renalware-core-2.0.2 app/models/renalware/transplants/patient.rb
renalware-core-2.0.1 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc13 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc11 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc10 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc9 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc8 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc7 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc6 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc5 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc4 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc3 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.rc1 app/models/renalware/transplants/patient.rb
renalware-core-2.0.0.pre.beta12 app/models/renalware/transplants/patient.rb