Skip to content

Commit

Permalink
feat(patients): add hospital number to card
Browse files Browse the repository at this point in the history
This commit adds the patient's hospital number to their patient card as
requested by our clients.

Closes #1396.
  • Loading branch information
Jonathan Niles authored and jniles committed Mar 23, 2017
1 parent 84f7e61 commit c40c836
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions server/controllers/medical/reports/patient.receipt.handlebars
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}
</style>
<div class="row">

<h4 style="margin-bottom : 0px;"><strong>{{patient.enterprise_name}} - {{translate "PATIENT_REG.IDENTITY"}}</strong></h4>
<hr>

Expand All @@ -26,9 +26,9 @@
<span><u>{{translate "FORM.LABELS.TELEPHONE"}}</u> {{patient.telephone}}</span><br />
{{/if}}

<span><u>{{translate "FORM.LABELS.DEBTOR_GROUP"}}</u></span><br />
<span><u>{{translate "FORM.LABELS.DEBTOR_GROUP"}}</u></span><br />
<span>{{ patient.debtor_group_name }}</span>

{{#unless simplified}}
<!-- Information only shown on larger form identities -->
<br />
Expand All @@ -44,6 +44,7 @@
<div class="col-xs-5" style="text-align:right;">
<h2 style="margin-top : 0px"><strong>{{patient.reference}}</strong></h2>
<span>{{translate "TABLE.COLUMNS.REGISTERED_ON"}} {{date patient.registration_date }}</span><br />
<span><b>{{translate "FORM.LABELS.HOSPITAL_NO"}}:</b> {{patient.hospital_no}}</span><br />
</div>
</div>

Expand Down

0 comments on commit c40c836

Please sign in to comment.