Sha256: c7827c697ef172ee5771a6d0de2822be40fe575f17c9c00d623a7fde1680f681

Contents?: true

Size: 789 Bytes

Versions: 20

Compression:

Stored size: 789 Bytes

Contents

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

20 entries across 20 versions & 1 rubygems

Version Path
renalware-core-2.0.8 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.7 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.5 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.4 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.3 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.2 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.1 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc13 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc11 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc10 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc9 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc8 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc7 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc6 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc5 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc4 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc3 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.rc1 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb
renalware-core-2.0.0.pre.beta12 app/models/renalware/pathology/requests/global_rule/transplant_date_within_weeks.rb