Sha256: ef609f3e25054b067267ea910493e07c1f524317f00eb2d621ba2fe0164f2580
Contents?: true
Size: 517 Bytes
Versions: 103
Compression:
Stored size: 517 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/pd" module Renalware module PD class Patient < ActiveType::Record[Renalware::Patient] has_many :pet_adequacy_results, dependent: :restrict_with_exception def treated? modality_descriptions.exists?(type: "Renalware::PD::ModalityDescription") end def has_ever_been_on_pd? @has_ever_been_on_pd ||= modality_descriptions.exists?(type: "Renalware::PD::ModalityDescription") end end end end
Version data entries
103 entries across 103 versions & 1 rubygems