Sha256: 3a773e0dc6c5aac196cc67d268b6f476521af8a1d613507bcb6e27662dca866e
Contents?: true
Size: 740 Bytes
Versions: 20
Compression:
Stored size: 740 Bytes
Contents
require_dependency "renalware/pathology/requests" module Renalware module Pathology module Requests class GlobalRule class TransplantRegistrationStatus < GlobalRule validates :param_comparison_value, presence: true def observation_required_for_patient?(patient, _date) registration = Transplants::Registration.for_patient(patient).first return false if registration.blank? registration_status = registration.current_status registration_status.description.code == param_comparison_value end def to_s "transplant registration status is #{@param_comparison_value}" end end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems