Sha256: b7ff4ef9ff4ba08d04f275b364862b2a2feef821d8a9dddb84538fb8ac807b9e

Contents?: true

Size: 820 Bytes

Versions: 93

Compression:

Stored size: 820 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

93 entries across 93 versions & 1 rubygems

Version Path
renalware-core-2.0.109 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.108 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.106 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.105 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.104 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.103 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.102 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.101 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.100 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.99 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.98 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.97 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.96 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.95 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.94 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.93 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.92 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.91 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.90 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.89 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb