Sha256: 8fac38cf4119be2d0ed519c17cd5b303249e0199e2bc18ba8fd63adb4844c049

Contents?: true

Size: 998 Bytes

Versions: 73

Compression:

Stored size: 998 Bytes

Contents

# frozen_string_literal: true

require_dependency "renalware/transplants"

module Renalware
  module Transplants
    class RegistrationStatus < ApplicationRecord
      include Accountable

      belongs_to :description, class_name: "RegistrationStatusDescription"
      belongs_to :registration, touch: true

      scope :ordered, -> { order(started_on: :asc, created_at: :asc) }
      scope :reversed, -> { order(started_on: :desc, created_at: :desc) }

      validates :description_id, presence: true
      validates :started_on, timeliness: { type: :date, allow_blank: false }
      validates :terminated_on, timeliness: { type: :date, allow_blank: true }

      validate :constraint_started_on_today_or_before, if: :started_on

      def terminated?
        terminated_on.present?
      end

      def constraint_started_on_today_or_before
        errors.add(:started_on, :invalid) if started_on > Time.zone.today
      end

      def to_s
        description&.to_s
      end
    end
  end
end

Version data entries

73 entries across 73 versions & 1 rubygems

Version Path
renalware-core-2.0.149 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.148 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.147 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.146 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.145 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.144 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.143 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.142 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.141 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.140 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.139 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.138 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.137 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.136 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.135 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.134 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.133 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.132 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.131 app/models/renalware/transplants/registration_status.rb
renalware-core-2.0.130 app/models/renalware/transplants/registration_status.rb