Sha256: 639bffbb45058027b144d578fe6d95be19fccf603474b0da1f929e19f09e0b30

Contents?: true

Size: 746 Bytes

Versions: 8

Compression:

Stored size: 746 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 unless registration.present?

            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

8 entries across 8 versions & 1 rubygems

Version Path
renalware-core-2.0.0.pre.beta11 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta10 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta9 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta8 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta7 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb
renalware-core-2.0.0.pre.beta4 app/models/renalware/pathology/requests/global_rule/transplant_registration_status.rb