diff --git a/app/locales/en/translations.js b/app/locales/en/translations.js index e5987017c5..4d5825b3ba 100644 --- a/app/locales/en/translations.js +++ b/app/locales/en/translations.js @@ -888,6 +888,32 @@ export default { discount_percentage: 'Discount Percentage' } }, + print: { + invoice: { + labels: { + patient_name: 'NAME OF PATIENT:', + patient_id: 'PATIENT #:', + patient_age: 'AGE:', + patient_address: 'ADDRESS:', + date_admitted: 'ADMITTED:', + date_discharged: 'DISCHARGE:', + discharge_notes: 'Discharge Notes:', + remarks: 'Remarks:', + billed_by: 'Billed by:', + billed_date: 'Bill Date:', + spacer: '__________________________________________' + }, + messages: { + where_conducted: 'were deducted during my confinement' + }, + titles: { + patient_member: 'Patient-Member', + rel_contact: 'Relationship/Contact no.', + patients: 'PATIENT\'S', + billing_statement: 'BILLING STATEMENT' + } + } + }, procedures: { titles: { add_charge_item: 'Add Charge Item', diff --git a/app/print/invoice/template.hbs b/app/print/invoice/template.hbs index b0b142af86..be2bc80206 100644 --- a/app/print/invoice/template.hbs +++ b/app/print/invoice/template.hbs @@ -7,48 +7,48 @@

J.P. Laurel Ave. corner Banawe St. Brgy Aquino Davao City, Philippines

Telephone: (082) 300-5345 Email: info@tebowcure.org

- PATIENT'S + {{t "print.invoice.titles.patients"}}
- BILLING STATEMENT + {{t "print.invoice.titles.billing_statement"}}
- +
- NAME OF PATIENT: {{model.patient.displayName}} + {{t "print.invoice.labels.patient_name"}} {{model.patient.displayName}} - PATIENT #:{{model.patient.displayPatientId}} + {{t "print.invoice.labels.patient_name"}} {{model.patient.displayPatientId}}
- AGE: {{model.patient.age}} + {{t "print.invoice.labels.patient_age"}} {{model.patient.age}} - ADMITTED: {{date-format model.visit.startDate}} + {{t "print.invoice.labels.date_admitted"}}{{date-format model.visit.startDate}}
DISCHARGE: {{date-format model.visit.endDate}}{{t "print.invoice.labels.date_discharged"}}{{date-format model.visit.endDate}}
- ADDRESS: {{model.patient.displayAddress}} + {{t "print.invoice.labels.patient_address"}} {{model.patient.displayAddress}}
- - - - - - + + + + + + {{#each model.lineItemsByCategory as |categoryGroup|}} @@ -77,7 +77,7 @@ {{/each}} - + @@ -86,7 +86,7 @@ {{/each}} - + @@ -94,13 +94,13 @@ - + - + @@ -110,41 +110,41 @@ {{#if model.visit.dischargeInfo}} {{/if}} {{#if model.remarks}} {{/if}} - + - - + + - - + + - + - +
DescriptionActual ChargesDiscountPhilHealthHMO/COMExcess{{t "labels.description"}}{{t "billing.labels.actual_charges"}}{{t "labels.discount"}}{{t "billing.labels.phil_health"}}{{t "billing.labels.hmo_com"}}{{t "labels.excess"}}
Total {{categoryGroup.category}}{{t 'labels.total'}} {{categoryGroup.category}} {{number-format categoryGroup.total}} {{number-format categoryGroup.discount}} {{number-format categoryGroup.nationalInsurance}}
Total{{t 'labels.total'}} {{number-format model.total}} {{number-format model.discount}} {{number-format model.nationalInsurance}}{{number-format model.amountOwed}}
Payments/Deposits{{t 'billing.labels.payments_deposits'}} -{{number-format model.paidTotal}}
Grand Total{{t 'labels.grand_total'}} {{number-format model.remainingBalance}}
- Discharge Notes: {{model.visit.dischargeInfo}} + {{t 'print.invoice.labels.discharge_notes'}} {{model.visit.dischargeInfo}}
- Remarks: {{model.remarks}} + {{t 'print.invoice.labels.remarks'}} {{model.remarks}}
were deducted during my confinement{{t 'print.invoice.messages.where_conducted'}}
Billed by: {{model.modifiedBy}}__________________________________________{{t 'print.invoice.labels.billed_by'}} {{model.modifiedBy}}{{t 'print.invoice.labels.spacer'}}
Bill Date: {{date-format model.billDate}}Patient-Member{{t 'print.invoice.labels.billed_date'}} {{date-format model.billDate}}{{t 'print.titles.titles.patient_member'}}
__________________________________________{{t 'print.invoice.labels.spacer'}}
Certified Correct by: Leron L. Lehman- Executive DirectorRelationship/Contact no.{{t 'print.titles.titles.rel_contact'}}
{{/print-this}}