Sha256: 2a98a59d8529b0de6d8372009d1af95b909940dfc95466881c71f45dc9b9aae7

Contents?: true

Size: 604 Bytes

Versions: 7

Compression:

Stored size: 604 Bytes

Contents

# encoding: UTF-8
class HL7::Message::Segment::RF1 < HL7::Message::Segment
  weight 0 # should occur after the MSH segment
  add_field :referral_status
  add_field :referral_priority
  add_field :referral_type
  add_field :referral_disposition
  add_field :referral_category
  add_field :originating_referral_identifier
  add_field :effective_date do |value|
    convert_to_ts(value)
  end
  add_field :expiration_date do |value|
    convert_to_ts(value)
  end
  add_field :process_date do |value|
    convert_to_ts(value)
  end
  add_field :referral_reason
  add_field :external_referral_identifier
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ruby-hl7-1.3.3 lib/segments/rf1.rb
ruby-hl7-1.3.2 lib/segments/rf1.rb
ruby-hl7-1.3.1 lib/segments/rf1.rb
ruby-hl7-1.3.0 lib/segments/rf1.rb
ruby-hl7-1.2.3 lib/segments/rf1.rb
ruby-hl7-1.2.2 lib/segments/rf1.rb
ruby-hl7-1.2.1 lib/segments/rf1.rb