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

Version Path
renalware-core-2.0.39 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.38 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.37 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.36 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.35 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.34 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.33 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.32 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.31 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.30 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.28 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.27 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.26 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.25 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.24 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.23 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.22 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.21 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.20 app/models/renalware/transplants/donor_operation.rb
renalware-core-2.0.18 app/models/renalware/transplants/donor_operation.rb