Sha256: fd90969b8a00394f08abfb32dca6801b3024f137350c4d3b3462fcf6b0db8883
Contents?: true
Size: 1.19 KB
Versions: 28
Compression:
Stored size: 1.19 KB
Contents
# frozen_string_literal: true require_dependency "renalware/transplants" require "document/base" module Renalware module Transplants class DonorOperation < ApplicationRecord include Document::Base include PatientScope extend Enumerize belongs_to :patient, touch: true has_one :followup, class_name: "DonorFollowup", foreign_key: "operation_id" scope :ordered, -> { order(performed_on: :asc) } scope :reversed, -> { order(performed_on: :desc) } has_paper_trail class_name: "Renalware::Transplants::Version" has_document class_name: "Renalware::Transplants::DonorOperationDocument" enumerize :kidney_side, in: %i(left right both) enumerize :operating_surgeon, in: %i(consultant fellow_senior_registrar other) enumerize :anaesthetist, in: %i(consultant fellow_senior_registrar other) enumerize :nephrectomy_type, in: %i( open_transperitoneal open_loin_with_resection open_loin_without_resection open_extraperitoneal laparoscropic_intra laparoscropic_extra other) enumerize :donor_splenectomy_peri_or_post_operatively, in: %i(yes no unknown) validates :performed_on, presence: true end end end
Version data entries
28 entries across 28 versions & 1 rubygems