Add insured phone to details of health care sheet
This commit is contained in:
parent
435eb3b9f2
commit
82f945120b
|
@ -855,4 +855,5 @@ $lang['health_care_sheets_history'] = "History of health care sheets";
|
||||||
$lang['invoice_id'] = "Invoice ID";
|
$lang['invoice_id'] = "Invoice ID";
|
||||||
$lang['generate_qr_code'] = "Generate QR code";
|
$lang['generate_qr_code'] = "Generate QR code";
|
||||||
$lang['display_qr_code'] = "Display QR code";
|
$lang['display_qr_code'] = "Display QR code";
|
||||||
|
$lang['insured_phone'] = "Insured phone";
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -865,5 +865,6 @@ $lang['invoices_history'] = "Historique des factures";
|
||||||
$lang['health_care_sheets_history'] = "Historique des feuilles de soins";
|
$lang['health_care_sheets_history'] = "Historique des feuilles de soins";
|
||||||
$lang['invoice_id'] = "ID de la facture";
|
$lang['invoice_id'] = "ID de la facture";
|
||||||
$lang['generate_qr_code'] = "Génerer le QR code";
|
$lang['generate_qr_code'] = "Génerer le QR code";
|
||||||
$lang['display_qr_code'] = "Afficher le QR code"
|
$lang['display_qr_code'] = "Afficher le QR code";
|
||||||
|
$lang['insured_phone'] = "Téléphone de l'assuré";
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -88,6 +88,10 @@
|
||||||
<td><?= $this->lang->line('insured_id'); ?></td>
|
<td><?= $this->lang->line('insured_id'); ?></td>
|
||||||
<td><strong><?= $health_care_sheet->insured_id ?></strong></td>
|
<td><strong><?= $health_care_sheet->insured_id ?></strong></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td><?= $this->lang->line('insured_phone'); ?></td>
|
||||||
|
<td><strong><?= $health_care_sheet->insured_phone ?></strong></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><?= $this->lang->line('patient_lastname'); ?></td>
|
<td><?= $this->lang->line('patient_lastname'); ?></td>
|
||||||
<td><strong><?= $health_care_sheet->patient_lastname ; ?></strong></td>
|
<td><strong><?= $health_care_sheet->patient_lastname ; ?></strong></td>
|
||||||
|
|
Loading…
Reference in New Issue