-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(patients): link to patient vouchers
This commit embeds an additional link in the patient registry to show the patient's vouchers. This compliments the original two links already shown of the payments and invoices. Closes #1954
- Loading branch information
Showing
10 changed files
with
147 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{"PATIENT_REGISTRY":{"CARD":"Card", | ||
"DAY":"day", | ||
"DAYS":"days", | ||
"INVOICES":"View Invoices", | ||
"INVOICE": "Invoice", | ||
"MONTH":"month", | ||
"MONTHS":"months", | ||
"PAYMENTS":"View Cash Payments", | ||
"YEAR_OLD":"year old", | ||
"YEARS_OLD":"years old", | ||
"TITLE":"Patients", | ||
"RECORD":"Record"}} | ||
{ | ||
"PATIENT_REGISTRY":{ | ||
"CARD":"Card", | ||
"DAY":"day", | ||
"DAYS":"days", | ||
"INVOICES":"View Invoices", | ||
"INVOICE": "Invoice", | ||
"VOUCHERS" : "View Vouchers", | ||
"MONTH":"month", | ||
"MONTHS":"months", | ||
"PAYMENTS":"View Cash Payments", | ||
"YEAR_OLD":"year old", | ||
"YEARS_OLD":"years old", | ||
"TITLE":"Patients", | ||
"RECORD":"Record" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,70 @@ | ||
{"VOUCHERS":{"COMPLEX":{"ADD_ITEMS":"Add item(s)", | ||
"CASH_PAYMENT":"Cash Payment", | ||
"CREATE_SUCCESS":"Successfully posted", | ||
"CREATE_ERROR":"An error occurred when post", | ||
"CREDITOR":"Creditor (C)", | ||
"DEBTOR":"Debtor (D)", | ||
"DEB_CRED":"Debtor/Creditor", | ||
"DESCRIPTION":"This module allows you to make advanced journal transactions manually", | ||
"ENTITY":"Entity (Debtor/Creditor)", | ||
"ERROR_ACCOUNT":"Selected accounts are invalid", | ||
"ERROR_AMOUNT":"Amount's values are invalid", | ||
"ERROR_TOTALS":"The totals are not balanced", | ||
"ERROR_PRECISION":"The amounts entered cannot have more than 4 decimal places in precision", | ||
"INVALID_VALUES":"There are invalid values detected", | ||
"PATIENT_INVOICE":"Patient Invoice", | ||
"REFERENCE":"Reference", | ||
"ROWS":"Row(s)", | ||
"SELECT_DOCUMENT_TYPE":"Please select the document type", | ||
"TITLE":"Advanced Journal Vouchers", | ||
"VALID_TOTALS":"Transactions are valid (balanced transaction)", | ||
"VOUCHER":"Voucher"}, | ||
"TYPES":{"SUPPORT_PAYMENT_DESCRIPTION":"Debt transfer from {{ patientName }} ({{ patientReference}}) for invoice {{ invoiceReference }}."}, | ||
"GLOBAL":{"CASHFLOW_OPTION":"Cashflow Option", | ||
"TRANSFER_DESCRIPTION": "Transfer: From {{ fromAccount }} to {{ toAccount }} for {{ amount }} {{ symbol }}", | ||
"CONVENTION_INVOICES":"Convention - Invoices payment", | ||
"SUPPORT_FORM":"Patients Support - Form", | ||
"SUPPORT_TEXT":"When the above two fields are filled in, we will look for open debts for the patient to assign to the \"Support Patient\" Account.", | ||
"IMPORT_TRANSACTION":"Import transactions", | ||
"GENERIC_EXPENSE":"Generic Expense", | ||
"GENERIC_INCOME":"Generic Income", | ||
"ORIGIN_ACCOUNT":"Provenance Account", | ||
"DESTINATION_ACCOUNT":"Destination Account", | ||
"TRANSFER_ACCOUNT":"Transfer Account", | ||
"CASH_TRANSFER":"Cash Transfer", | ||
"REPORT":"Voucher Report", | ||
"TITLE":"Voucher", | ||
"TRANSFER_TYPE_INFO":"Transaction Type in case we have either incomes or expenses", | ||
"USE_FINANCIAL_ACCOUNT":"Use of cashes or banks accounts in this transaction", | ||
"RECEIPT":{"SUCCESS":"Voucher Payment recorded successfully."}, | ||
"ERROR_SAME_ACCOUNT":"You cannot use the same account twice to in this transaction. Please select two different accounts."}, | ||
"SIMPLE":{"CASH_PAYMENT":"Client Payment", | ||
"CASH_RETURN":"Cash Return (Payback)", | ||
"CONVENTION_PAYMENT":"Convention Payment", | ||
"CREDIT_NOTE":"Credit Note", | ||
"EXPENSE":"Expenses", | ||
"INCOME":"Incomes", | ||
"INVOICING":"Invoicing", | ||
"SALARY_PAYMENT":"Salary Payment", | ||
"GENERIC_EXPENSE":"Other Expenses", | ||
"GENERIC_INCOME":"Other Incomes", | ||
"PURCHASES":"Purchases", | ||
"SUPPORT_INCOME":"Support Incomes", | ||
"TITLE":"Simple Voucher", | ||
"TRANSFER":"Money Transfer", | ||
"TRANSFER_PATIENT_INVOICE_AMOUNT":"Patient Invoice Debt Transfer"}, | ||
"REPORT":"Report"}} | ||
{ | ||
"VOUCHERS" : { | ||
"COMPLEX":{ | ||
"ADD_ITEMS":"Add item(s)", | ||
"CASH_PAYMENT":"Cash Payment", | ||
"CREATE_SUCCESS":"Successfully posted", | ||
"CREATE_ERROR":"An error occurred when post", | ||
"CREDITOR":"Creditor (C)", | ||
"DEBTOR":"Debtor (D)", | ||
"DEB_CRED":"Debtor/Creditor", | ||
"DESCRIPTION":"This module allows you to make advanced journal transactions manually", | ||
"ENTITY":"Entity (Debtor/Creditor)", | ||
"ERROR_ACCOUNT":"Selected accounts are invalid", | ||
"ERROR_AMOUNT":"Amount's values are invalid", | ||
"ERROR_TOTALS":"The totals are not balanced", | ||
"ERROR_PRECISION":"The amounts entered cannot have more than 4 decimal places in precision", | ||
"INVALID_VALUES":"There are invalid values detected", | ||
"PATIENT_INVOICE":"Patient Invoice", | ||
"REFERENCE":"Reference", | ||
"ROWS":"Row(s)", | ||
"SELECT_DOCUMENT_TYPE":"Please select the document type", | ||
"TITLE":"Advanced Journal Vouchers", | ||
"VALID_TOTALS":"Transactions are valid (balanced transaction)", | ||
"VOUCHER":"Voucher" | ||
}, | ||
"TYPES":{ | ||
"SUPPORT_PAYMENT_DESCRIPTION":"Debt transfer from {{ patientName }} ({{ patientReference}}) for invoice {{ invoiceReference }}." | ||
}, | ||
"GLOBAL":{ | ||
"CASHFLOW_OPTION":"Cashflow Option", | ||
"TRANSFER_DESCRIPTION": "Transfer: From {{ fromAccount }} to {{ toAccount }} for {{ amount }} {{ symbol }}", | ||
"CONVENTION_INVOICES":"Convention - Invoices payment", | ||
"SUPPORT_FORM":"Patients Support - Form", | ||
"SUPPORT_TEXT":"When the above two fields are filled in, we will look for open debts for the patient to assign to the \"Support Patient\" Account.", | ||
"IMPORT_TRANSACTION":"Import transactions", | ||
"GENERIC_EXPENSE":"Generic Expense", | ||
"GENERIC_INCOME":"Generic Income", | ||
"ORIGIN_ACCOUNT":"Provenance Account", | ||
"DESTINATION_ACCOUNT":"Destination Account", | ||
"TRANSFER_ACCOUNT":"Transfer Account", | ||
"CASH_TRANSFER":"Cash Transfer", | ||
"REPORT":"Voucher Report", | ||
"TITLE":"Voucher", | ||
"TRANSFER_TYPE_INFO":"Transaction Type in case we have either incomes or expenses", | ||
"USE_FINANCIAL_ACCOUNT":"Use of cashes or banks accounts in this transaction", | ||
"RECEIPT":{ | ||
"SUCCESS":"Voucher Payment recorded successfully." | ||
}, | ||
"ERROR_SAME_ACCOUNT":"You cannot use the same account twice to in this transaction. Please select two different accounts." | ||
}, | ||
"SIMPLE":{ | ||
"CASH_PAYMENT":"Client Payment", | ||
"CASH_RETURN":"Cash Return (Payback)", | ||
"CONVENTION_PAYMENT":"Convention Payment", | ||
"CREDIT_NOTE":"Credit Note", | ||
"EXPENSE":"Expenses", | ||
"INCOME":"Incomes", | ||
"INVOICING":"Invoicing", | ||
"SALARY_PAYMENT":"Salary Payment", | ||
"GENERIC_EXPENSE":"Other Expenses", | ||
"GENERIC_INCOME":"Other Incomes", | ||
"PURCHASES":"Purchases", | ||
"SUPPORT_INCOME":"Support Incomes", | ||
"TITLE":"Simple Voucher", | ||
"TRANSFER":"Money Transfer", | ||
"TRANSFER_PATIENT_INVOICE_AMOUNT":"Patient Invoice Debt Transfer" | ||
}, | ||
"REPORT":"Report" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,17 @@ | ||
{"PATIENT_REGISTRY":{"CARD":"Carte", | ||
"DAY":"jour", | ||
"DAYS":"jours", | ||
"INVOICES":"Les factures", | ||
"INVOICE":"La facture", | ||
"MONTH":"mois", | ||
"MONTHS":"mois", | ||
"PAYMENTS":"Les paiements", | ||
"RECORD":"Enregistrement", | ||
"YEAR_OLD":"an", | ||
"YEARS_OLD":"ans", | ||
"TITLE":"Registre des patients"}} | ||
{ | ||
"PATIENT_REGISTRY":{ | ||
"CARD":"Carte", | ||
"DAY":"jour", | ||
"DAYS":"jours", | ||
"INVOICES":"Les Factures", | ||
"VOUCHERS":"Les Bordereaux", | ||
"INVOICE":"La facture", | ||
"MONTH":"mois", | ||
"MONTHS":"mois", | ||
"PAYMENTS":"Les Paiements", | ||
"RECORD":"Enregistrement", | ||
"YEAR_OLD":"an", | ||
"YEARS_OLD":"ans", | ||
"TITLE":"Registre des Patients" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters