Sha256: 3af49f2175c975d22f8140f1a48bdc88bccd8a8d6321b622bab95c715fc63918

Contents?: true

Size: 1.29 KB

Versions: 11

Compression:

Stored size: 1.29 KB

Contents

  <insuranceProvider xmlns="urn:hl7-org:greencda:c32" id="<%=insurance_provider.id%>">
  <insuranceType code="<%== insurance_provider.type %>" codeSystem="2.16.840.1.113883.3.88.12.3221.5.2" />
  <%== render partial: "organization", locals: {organization: insurance_provider.payer, tag_name: payer} %>
  <% if insurance_provider.subscriber %>
    <subscriber>
      <%== render partial: 'person_attributes', locals: {person: insurance_provider.subscriber} %>
    </subscriber>
  <% end %>
  <% if insurance_provider.relationship %>
  <%== gc32_code_display insurance_provider, "attribute" => "relationship", "tag_name" => "relationshipToSubscriber" %>
  <% end %>
  <% insurance_provider.guarantors.each do |g| %>
  <guarantor>
    <%== gc32_interval(insurance_provider, "financialResponsibilityDateRange", :start_time, :end_time) %>
    <% if g.organization %>
      <%== render partial: 'organization', locals: {organization: g.organization}%>
    <% elsif g.person%>
      <person>
        <%== render partial: 'person_attributes', locals: {person: g.person} %>
      </person>
    <% end %>
  </guarantor>
  <% end %>
  <healthPlanName><%=insurance_provider.name%></healthPlanName>
  <% if insurance_provider.description%>
    <freeText><%= insurance_provider.description%></freeText>
  <% end %>
</insuranceProvider>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
health-data-standards-3.5.3 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.5.2 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.5.1 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.5.0 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.6 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.5 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.4 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.3 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.2 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.1 templates/gc32/_insurance_provider.gc32.erb
health-data-standards-3.4.0 templates/gc32/_insurance_provider.gc32.erb