Sha256: 4326229f6b7d77615fbbd676a49c50b86a77c0eeb61f594125ab8590525dea2f

Contents?: true

Size: 1.16 KB

Versions: 28

Compression:

Stored size: 1.16 KB

Contents

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

Version Path
renalware-core-2.0.0.pre.beta11 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta10 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta9 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta8 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta7 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta6 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta5 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.0.pre.beta4 app/models/renalware/transplants/donor_operation.rb