Sha256: bf33de439cf39a87df33873885ba01c6bbf0155b832f68d686cd2082bc210155
Contents?: true
Size: 651 Bytes
Versions: 62
Compression:
Stored size: 651 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/pathology" module Renalware module Pathology class ObservationDescription < ApplicationRecord has_many :observations, class_name: "Pathology::Observation", inverse_of: :description belongs_to :measurement_unit scope :in_display_order, lambda { where("display_group is not null and display_order is not null") .order([:display_group, :display_order]) } def self.for(codes) ObservationDescriptionsByCodeQuery.new(codes: codes).call end def to_s code end end end end
Version data entries
62 entries across 62 versions & 1 rubygems