Sha256: 99bcd2991adcb6207aea7780e862333f87419eb7438ad4cf31d0889abd1d3b97

Contents?: true

Size: 819 Bytes

Versions: 56

Compression:

Stored size: 819 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/pathology/requests"

module Renalware
  module Pathology
    module Requests
      class GlobalRule
        class TransplantDateWithinWeeks < GlobalRule
          validates :param_comparison_value, presence: true

          def observation_required_for_patient?(patient, date)
            most_recent_operation =
              Transplants::RecipientOperation.for_patient(patient).most_recent
            return false if most_recent_operation.blank?

            latest_date_possible = date - param_comparison_value.to_i.weeks

            most_recent_operation.performed_on > latest_date_possible
          end

          def to_s
            "transplant date within #{param_comparison_value} weeks ago"
          end
        end
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
renalware-core-2.1.1 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.1.0 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.167 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.166 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.165 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.164 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.163 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.162 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.161 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.160 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.159 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.158 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.157 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.156 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.155 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.153 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.152 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.151 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.149 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.148 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb