Sha256: d3a5ef577563f83c93e70ef2d5d5741ee017f16e380a37b9018800051f4f49c6
Contents?: true
Size: 526 Bytes
Versions: 114
Compression:
Stored size: 526 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/letters" module Renalware module Letters class PrimaryCarePhysician < ActiveType::Record[Renalware::Patients::PrimaryCarePhysician] has_many :patients, dependent: :restrict_with_exception has_many :letters, through: :patients def cc_on_letter?(letter) return false unless letter.patient.assigned_to_primary_care_physician?(self) letter.main_recipient.patient? || letter.main_recipient.contact? end end end end
Version data entries
114 entries across 114 versions & 1 rubygems