Sha256: 0cdb4718d7184d8d582b0770dad03f201e2b93960912c59ac56e3fc074ddf1d3
Contents?: true
Size: 1.08 KB
Versions: 149
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true require_dependency "renalware/pd" module Renalware module PD class ExitSiteInfection < ApplicationRecord include PatientScope extend Enumerize belongs_to :patient, class_name: "Renalware::Patient", touch: true # clinical_presentation serializes to a pg array e.g. {pus,swabbed,tunnel_infection} enumerize :clinical_presentation, in: [:pain, :redness, :swelling, :pus, :swabbed, :tunnel_infection], multiple: true has_many :prescriptions, as: :treatable, class_name: "Renalware::Medications::Prescription" has_many :medication_routes, through: :prescriptions has_many :patients, through: :prescriptions, as: :treatable has_many :infection_organisms, as: :infectable has_many :organism_codes, -> { uniq }, through: :infection_organisms, as: :infectable validates :patient, presence: true validates :diagnosis_date, presence: true scope :ordered, -> { order(diagnosis_date: :desc) } def self.policy_class BasePolicy end end end end
Version data entries
149 entries across 149 versions & 1 rubygems