Sha256: 50f6962e36002a7e9d2e12c733f0e0f2f6d2e47fce00b411904314191c1b0986
Contents?: true
Size: 585 Bytes
Versions: 37
Compression:
Stored size: 585 Bytes
Contents
# frozen_string_literal: true module Renalware module UKRDC module Outgoing module Rendering class ClinicVisitObservation < Rendering::Base pattr_initialize [:visit!, :method!, :i18n_key] def xml measurement = visit.public_send(method) return if measurement.blank? || measurement.to_f.zero? Observation.new( observed_at: visit.datetime, measurement: measurement, i18n_key: i18n_key || method ).xml end end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems