Sha256: c7be25a0c64aaa83834775c637a4a66886abb13c50f6236ad78ba688373114f1
Contents?: true
Size: 788 Bytes
Versions: 35
Compression:
Stored size: 788 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/hd" module Renalware module HD class PreferenceSet < ApplicationRecord include PatientScope include Accountable belongs_to :patient, touch: true belongs_to :hospital_unit, class_name: "Hospitals::Unit" belongs_to :schedule_definition, foreign_key: "schedule_definition_id" has_paper_trail class_name: "Renalware::HD::Version" validates :patient, presence: true validates :entered_on, timeliness: { type: :date, allow_blank: true } delegate :hospital_centre, to: :hospital_unit, allow_nil: true def preferred_schedule other_schedule || schedule_definition&.to_s end def self.policy_class BasePolicy end end end end
Version data entries
35 entries across 35 versions & 1 rubygems