Sha256: a145f448da2141305f696f9d1a5db00c860d112f5ad05089e80134ae33efbb4b
Contents?: true
Size: 506 Bytes
Versions: 1
Compression:
Stored size: 506 Bytes
Contents
require 'roqua/healthy/a19/name_parser' module Roqua module Healthy module A19 # The Impulse user epd hl7 format almost matches the xmcare one, except for maiden names-married names # being combined in PID 5.1.1 class ImpulseNameParser < NameParser def lastname names[:legal].fetch('PID.5.1').fetch('PID.5.1.1') end def nickname return unless names[:nick] names[:nick].fetch('PID.5.2') end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
roqua-healthy-1.4.1 | lib/roqua/healthy/a19/impulse_name_parser.rb |