@openmrs/esm-billing-app 1.0.2-pre.112 → 1.0.2-pre.1124
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc +16 -2
- package/README.md +54 -9
- package/__mocks__/bills.mock.ts +12 -0
- package/__mocks__/react-i18next.js +6 -5
- package/dist/1119.js +1 -1
- package/dist/1146.js +1 -2
- package/dist/1146.js.map +1 -1
- package/dist/1197.js +1 -1
- package/dist/1537.js +1 -0
- package/dist/1537.js.map +1 -0
- package/dist/1856.js +1 -0
- package/dist/1856.js.map +1 -0
- package/dist/2146.js +1 -1
- package/dist/2177.js +1 -1
- package/dist/2177.js.map +1 -1
- package/dist/2524.js +1 -0
- package/dist/2524.js.map +1 -0
- package/dist/2690.js +1 -1
- package/dist/3099.js +1 -1
- package/dist/3584.js +1 -1
- package/dist/3717.js +2 -0
- package/dist/3717.js.map +1 -0
- package/dist/4055.js +1 -1
- package/dist/4132.js +1 -1
- package/dist/4300.js +1 -1
- package/dist/4335.js +1 -1
- package/dist/439.js +1 -0
- package/dist/4618.js +1 -1
- package/dist/4652.js +1 -1
- package/dist/4724.js +1 -0
- package/dist/4724.js.map +1 -0
- package/dist/4739.js +1 -1
- package/dist/4739.js.map +1 -1
- package/dist/4944.js +1 -1
- package/dist/5173.js +1 -1
- package/dist/5241.js +1 -1
- package/dist/5442.js +1 -1
- package/dist/5661.js +1 -1
- package/dist/6022.js +1 -1
- package/dist/6468.js +1 -1
- package/dist/6540.js +1 -1
- package/dist/6540.js.map +1 -1
- package/dist/6589.js +1 -0
- package/dist/6679.js +1 -1
- package/dist/6840.js +1 -1
- package/dist/6859.js +1 -1
- package/dist/7097.js +1 -1
- package/dist/7159.js +1 -1
- package/dist/723.js +1 -1
- package/dist/7255.js +1 -1
- package/dist/7255.js.map +1 -1
- package/dist/7617.js +1 -1
- package/dist/795.js +1 -1
- package/dist/8163.js +1 -1
- package/dist/8349.js +1 -1
- package/dist/8371.js +1 -0
- package/dist/8572.js +1 -0
- package/dist/8572.js.map +1 -0
- package/dist/8618.js +1 -1
- package/dist/8708.js +2 -0
- package/dist/{6557.js.LICENSE.txt → 8708.js.LICENSE.txt} +22 -0
- package/dist/8708.js.map +1 -0
- package/dist/890.js +1 -1
- package/dist/9214.js +1 -1
- package/dist/9538.js +1 -1
- package/dist/9569.js +1 -1
- package/dist/961.js +1 -1
- package/dist/961.js.map +1 -1
- package/dist/986.js +1 -1
- package/dist/9879.js +1 -1
- package/dist/9895.js +1 -1
- package/dist/9900.js +1 -1
- package/dist/9913.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-billing-app.js +1 -1
- package/dist/openmrs-esm-billing-app.js.buildmanifest.json +321 -249
- package/dist/openmrs-esm-billing-app.js.map +1 -1
- package/dist/routes.json +1 -1
- package/e2e/README.md +19 -18
- package/e2e/commands/billing-operations.ts +96 -0
- package/e2e/commands/index.ts +3 -0
- package/e2e/commands/patient-operations.ts +82 -0
- package/e2e/commands/types.ts +73 -0
- package/e2e/core/test.ts +12 -1
- package/e2e/fixtures/api.ts +2 -3
- package/e2e/pages/billing-dashboard-page.ts +84 -0
- package/e2e/pages/billing-form-page.ts +114 -0
- package/e2e/pages/index.ts +4 -1
- package/e2e/pages/invoice-page.ts +113 -0
- package/e2e/pages/payment-page.ts +104 -0
- package/e2e/specs/billing-dashboard.spec.ts +203 -0
- package/e2e/specs/billing-patient-chart.spec.ts +738 -0
- package/e2e/support/github/Dockerfile +1 -1
- package/e2e/support/github/run-e2e-docker-env.sh +29 -32
- package/example.env +15 -1
- package/package.json +19 -16
- package/playwright.config.ts +4 -2
- package/src/bill-history/bill-history.component.tsx +15 -17
- package/src/bill-history/bill-history.scss +4 -94
- package/src/bill-history/bill-history.test.tsx +37 -77
- package/src/bill-item-actions/bill-item-actions.scss +21 -5
- package/src/bill-item-actions/edit-bill-item.modal.tsx +227 -0
- package/src/bill-item-actions/edit-bill-item.test.tsx +233 -40
- package/src/billable-services/bill-waiver/bill-selection.component.tsx +5 -5
- package/src/billable-services/bill-waiver/bill-waiver-form.component.tsx +37 -39
- package/src/billable-services/bill-waiver/patient-bills.component.tsx +7 -7
- package/src/billable-services/bill-waiver/utils.ts +13 -3
- package/src/billable-services/{create-edit/add-billable-service.scss → billable-service-form/billable-service-form.scss} +32 -64
- package/src/billable-services/billable-service-form/billable-service-form.test.tsx +1099 -0
- package/src/billable-services/billable-service-form/billable-service-form.workspace.tsx +516 -0
- package/src/billable-services/billable-service.resource.ts +71 -27
- package/src/billable-services/billable-services-home.component.tsx +13 -42
- package/src/billable-services/billable-services-left-panel-link.component.tsx +50 -0
- package/src/billable-services/billable-services-left-panel-menu.component.tsx +48 -0
- package/src/billable-services/billable-services-menu-item/item.component.tsx +5 -4
- package/src/billable-services/billable-services.component.tsx +156 -152
- package/src/billable-services/billable-services.scss +29 -0
- package/src/billable-services/billable-services.test.tsx +6 -49
- package/src/billable-services/cash-point/add-cash-point.modal.tsx +170 -0
- package/src/billable-services/cash-point/cash-point-configuration.component.tsx +19 -193
- package/src/billable-services/cash-point/cash-point-configuration.scss +1 -5
- package/src/billable-services/dashboard/dashboard.component.tsx +0 -2
- package/src/billable-services/payment-modes/delete-payment-mode.modal.tsx +77 -0
- package/src/billable-services/payment-modes/payment-mode-form.modal.tsx +131 -0
- package/src/billable-services/payment-modes/payment-modes-config.component.tsx +139 -0
- package/src/billable-services/{payyment-modes → payment-modes}/payment-modes-config.scss +5 -4
- package/src/billable-services-admin-card-link.component.test.tsx +2 -2
- package/src/billable-services-admin-card-link.component.tsx +1 -1
- package/src/billing-dashboard/billing-dashboard.scss +1 -1
- package/src/billing-form/billing-checkin-form.component.tsx +29 -29
- package/src/billing-form/billing-checkin-form.scss +0 -7
- package/src/billing-form/billing-checkin-form.test.tsx +100 -27
- package/src/billing-form/billing-form.component.tsx +226 -284
- package/src/billing-form/billing-form.scss +143 -0
- package/src/billing-form/visit-attributes/visit-attributes-form.component.tsx +47 -41
- package/src/billing-form/visit-attributes/visit-attributes-form.scss +16 -3
- package/src/billing.resource.test.ts +503 -0
- package/src/billing.resource.ts +68 -76
- package/src/bills-table/bills-table.component.tsx +17 -24
- package/src/bills-table/bills-table.test.tsx +98 -54
- package/src/config-schema.ts +84 -31
- package/src/dashboard.meta.ts +5 -3
- package/src/helpers/functions.ts +5 -4
- package/src/index.ts +75 -13
- package/src/invoice/invoice-table.component.tsx +36 -70
- package/src/invoice/invoice-table.scss +8 -5
- package/src/invoice/invoice-table.test.tsx +273 -62
- package/src/invoice/invoice.component.tsx +44 -38
- package/src/invoice/invoice.scss +11 -4
- package/src/invoice/invoice.test.tsx +324 -120
- package/src/invoice/payments/invoice-breakdown/invoice-breakdown.scss +9 -9
- package/src/invoice/payments/payment-form/payment-form.component.tsx +45 -36
- package/src/invoice/payments/payment-form/payment-form.scss +5 -6
- package/src/invoice/payments/payment-form/payment-form.test.tsx +217 -67
- package/src/invoice/payments/payment-history/payment-history.component.tsx +6 -4
- package/src/invoice/payments/payment-history/payment-history.test.tsx +9 -14
- package/src/invoice/payments/payments.component.tsx +56 -68
- package/src/invoice/payments/payments.scss +4 -3
- package/src/invoice/payments/payments.test.tsx +282 -0
- package/src/invoice/payments/utils.ts +15 -27
- package/src/invoice/printable-invoice/print-receipt.component.tsx +3 -3
- package/src/invoice/printable-invoice/print-receipt.test.tsx +14 -25
- package/src/invoice/printable-invoice/printable-footer.component.tsx +2 -2
- package/src/invoice/printable-invoice/printable-footer.test.tsx +4 -13
- package/src/invoice/printable-invoice/printable-invoice-header.component.tsx +20 -11
- package/src/invoice/printable-invoice/printable-invoice-header.test.tsx +95 -16
- package/src/invoice/printable-invoice/printable-invoice.component.tsx +21 -35
- package/src/left-panel-link.component.tsx +9 -8
- package/src/left-panel-link.test.tsx +1 -4
- package/src/metrics-cards/metrics-cards.component.tsx +16 -6
- package/src/metrics-cards/metrics-cards.scss +4 -0
- package/src/metrics-cards/metrics-cards.test.tsx +18 -5
- package/src/modal/require-payment-modal.test.tsx +27 -22
- package/src/modal/{require-payment-modal.component.tsx → require-payment.modal.tsx} +18 -19
- package/src/routes.json +44 -20
- package/src/types/index.ts +87 -24
- package/translations/am.json +140 -80
- package/translations/ar.json +141 -81
- package/translations/ar_SY.json +141 -81
- package/translations/bn.json +143 -83
- package/translations/cs.json +230 -0
- package/translations/de.json +141 -81
- package/translations/en.json +142 -81
- package/translations/en_US.json +141 -81
- package/translations/es.json +140 -80
- package/translations/es_MX.json +141 -81
- package/translations/fr.json +224 -164
- package/translations/he.json +140 -80
- package/translations/hi.json +141 -81
- package/translations/hi_IN.json +141 -81
- package/translations/id.json +141 -81
- package/translations/it.json +166 -106
- package/translations/ka.json +141 -81
- package/translations/km.json +140 -80
- package/translations/ku.json +141 -81
- package/translations/ky.json +141 -81
- package/translations/lg.json +141 -81
- package/translations/ne.json +141 -81
- package/translations/pl.json +141 -81
- package/translations/pt.json +141 -81
- package/translations/pt_BR.json +141 -81
- package/translations/qu.json +141 -81
- package/translations/ro_RO.json +225 -165
- package/translations/ru_RU.json +141 -81
- package/translations/si.json +141 -81
- package/translations/sq.json +230 -0
- package/translations/sw.json +141 -81
- package/translations/sw_KE.json +141 -81
- package/translations/tr.json +141 -81
- package/translations/tr_TR.json +141 -81
- package/translations/uk.json +141 -81
- package/translations/uz.json +141 -81
- package/translations/uz@Latn.json +141 -81
- package/translations/uz_UZ.json +141 -81
- package/translations/vi.json +141 -81
- package/translations/zh.json +141 -81
- package/translations/zh_CN.json +171 -111
- package/translations/zh_TW.json +230 -0
- package/dist/1146.js.LICENSE.txt +0 -21
- package/dist/2352.js +0 -1
- package/dist/2352.js.map +0 -1
- package/dist/246.js +0 -1
- package/dist/246.js.map +0 -1
- package/dist/4689.js +0 -2
- package/dist/4689.js.map +0 -1
- package/dist/6557.js +0 -2
- package/dist/6557.js.map +0 -1
- package/dist/8638.js +0 -1
- package/dist/8638.js.map +0 -1
- package/dist/9968.js +0 -1
- package/dist/9968.js.map +0 -1
- package/e2e/pages/home-page.ts +0 -9
- package/e2e/specs/sample-test.spec.ts +0 -11
- package/src/bill-item-actions/edit-bill-item.component.tsx +0 -221
- package/src/billable-services/create-edit/add-billable-service.component.tsx +0 -401
- package/src/billable-services/create-edit/add-billable-service.test.tsx +0 -154
- package/src/billable-services/dashboard/service-metrics.component.tsx +0 -41
- package/src/billable-services/payyment-modes/payment-modes-config.component.tsx +0 -280
- package/src/invoice/payments/payments.component.test.tsx +0 -121
- /package/dist/{4689.js.LICENSE.txt → 3717.js.LICENSE.txt} +0 -0
package/dist/4055.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4055],{94055:e=>{e.exports=JSON.parse('{"actions":"Actions","addBill":"Add bill item(s)","addBillableServices":"Add Billable Services","addCashPoint":"Add Cash Point","addNewBillableService":"Add new billable service","addNewService":"Add new service","addPaymentMode":"Add Payment Mode","addPaymentOptions":"Add payment option","amount":"Amount","amountDue":"Amount Due","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to Waive","billableService":"Billable service","billableServices":"Billable Services","billedItems":"Billed Items","billedTo":"Billed to","billErrorService":"Bill service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing History","billingSettings":"Billing Settings","billItem":"Bill item","billItems":"Bill Items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":" {{billName}} ","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has pending bill. Advice patient to settle bill before receiving services","billServicesManagement":"Bill services management","billsList":"Bill list","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","cancel":"Cancel","cashPointConfig":"Cash Point Config","cashPointHistory":"Cash Point History","cashPointLocation":"Cash Point Location","cashPointName":"Cash Point Name","cashPointNamePlaceholder":"e.g., Pharmacy Cash Point","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash Point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","clearSearchInput":"Clear search input","clientBalance":"Client Balance","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","createdSuccessfully":"Billable service created successfully","currentPrice":"Current price","delete":"Delete","deletePaymentMode":"Delete Payment Mode","description":"Description","descriptionPlaceholder":"e.g., Used for all cash transactions","discard":"Discard","discount":"Discount","duplicateCashPointError":"A cash point with the same name or UUID already exists. Please use a unique name and UUID.","duplicatePaymentModeError":"A payment mode with the same name already exists. Please create another payment mode","editBillableService":"Edit billable service","editBillableServices":"Edit Billable Services","editBillLineItem":"Edit bill line item?","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterConcept":"Associated concept","enterReferenceNumber":"Enter ref. number","error":"Error","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorFetchingPaymentModes":"An error occurred while fetching payment modes.","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Payment modes error","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by","filterTable":"Filter table","grandTotal":"Grand total","home":"Home","identifier":"Identifier","inlineLoading":"Loading bill items...","insuranceScheme":"Insurance scheme","invalidWaiverAmount":"Invalid waiver amount","invoice":"Invoice","invoiceError":"Invoice error","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","loading":"Loading data...","loadingBillingServices":"Loading billing services...","loadingDescription":"Loading","location":"Select Location","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBilltoDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","noResultsFor":"No results for","noResultsFound":"No results found","noServicesToDisplay":"There are no services to display","ok":"OK","patientBillingAlert":"Patient Billing Alert","patientBills":"Patient bill","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paymentDetails":"Payment Details","paymentMethod":"Payment method","paymentMethods":"Payment methods","paymentMode":"Payment Mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment Mode History","paymentModeName":"Payment Mode Name","paymentModeNamePlaceholder":"e.g., Cash, Credit Card","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment Modes Config","payments":"Payments","pleaseRequiredFields":"Please fill all required fields","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process Payment","quantity":"Quantity","quantityGreaterThanZero":"Quantity must be greater than zero","quantityRequired":"Quantity is required","referenceNumber":"Reference number","save":"Save","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service...","selectCategory":"Select category","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","sellingAmount":"Enter selling price","sellingPrice":"Selling Price","service":"Service","serviceMetrics":"Service Metrics","serviceName":"Service Name","serviceNameExceedsLimit":"Service Name exceeds the character limit of {{MAX_NAME_LENGTH}}.","serviceShortName":"Short Name","servicesList":"Services list","serviceType":"Service Type","shortName":"Short Name","shortNameExceedsLimit":"Short Name exceeds the character limit of {{MAX_NAME_LENGTH}}.","status":"Service Status","stockItem":"Stock Item","submitting":"Submitting...","success":"Success","total":"Total","totalAmount":"Total Amount","totalTendered":"Total Tendered","unitPrice":"Unit price","updatedSuccessfully":"Billable service updated successfully","uuid":"UUID","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4055],{94055:e=>{e.exports=JSON.parse('{"add":"Ajouter","addBill":"Ajouter des articles de facture","addBillableService":"Ajouter un service facturable","addCashPoint":"Ajouter un point de vente","addNewBillableService":"Ajouter un nouveau service facturable","addNewCashPoint":"Ajouter un nouveau point de vente","addNewPaymentMode":"Ajouter un nouveau mode de paiement","addNewService":"Ajouter un nouveau service","addPaymentMethod":"Ajouter une méthode de paiement","addPaymentMode":"Ajouter un mode de paiement","addPaymentOption":"Ajouter une option de paiement","amount":"Montant","amountDue":"Montant dû","amountMustBePositive":"Le montant doit être supérieur à zéro (0)","amountRequired":"Le montant est requis","amountTendered":"Montant remis","amountToWaiveAriaLabel":"Saisir le montant à exonérer","amountToWaiveHelper":"Spécifier le montant à déduire de la facture","amountToWaiveLabel":"Montant à exonérer","associatedConcept":"Concept associé","billableService":"Service facturable","billableServiceCreated":"Service facturable créé","billableServiceCreatedSuccessfully":"Service facturable créé avec succès","billableServiceForm":"Formulaire de service facturable","billableServices":"Services facturables","billableServices__lower":"services facturables","billableServicesManagement":"Gestion des services facturables","billableServiceUpdated":"Service facturable mis à jour","billableServiceUpdatedSuccessfully":"Service facturable mis à jour avec succès","billAmount":"Montant de la facture","billCode":"Code de la facture","billCreatedSuccessfully":"Facture créée avec succès","billCreationError":"Erreur lors de la création de la facture","billedItems":"Articles facturés","billedTo":"A facturer","billErrorService":"Erreur du service de facturation","billing":"En cours de facturation","billingForm":"Format de la facture","billingHistory":"Historique des facturations","billingSettings":"Paramétrage des facturations","billItem":"Article de la facture","billItems":"Articles de la facture","billLineItemEmpty":"Cette facture n\'a pas d\'articles","billList":"Liste des factures","billMetrics":"Indicateurs de facturation","billName":"{{Nom de la facture}}","billPayment":"Paiement de facture","billPaymentError":"Erreur lors du paiement de la facture","billPaymentRequiredMessage":"Le patient actuel a une facture impayée. Conseillez-lui de la régler avant de recevoir les soins.","billProcessed":"Facture traitée","billProcessedSuccessfully":"Facture traitée avec succès","billProcessingError":"Erreur lors du traitement de la facture","billsTable":"Tables des factures","billTotal":"Total de la facture","billWaiver":"Exonération de facture","billWaiverError":"L\'exonération de la facture a échoué {{error}}","billWaiverSuccess":"Exonération de la facture réussie","birthDate":"Date de naissance","cashPointConfig":"Configuration du point de vente","cashPointHistory":"Historique du point de vente","cashPointLocation":"Localisation du point de vente","cashPointName":"Nom du point de vente","cashPointNamePlaceholder":"Exemple, Point de vente de pharmacie","cashPointNameRequired":"Nom du point de vente obligatoire","cashPointSaved":"Point de vente enregistré avec succès","cashPointUuid":"UUID de point de vente","cashPointUuidPlaceholder":"Saisir UUID","checkFilters":"Vérifier les filtres ci-dessus","childUnder5":"Enfant en dessous de 5 ans","confirmDeleteMessage":"Êtes vous sûr de vouloir supprimer le mode de paiement ? Soyez Prudent","cumulativeBills":"factures cumulatives","currentPrice":"Prix Actuel","date":"Date","dateAndTime":"Date et heure","dateOfPayment":"Date du Paiement","deletePaymentMode":"Supprimer le mode de Paiement","deleting":"En cours de suppression","description":"Description","descriptionPlaceholder":"Par exemple, utilisé pour toutes les transactions en espèces","discard":"Rejeter","discount":"Remise","discountAmount":"Montant de la remise","editBillableService":"Modifier le service facturable","editBillLineItem":"Modifier la ligne de facture","editPaymentMode":"Modifier le mode de paiement","editThisBillItem":"Modifier ce formulaire de facture","enterAmount":"Saisir le montant","enterReferenceNumber":"Saisir le numéro de référence","enterSellingPrice":"Saisir le prix de vente","enterServiceName":"Saisir le nom du service","enterServiceShortName":"Saisir le nom court du service","errorCreatingBill":"Une erreur est survenue durant la création de la facture","errorDeletingPaymentMode":"Une erreur lors de la suppression du mode de paiement","errorFetchingCashPoints":"Une erreur s\'est produite lors de la récupération des point de vente","errorFetchingLocations":"Une erreur s\'est produite lors de la récupération des localisations.","errorLoadingBillableServices":"Une erreur s\'est produite lors du chargement des services facturables.","errorLoadingBillServices":"Une erreur s\'est produite lors du chargement des services facturés.","errorLoadingPaymentModes":"Une erreur s\'est produite lors du chargement des modes de paiement","errorPrintingInvoice":"Erreur lors de l’impression de la facture","errorProcessingPayment":"Erreur lors du traitement du paiement","errorSavingCashPoint":"Une erreur s\'est produite lors de l\'enregistrement du point de vente","errorSavingPaymentMode":"Une erreur s\'est produite lors de l\'enregistrement du mode de paiement","filterBy":"Trier par:","filterTable":"Tableau de tri","gender":"Genre","grandTotal":"Total","home":"Accueil","identifier":"Identifiant","insuranceScheme":"Régime d\'assurance","invalidUuidFormat":"Format UUID Invalide","invalidWaiverAmount":"Montant d\'exonération invalide","inventoryItem":"Article d\'inventaire","invoice":"Facture","invoiceDate":"Date de la facture","invoiceError":"Erreur de facture","invoiceLineItems":"Lignes de facture","invoiceNumber":"Facture #","invoiceStatus":"État de la facture","item":"Article","itemsToBeBilled":"Articles à facturer","launchBillForm":"Formulaire de proforma","lineItems":"Lignes de commande","lineItemUpdated":"Ligne de commande modifié","lineItemUpdateErrorDefault":"Impossible de mettre à jour la ligne de commande. Veuillez réessayer.","lineItemUpdateFailed":"Échec de la mise à jour de la ligne de commande","lineItemUpdateSuccess":"La ligne de facture a été mise à jour avec succès","loading":"Chargement des données","loadingBillInfo":"Chargement des informations de la facture","loadingBillingServices":"Chargement des services facturés","loadingBillItems":"Chargement des articles de la facture","loadingBillMetrics":"Chargement des indicateurs de facturation","loadingDescription":"Chargement","location":"Emplacement","locationRequired":"L\'emplacement est obligatoire","manageBillableServices":"Gérer les services facturables","name":"Nom","nextPage":"Page suivante","noBillToDisplay":"Pas de facture à afficher pour ce patient","noMatchingBillsToDisplay":"Aucune facture correspondante à afficher","noMatchingItemsToDisplay":"Aucun article correspondant à afficher","noMatchingServicesToDisplay":"Aucun service correspondant à afficher","nonPaying":"non-paiement","noResultsFor":"pas de résultats pour {{searchTerm}}","number":"Nombre","ok":"OK","paidBills":"Factures payées","patientBill":"Facture du patient","patientBillingAlert":"Alerte de facturation du patient","patientBills":"Factures des patients","patientBillsDescription":"Liste des factures des patients","patientCategory":"Catégorie du patient","paying":"payant","paymentAmountCannotExceedAmountDue":"Le montant du paiement ne peut être supérieur au montant dû","paymentDetails":"Détails du paiement","paymentMethod":"Méthode de paiement","paymentMethodRequired":"Une méthode de paiement est obligatoire pour tous les articles","paymentMode":"Mode de paiement","paymentModeDeleted":"Mode de paiement supprimé avec succès","paymentModeHistory":"Historique des modes de paiement","paymentModeNameLabel":"Intitulé du mode de paiement","paymentModeNamePlaceholder":"Exemple, espèce, carte de crédit","paymentModeNameRequired":"Intitulé du mode de paiement obligatoire","paymentModeNameToDelete":"Intitulé du mode de paiement: {{paymentModeName}}","paymentModeRequired":"Mode de paiement obigatoire","paymentModeSaved":"Mode de paiement enregistré avec succès","paymentModesConfig":"Configuration des modes de paiement","paymentOptionRequired":"A moins une option de paiement est obligatoire","paymentProcessedSuccessfully":"Traitement réussi du paiement","payments":"Paiements","pendingBills":"Factures en attente","policyNumber":"Numéro de police","postWaiver":"Exonération future","previousPage":"Page précédente","price":"Prix","priceIsRequired":"Prix obligatoire","priceMustBeNumber":"Le prix doit être un nombre valide","priceMustBePositive":"Le prix doit être supérieur à zéro (0)","prices":"Prix","printBill":"Impression de la facture","printReceipt":"Impression du reçu","processPayment":"Traitement du paiement","quantity":"Quantité","quantityCannotExceed100":"La quantité ne peut excéder 100","quantityMustBeAtLeastOne":"La quantité doit être au moins un ( 1 )","quantityMustBeInteger":"La quantité doit être un nombre entier","quantityMustBeNumber":"La quantité doit être un nombre valide","quantityRequired":"La quantité est requise","referenceNumber":"Numéro de référence","remove":"Supprimer","removePaymentMethod":"Supprimer la méthode de paiement","saveAndClose":"Enregistrer et fermer","saving":"Enregistrement en cours","searchConcepts":"Chercher le concept associé","searching":"Recherche en cours","searchItems":"Chercher des tables et des services","searchThisTable":"Chercher cette table","selectBillableService":"Choisir un service facturable","selectedItems":"Articles sélectionnés","selectLocation":"Choisir un lieu","selectPatientCategory":"Choisir une catégorie de patient","selectPaymentMethod":"Choisir une méthode de paiement","selectPaymentMode":"Choisir un mode paiement","selectServiceType":"Choisir un type de service","sellingPrice":"Prix de vente","serviceList":"Liste du service","serviceName":"Nom du service","serviceNameExceedsLimit":"Nom de service ne peut excéder {{MAX_NAME_LENGTH}} caractères","serviceNameRequired":"Nom du service obligatoire","servicesList":"Liste des services","serviceStatus":"État du service","serviceType":"Type de service","serviceTypeRequired":"Type de service obligatoire","shortName":"Nom court","shortNameExceedsLimit":"Nom court ne peut excéder {{MAX_NAME_LENGTH}} caractères","status":"Etat du service","student":"Étudiant","submitting":"Soumission en cours","success":"Réussi!","total":"Total","totalAmount":"Montant Total","totalTendered":"Montant total proposé","unitPrice":"Prix unitaire","unitPriceHelperText":"Ceci est le prix unitaire de cet article","uuid":"UUID","uuidRequired":"UUID est obligatoire","validationError":"Erreur de validation","visitTime":"Heure de visite","waiverForm":"Formulaire d’exonération"}')}}]);
|
package/dist/4132.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4132],{14132:e=>{e.exports=JSON.parse('{"
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4132],{14132:e=>{e.exports=JSON.parse('{"add":"Add","addBill":"Add bill items","addBillableService":"Add billable service","addCashPoint":"Add cash point","addNewBillableService":"Add new billable service","addNewCashPoint":"Add new cash point","addNewPaymentMode":"Add new payment mode","addNewService":"Add new service","addPaymentMethod":"Add payment method","addPaymentMode":"Add payment mode","addPaymentOption":"Add payment option","amount":"Amount","amountDue":"Amount due","amountMustBePositive":"Amount must be greater than 0","amountRequired":"Amount is required","amountTendered":"Amount tendered","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to waive","associatedConcept":"Associated concept","billableService":"Billable service","billableServiceCreated":"Billable service created","billableServiceCreatedSuccessfully":"Billable service created successfully","billableServiceForm":"Billable service form","billableServices":"Billable services","billableServices__lower":"billable services","billableServicesManagement":"Billable services management","billableServiceUpdated":"Billable service updated","billableServiceUpdatedSuccessfully":"Billable service updated successfully","billAmount":"Bill amount","billCode":"Bill code","billCreatedSuccessfully":"Bill created successfully","billCreationError":"Bill creation error","billedItems":"Billed items","billedTo":"Billed to","billErrorService":"Billing service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing history","billingSettings":"Billing settings","billItem":"Bill item","billItems":"Bill items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":"{{billName}}","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has a pending bill. Advise the patient to settle the bill before receiving services","billProcessed":"Bill processed","billProcessedSuccessfully":"Bill processed successfully","billProcessingError":"Bill processing error","billsTable":"Bills table","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","birthDate":"Date of birth","cashPointConfig":"Cash point configuration","cashPointHistory":"Cash point history","cashPointLocation":"Cash point location","cashPointName":"Cash point name","cashPointNamePlaceholder":"For example, Pharmacy Cash Point","cashPointNameRequired":"Cash point name is required","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","childUnder5":"Child under 5","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","cumulativeBills":"Cumulative bills","currentPrice":"Current price","date":"Date","dateAndTime":"Date and time","dateOfPayment":"Date of payment","deletePaymentMode":"Delete payment mode","deleting":"Deleting","description":"Description","descriptionPlaceholder":"For example, Used for all cash transactions","discard":"Discard","discount":"Discount","discountAmount":"Discount amount","editBillableService":"Edit billable service","editBillLineItem":"Edit bill line item","editPaymentMode":"Edit payment mode","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterReferenceNumber":"Enter reference number","enterSellingPrice":"Enter selling price","enterServiceName":"Enter service name","enterServiceShortName":"Enter service short name","errorCreatingBill":"An error occurred while creating the bill","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorLoadingBillableServices":"Error loading billable services","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Error loading payment modes","errorPrintingInvoice":"Error printing invoice","errorProcessingPayment":"Error processing payment","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by:","filterTable":"Filter table","gender":"Gender","grandTotal":"Grand total","home":"Home","identifier":"Identifier","insuranceScheme":"Insurance scheme","invalidUuidFormat":"Invalid UUID format","invalidWaiverAmount":"Invalid waiver amount","inventoryItem":"Inventory item","invoice":"Invoice","invoiceDate":"Invoice date","invoiceError":"Invoice error","invoiceLineItems":"Invoice line items","invoiceNumber":"Invoice #","invoiceStatus":"Invoice status","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","lineItemUpdated":"Line item updated","lineItemUpdateErrorDefault":"Unable to update the bill line item. Please try again.","lineItemUpdateFailed":"Failed to update line item","lineItemUpdateSuccess":"The bill line item has been updated successfully","loading":"Loading data","loadingBillInfo":"Loading bill information","loadingBillingServices":"Loading billing services","loadingBillItems":"Loading bill items","loadingBillMetrics":"Loading bill metrics","loadingDescription":"Loading","location":"Location","locationRequired":"Location is required","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBillToDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","nonPaying":"Non paying","noResultsFor":"No results for {{searchTerm}}","number":"Number","ok":"OK","paidBills":"Paid bills","patientBill":"Patient bill","patientBillingAlert":"Patient billing alert","patientBills":"Patient bills","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paying":"Paying","paymentAmountCannotExceedAmountDue":"Payment amount cannot exceed amount due","paymentDetails":"Payment details","paymentMethod":"Payment method","paymentMethodRequired":"Payment method is required for all items","paymentMode":"Payment mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment mode history","paymentModeNameLabel":"Payment mode name","paymentModeNamePlaceholder":"For example, Cash, Credit Card","paymentModeNameRequired":"Payment mode name is required","paymentModeNameToDelete":"Payment mode name: {{paymentModeName}}","paymentModeRequired":"Payment mode is required","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment modes configuration","paymentOptionRequired":"At least one payment option is required","paymentProcessedSuccessfully":"Payment processed successfully","payments":"Payments","pendingBills":"Pending bills","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","priceMustBeNumber":"Price must be a valid number","priceMustBePositive":"Price must be greater than 0","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process payment","quantity":"Quantity","quantityCannotExceed100":"Quantity cannot exceed 100","quantityMustBeAtLeastOne":"Quantity must be at least 1","quantityMustBeInteger":"Quantity must be a whole number","quantityMustBeNumber":"Quantity must be a valid number","quantityRequired":"Quantity is required","referenceNumber":"Reference number","remove":"Remove","removePaymentMethod":"Remove payment method","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service","selectedItems":"Selected items","selectLocation":"Select location","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","selectPaymentMode":"Select payment mode","selectServiceType":"Select service type","sellingPrice":"Selling price","serviceList":"Service list","serviceName":"Service name","serviceNameExceedsLimit":"Service name cannot exceed {{MAX_NAME_LENGTH}} characters","serviceNameRequired":"Service name is required","servicesList":"Services list","serviceStatus":"Service status","serviceType":"Service type","serviceTypeRequired":"Service type is required","shortName":"Short name","shortNameExceedsLimit":"Short name cannot exceed {{MAX_NAME_LENGTH}} characters","status":"Service status","student":"Student","submitting":"Submitting","success":"Success","total":"Total","totalAmount":"Total amount","totalTendered":"Total tendered","unitPrice":"Unit price","unitPriceHelperText":"This is the unit price for this item","uuid":"UUID","uuidRequired":"UUID is required","validationError":"Validation error","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|
package/dist/4300.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4300],{34300:e=>{e.exports=JSON.parse('{"
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4300],{34300:e=>{e.exports=JSON.parse('{"add":"Add","addBill":"Add bill items","addBillableService":"Add billable service","addCashPoint":"Add cash point","addNewBillableService":"Add new billable service","addNewCashPoint":"Add new cash point","addNewPaymentMode":"Add new payment mode","addNewService":"Add new service","addPaymentMethod":"Add payment method","addPaymentMode":"Add payment mode","addPaymentOption":"Add payment option","allBills":"All bills","amount":"Amount","amountDue":"Amount due","amountMustBePositive":"Amount must be greater than 0","amountRequired":"Amount is required","amountTendered":"Amount tendered","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to waive","associatedConcept":"Associated concept","billableService":"Billable service","billableServiceCreated":"Billable service created","billableServiceCreatedSuccessfully":"Billable service created successfully","billableServiceForm":"Billable service form","billableServices":"Billable services","billableServices__lower":"billable services","billableServicesManagement":"Billable services management","billableServiceUpdated":"Billable service updated","billableServiceUpdatedSuccessfully":"Billable service updated successfully","billAmount":"Bill amount","billCode":"Bill code","billCreatedSuccessfully":"Bill created successfully","billCreationError":"Bill creation error","billedItems":"Billed items","billedTo":"Billed to","billErrorService":"Billing service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing history","billingSettings":"Billing settings","billItem":"Bill item","billItems":"Bill items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":"{{billName}}","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has a pending bill. Advise the patient to settle the bill before receiving services","billProcessed":"Bill processed","billProcessedSuccessfully":"Bill processed successfully","billProcessingError":"Bill processing error","billsTable":"Bills table","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","birthDate":"Date of birth","cashPointConfig":"Cash point configuration","cashPointHistory":"Cash point history","cashPointLocation":"Cash point location","cashPointName":"Cash point name","cashPointNamePlaceholder":"For example, Pharmacy Cash Point","cashPointNameRequired":"Cash point name is required","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","childUnder5":"Child under 5","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","cumulativeBills":"Cumulative bills","currentPrice":"Current price","date":"Date","dateAndTime":"Date and time","dateOfPayment":"Date of payment","deletePaymentMode":"Delete payment mode","deleting":"Deleting","description":"Description","descriptionPlaceholder":"For example, Used for all cash transactions","discard":"Discard","discount":"Discount","discountAmount":"Discount amount","editBillableService":"Edit billable service","editBillLineItem":"Edit bill line item","editPaymentMode":"Edit payment mode","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterReferenceNumber":"Enter reference number","enterSellingPrice":"Enter selling price","enterServiceName":"Enter service name","enterServiceShortName":"Enter service short name","errorCreatingBill":"An error occurred while creating the bill","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorLoadingBillableServices":"Error loading billable services","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Error loading payment modes","errorPrintingInvoice":"Error printing invoice","errorProcessingPayment":"Error processing payment","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by:","filterTable":"Filter table","gender":"Gender","grandTotal":"Grand total","home":"Home","identifier":"Identifier","insuranceScheme":"Insurance scheme","invalidUuidFormat":"Invalid UUID format","invalidWaiverAmount":"Invalid waiver amount","inventoryItem":"Inventory item","invoice":"Invoice","invoiceDate":"Invoice date","invoiceError":"Invoice error","invoiceLineItems":"Invoice line items","invoiceNumber":"Invoice #","invoiceStatus":"Invoice status","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","lineItemUpdated":"Line item updated","lineItemUpdateErrorDefault":"Unable to update the bill line item. Please try again.","lineItemUpdateFailed":"Failed to update line item","lineItemUpdateSuccess":"The bill line item has been updated successfully","loading":"Loading data","loadingBillInfo":"Loading bill information","loadingBillingServices":"Loading billing services","loadingBillItems":"Loading bill items","loadingBillMetrics":"Loading bill metrics","loadingDescription":"Loading","location":"Location","locationRequired":"Location is required","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBillToDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","nonPaying":"Non paying","noResultsFor":"No results for {{searchTerm}}","number":"Number","ok":"OK","paidBills":"Paid bills","patientBill":"Patient bill","patientBillingAlert":"Patient billing alert","patientBills":"Patient bills","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paying":"Paying","paymentAmountCannotExceedAmountDue":"Payment amount cannot exceed amount due","paymentDetails":"Payment details","paymentMethod":"Payment method","paymentMethodRequired":"Payment method is required for all items","paymentMode":"Payment mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment mode history","paymentModeNameLabel":"Payment mode name","paymentModeNamePlaceholder":"For example, Cash, Credit Card","paymentModeNameRequired":"Payment mode name is required","paymentModeNameToDelete":"Payment mode name: {{paymentModeName}}","paymentModeRequired":"Payment mode is required","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment modes configuration","paymentOptionRequired":"At least one payment option is required","paymentProcessedSuccessfully":"Payment processed successfully","payments":"Payments","pendingBills":"Pending bills","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","priceMustBeNumber":"Price must be a valid number","priceMustBePositive":"Price must be greater than 0","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process payment","quantity":"Quantity","quantityCannotExceed100":"Quantity cannot exceed 100","quantityMustBeAtLeastOne":"Quantity must be at least 1","quantityMustBeInteger":"Quantity must be a whole number","quantityMustBeNumber":"Quantity must be a valid number","quantityRequired":"Quantity is required","referenceNumber":"Reference number","remove":"Remove","removePaymentMethod":"Remove payment method","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service","selectedItems":"Selected items","selectLocation":"Select location","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","selectPaymentMode":"Select payment mode","selectServiceType":"Select service type","sellingPrice":"Selling price","serviceList":"Service list","serviceName":"Service name","serviceNameExceedsLimit":"Service name cannot exceed {{MAX_NAME_LENGTH}} characters","serviceNameRequired":"Service name is required","servicesList":"Services list","serviceStatus":"Service status","serviceType":"Service type","serviceTypeRequired":"Service type is required","shortName":"Short name","shortNameExceedsLimit":"Short name cannot exceed {{MAX_NAME_LENGTH}} characters","status":"Service status","student":"Student","submitting":"Submitting","success":"Success","total":"Total","totalAmount":"Total amount","totalTendered":"Total tendered","unitPrice":"Unit price","unitPriceHelperText":"This is the unit price for this item","uuid":"UUID","uuidRequired":"UUID is required","validationError":"Validation error","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|
package/dist/4335.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4335],{54335:e=>{e.exports=JSON.parse('{"
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4335],{54335:e=>{e.exports=JSON.parse('{"add":"Add","addBill":"Add bill items","addBillableService":"Add billable service","addCashPoint":"Add cash point","addNewBillableService":"Add new billable service","addNewCashPoint":"Add new cash point","addNewPaymentMode":"Add new payment mode","addNewService":"Add new service","addPaymentMethod":"Add payment method","addPaymentMode":"Add payment mode","addPaymentOption":"Add payment option","amount":"Amount","amountDue":"Amount due","amountMustBePositive":"Amount must be greater than 0","amountRequired":"Amount is required","amountTendered":"Amount tendered","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to waive","associatedConcept":"Associated concept","billableService":"Billable service","billableServiceCreated":"Billable service created","billableServiceCreatedSuccessfully":"Billable service created successfully","billableServiceForm":"Billable service form","billableServices":"Billable services","billableServices__lower":"billable services","billableServicesManagement":"Billable services management","billableServiceUpdated":"Billable service updated","billableServiceUpdatedSuccessfully":"Billable service updated successfully","billAmount":"Bill amount","billCode":"Bill code","billCreatedSuccessfully":"Bill created successfully","billCreationError":"Bill creation error","billedItems":"Billed items","billedTo":"Billed to","billErrorService":"Billing service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing history","billingSettings":"Billing settings","billItem":"Bill item","billItems":"Bill items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":"{{billName}}","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has a pending bill. Advise the patient to settle the bill before receiving services","billProcessed":"Bill processed","billProcessedSuccessfully":"Bill processed successfully","billProcessingError":"Bill processing error","billsTable":"Bills table","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","birthDate":"Date of birth","cashPointConfig":"Cash point configuration","cashPointHistory":"Cash point history","cashPointLocation":"Cash point location","cashPointName":"Cash point name","cashPointNamePlaceholder":"For example, Pharmacy Cash Point","cashPointNameRequired":"Cash point name is required","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","childUnder5":"Child under 5","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","cumulativeBills":"Cumulative bills","currentPrice":"Current price","date":"Date","dateAndTime":"Date and time","dateOfPayment":"Date of payment","deletePaymentMode":"Delete payment mode","deleting":"Deleting","description":"Description","descriptionPlaceholder":"For example, Used for all cash transactions","discard":"Discard","discount":"Discount","discountAmount":"Discount amount","editBillableService":"Edit billable service","editBillLineItem":"Edit bill line item","editPaymentMode":"Edit payment mode","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterReferenceNumber":"Enter reference number","enterSellingPrice":"Enter selling price","enterServiceName":"Enter service name","enterServiceShortName":"Enter service short name","errorCreatingBill":"An error occurred while creating the bill","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorLoadingBillableServices":"Error loading billable services","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Error loading payment modes","errorPrintingInvoice":"Error printing invoice","errorProcessingPayment":"Error processing payment","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by:","filterTable":"Filter table","gender":"Gender","grandTotal":"Grand total","home":"Home","identifier":"Identifier","insuranceScheme":"Insurance scheme","invalidUuidFormat":"Invalid UUID format","invalidWaiverAmount":"Invalid waiver amount","inventoryItem":"Inventory item","invoice":"Invoice","invoiceDate":"Invoice date","invoiceError":"Invoice error","invoiceLineItems":"Invoice line items","invoiceNumber":"Invoice #","invoiceStatus":"Invoice status","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","lineItemUpdated":"Line item updated","lineItemUpdateErrorDefault":"Unable to update the bill line item. Please try again.","lineItemUpdateFailed":"Failed to update line item","lineItemUpdateSuccess":"The bill line item has been updated successfully","loading":"Loading data","loadingBillInfo":"Loading bill information","loadingBillingServices":"Loading billing services","loadingBillItems":"Loading bill items","loadingBillMetrics":"Loading bill metrics","loadingDescription":"Loading","location":"Location","locationRequired":"Location is required","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBillToDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","nonPaying":"Non paying","noResultsFor":"No results for {{searchTerm}}","number":"Number","ok":"OK","paidBills":"Paid bills","patientBill":"Patient bill","patientBillingAlert":"Patient billing alert","patientBills":"Patient bills","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paying":"Paying","paymentAmountCannotExceedAmountDue":"Payment amount cannot exceed amount due","paymentDetails":"Payment details","paymentMethod":"Payment method","paymentMethodRequired":"Payment method is required for all items","paymentMode":"Payment mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment mode history","paymentModeNameLabel":"Payment mode name","paymentModeNamePlaceholder":"For example, Cash, Credit Card","paymentModeNameRequired":"Payment mode name is required","paymentModeNameToDelete":"Payment mode name: {{paymentModeName}}","paymentModeRequired":"Payment mode is required","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment modes configuration","paymentOptionRequired":"At least one payment option is required","paymentProcessedSuccessfully":"Payment processed successfully","payments":"Payments","pendingBills":"Pending bills","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","priceMustBeNumber":"Price must be a valid number","priceMustBePositive":"Price must be greater than 0","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process payment","quantity":"Quantity","quantityCannotExceed100":"Quantity cannot exceed 100","quantityMustBeAtLeastOne":"Quantity must be at least 1","quantityMustBeInteger":"Quantity must be a whole number","quantityMustBeNumber":"Quantity must be a valid number","quantityRequired":"Quantity is required","referenceNumber":"Reference number","remove":"Remove","removePaymentMethod":"Remove payment method","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service","selectedItems":"Selected items","selectLocation":"Select location","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","selectPaymentMode":"Select payment mode","selectServiceType":"Select service type","sellingPrice":"Selling price","serviceList":"Service list","serviceName":"Service name","serviceNameExceedsLimit":"Service name cannot exceed {{MAX_NAME_LENGTH}} characters","serviceNameRequired":"Service name is required","servicesList":"Services list","serviceStatus":"Service status","serviceType":"Service type","serviceTypeRequired":"Service type is required","shortName":"Short name","shortNameExceedsLimit":"Short name cannot exceed {{MAX_NAME_LENGTH}} characters","status":"Service status","student":"Student","submitting":"Submitting","success":"Success","total":"Total","totalAmount":"Total amount","totalTendered":"Total tendered","unitPrice":"Unit price","unitPriceHelperText":"This is the unit price for this item","uuid":"UUID","uuidRequired":"UUID is required","validationError":"Validation error","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|
package/dist/439.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[439],{10439:e=>{e.exports=JSON.parse('{"add":"Add","addBill":"Add bill items","addBillableService":"Add billable service","addCashPoint":"Add cash point","addNewBillableService":"Add new billable service","addNewCashPoint":"Add new cash point","addNewPaymentMode":"Add new payment mode","addNewService":"Add new service","addPaymentMethod":"Add payment method","addPaymentMode":"Add payment mode","addPaymentOption":"Add payment option","amount":"Amount","amountDue":"Amount due","amountMustBePositive":"Amount must be greater than 0","amountRequired":"Amount is required","amountTendered":"Amount tendered","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to waive","associatedConcept":"Associated concept","billableService":"Billable service","billableServiceCreated":"Billable service created","billableServiceCreatedSuccessfully":"Billable service created successfully","billableServiceForm":"Billable service form","billableServices":"Billable services","billableServices__lower":"billable services","billableServicesManagement":"Billable services management","billableServiceUpdated":"Billable service updated","billableServiceUpdatedSuccessfully":"Billable service updated successfully","billAmount":"Bill amount","billCode":"Bill code","billCreatedSuccessfully":"Bill created successfully","billCreationError":"Bill creation error","billedItems":"Billed items","billedTo":"Billed to","billErrorService":"Billing service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing history","billingSettings":"Billing settings","billItem":"Bill item","billItems":"Bill items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":"{{billName}}","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has a pending bill. Advise the patient to settle the bill before receiving services","billProcessed":"Bill processed","billProcessedSuccessfully":"Bill processed successfully","billProcessingError":"Bill processing error","billsTable":"Bills table","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","birthDate":"Date of birth","cashPointConfig":"Cash point configuration","cashPointHistory":"Cash point history","cashPointLocation":"Cash point location","cashPointName":"Cash point name","cashPointNamePlaceholder":"For example, Pharmacy Cash Point","cashPointNameRequired":"Cash point name is required","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","childUnder5":"Child under 5","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","cumulativeBills":"Cumulative bills","currentPrice":"Current price","date":"Date","dateAndTime":"Date and time","dateOfPayment":"Date of payment","deletePaymentMode":"Delete payment mode","deleting":"Deleting","description":"Description","descriptionPlaceholder":"For example, Used for all cash transactions","discard":"Discard","discount":"Discount","discountAmount":"Discount amount","editBillableService":"Edit billable service","editBillLineItem":"Edit bill line item","editPaymentMode":"Edit payment mode","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterReferenceNumber":"Enter reference number","enterSellingPrice":"Enter selling price","enterServiceName":"Enter service name","enterServiceShortName":"Enter service short name","errorCreatingBill":"An error occurred while creating the bill","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorLoadingBillableServices":"Error loading billable services","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Error loading payment modes","errorPrintingInvoice":"Error printing invoice","errorProcessingPayment":"Error processing payment","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by:","filterTable":"Filter table","gender":"Gender","grandTotal":"Grand total","home":"Home","identifier":"Identifier","insuranceScheme":"Insurance scheme","invalidUuidFormat":"Invalid UUID format","invalidWaiverAmount":"Invalid waiver amount","inventoryItem":"Inventory item","invoice":"Invoice","invoiceDate":"Invoice date","invoiceError":"Invoice error","invoiceLineItems":"Invoice line items","invoiceNumber":"Invoice #","invoiceStatus":"Invoice status","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","lineItemUpdated":"Line item updated","lineItemUpdateErrorDefault":"Unable to update the bill line item. Please try again.","lineItemUpdateFailed":"Failed to update line item","lineItemUpdateSuccess":"The bill line item has been updated successfully","loading":"Loading data","loadingBillInfo":"Loading bill information","loadingBillingServices":"Loading billing services","loadingBillItems":"Loading bill items","loadingBillMetrics":"Loading bill metrics","loadingDescription":"Loading","location":"Location","locationRequired":"Location is required","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBillToDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","nonPaying":"Non paying","noResultsFor":"No results for {{searchTerm}}","number":"Number","ok":"OK","paidBills":"Paid bills","patientBill":"Patient bill","patientBillingAlert":"Patient billing alert","patientBills":"Patient bills","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paying":"Paying","paymentAmountCannotExceedAmountDue":"Payment amount cannot exceed amount due","paymentDetails":"Payment details","paymentMethod":"Payment method","paymentMethodRequired":"Payment method is required for all items","paymentMode":"Payment mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment mode history","paymentModeNameLabel":"Payment mode name","paymentModeNamePlaceholder":"For example, Cash, Credit Card","paymentModeNameRequired":"Payment mode name is required","paymentModeNameToDelete":"Payment mode name: {{paymentModeName}}","paymentModeRequired":"Payment mode is required","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment modes configuration","paymentOptionRequired":"At least one payment option is required","paymentProcessedSuccessfully":"Payment processed successfully","payments":"Payments","pendingBills":"Pending bills","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","priceMustBeNumber":"Price must be a valid number","priceMustBePositive":"Price must be greater than 0","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process payment","quantity":"Quantity","quantityCannotExceed100":"Quantity cannot exceed 100","quantityMustBeAtLeastOne":"Quantity must be at least 1","quantityMustBeInteger":"Quantity must be a whole number","quantityMustBeNumber":"Quantity must be a valid number","quantityRequired":"Quantity is required","referenceNumber":"Reference number","remove":"Remove","removePaymentMethod":"Remove payment method","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service","selectedItems":"Selected items","selectLocation":"Select location","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","selectPaymentMode":"Select payment mode","selectServiceType":"Select service type","sellingPrice":"Selling price","serviceList":"Service list","serviceName":"Service name","serviceNameExceedsLimit":"Service name cannot exceed {{MAX_NAME_LENGTH}} characters","serviceNameRequired":"Service name is required","servicesList":"Services list","serviceStatus":"Service status","serviceType":"Service type","serviceTypeRequired":"Service type is required","shortName":"Short name","shortNameExceedsLimit":"Short name cannot exceed {{MAX_NAME_LENGTH}} characters","status":"Service status","student":"Student","submitting":"Submitting","success":"Success","total":"Total","totalAmount":"Total amount","totalTendered":"Total tendered","unitPrice":"Unit price","unitPriceHelperText":"This is the unit price for this item","uuid":"UUID","uuidRequired":"UUID is required","validationError":"Validation error","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|
package/dist/4618.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4618],{64618:e=>{e.exports=JSON.parse('{"
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4618],{64618:e=>{e.exports=JSON.parse('{"add":"Add","addBill":"Add bill items","addBillableService":"Add billable service","addCashPoint":"Add cash point","addNewBillableService":"Add new billable service","addNewCashPoint":"Add new cash point","addNewPaymentMode":"Add new payment mode","addNewService":"Add new service","addPaymentMethod":"Add payment method","addPaymentMode":"Add payment mode","addPaymentOption":"Add payment option","amount":"Amount","amountDue":"Amount due","amountMustBePositive":"Amount must be greater than 0","amountRequired":"Amount is required","amountTendered":"Amount tendered","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to waive","associatedConcept":"Associated concept","billableService":"Billable service","billableServiceCreated":"Billable service created","billableServiceCreatedSuccessfully":"Billable service created successfully","billableServiceForm":"Billable service form","billableServices":"Billable services","billableServices__lower":"billable services","billableServicesManagement":"Billable services management","billableServiceUpdated":"Billable service updated","billableServiceUpdatedSuccessfully":"Billable service updated successfully","billAmount":"Bill amount","billCode":"Bill code","billCreatedSuccessfully":"Bill created successfully","billCreationError":"Bill creation error","billedItems":"Billed items","billedTo":"Billed to","billErrorService":"Billing service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing history","billingSettings":"Billing settings","billItem":"Bill item","billItems":"Bill items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":"{{billName}}","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has a pending bill. Advise the patient to settle the bill before receiving services","billProcessed":"Bill processed","billProcessedSuccessfully":"Bill processed successfully","billProcessingError":"Bill processing error","billsTable":"Bills table","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","birthDate":"Date of birth","cashPointConfig":"Cash point configuration","cashPointHistory":"Cash point history","cashPointLocation":"Cash point location","cashPointName":"Cash point name","cashPointNamePlaceholder":"For example, Pharmacy Cash Point","cashPointNameRequired":"Cash point name is required","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","childUnder5":"Child under 5","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","cumulativeBills":"Cumulative bills","currentPrice":"Current price","date":"Date","dateAndTime":"Date and time","dateOfPayment":"Date of payment","deletePaymentMode":"Delete payment mode","deleting":"Deleting","description":"Description","descriptionPlaceholder":"For example, Used for all cash transactions","discard":"Discard","discount":"Discount","discountAmount":"Discount amount","editBillableService":"Edit billable service","editBillLineItem":"Edit bill line item","editPaymentMode":"Edit payment mode","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterReferenceNumber":"Enter reference number","enterSellingPrice":"Enter selling price","enterServiceName":"Enter service name","enterServiceShortName":"Enter service short name","errorCreatingBill":"An error occurred while creating the bill","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorLoadingBillableServices":"Error loading billable services","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Error loading payment modes","errorPrintingInvoice":"Error printing invoice","errorProcessingPayment":"Error processing payment","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by:","filterTable":"Filter table","gender":"Gender","grandTotal":"Grand total","home":"Home","identifier":"Identifier","insuranceScheme":"Insurance scheme","invalidUuidFormat":"Invalid UUID format","invalidWaiverAmount":"Invalid waiver amount","inventoryItem":"Inventory item","invoice":"Invoice","invoiceDate":"Invoice date","invoiceError":"Invoice error","invoiceLineItems":"Invoice line items","invoiceNumber":"Invoice #","invoiceStatus":"Invoice status","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","lineItemUpdated":"Line item updated","lineItemUpdateErrorDefault":"Unable to update the bill line item. Please try again.","lineItemUpdateFailed":"Failed to update line item","lineItemUpdateSuccess":"The bill line item has been updated successfully","loading":"Loading data","loadingBillInfo":"Loading bill information","loadingBillingServices":"Loading billing services","loadingBillItems":"Loading bill items","loadingBillMetrics":"Loading bill metrics","loadingDescription":"Loading","location":"Location","locationRequired":"Location is required","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBillToDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","nonPaying":"Non paying","noResultsFor":"No results for {{searchTerm}}","number":"Number","ok":"OK","paidBills":"Paid bills","patientBill":"Patient bill","patientBillingAlert":"Patient billing alert","patientBills":"Patient bills","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paying":"Paying","paymentAmountCannotExceedAmountDue":"Payment amount cannot exceed amount due","paymentDetails":"Payment details","paymentMethod":"Payment method","paymentMethodRequired":"Payment method is required for all items","paymentMode":"Payment mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment mode history","paymentModeNameLabel":"Payment mode name","paymentModeNamePlaceholder":"For example, Cash, Credit Card","paymentModeNameRequired":"Payment mode name is required","paymentModeNameToDelete":"Payment mode name: {{paymentModeName}}","paymentModeRequired":"Payment mode is required","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment modes configuration","paymentOptionRequired":"At least one payment option is required","paymentProcessedSuccessfully":"Payment processed successfully","payments":"Payments","pendingBills":"Pending bills","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","priceMustBeNumber":"Price must be a valid number","priceMustBePositive":"Price must be greater than 0","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process payment","quantity":"Quantity","quantityCannotExceed100":"Quantity cannot exceed 100","quantityMustBeAtLeastOne":"Quantity must be at least 1","quantityMustBeInteger":"Quantity must be a whole number","quantityMustBeNumber":"Quantity must be a valid number","quantityRequired":"Quantity is required","referenceNumber":"Reference number","remove":"Remove","removePaymentMethod":"Remove payment method","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service","selectedItems":"Selected items","selectLocation":"Select location","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","selectPaymentMode":"Select payment mode","selectServiceType":"Select service type","sellingPrice":"Selling price","serviceList":"Service list","serviceName":"Service name","serviceNameExceedsLimit":"Service name cannot exceed {{MAX_NAME_LENGTH}} characters","serviceNameRequired":"Service name is required","servicesList":"Services list","serviceStatus":"Service status","serviceType":"Service type","serviceTypeRequired":"Service type is required","shortName":"Short name","shortNameExceedsLimit":"Short name cannot exceed {{MAX_NAME_LENGTH}} characters","status":"Service status","student":"Student","submitting":"Submitting","success":"Success","total":"Total","totalAmount":"Total amount","totalTendered":"Total tendered","unitPrice":"Unit price","unitPriceHelperText":"This is the unit price for this item","uuid":"UUID","uuidRequired":"UUID is required","validationError":"Validation error","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|
package/dist/4652.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4652],{84652:e=>{e.exports=JSON.parse('{"
|
|
1
|
+
"use strict";(globalThis.webpackChunk_openmrs_esm_billing_app=globalThis.webpackChunk_openmrs_esm_billing_app||[]).push([[4652],{84652:e=>{e.exports=JSON.parse('{"add":"Add","addBill":"Add bill items","addBillableService":"Add billable service","addCashPoint":"Add cash point","addNewBillableService":"Add new billable service","addNewCashPoint":"Add new cash point","addNewPaymentMode":"Add new payment mode","addNewService":"Add new service","addPaymentMethod":"Add payment method","addPaymentMode":"Add payment mode","addPaymentOption":"Add payment option","amount":"Amount","amountDue":"Amount due","amountMustBePositive":"Amount must be greater than 0","amountRequired":"Amount is required","amountTendered":"Amount tendered","amountToWaiveAriaLabel":"Enter amount to waive","amountToWaiveHelper":"Specify the amount to be deducted from the bill","amountToWaiveLabel":"Amount to waive","associatedConcept":"Associated concept","billableService":"Billable service","billableServiceCreated":"Billable service created","billableServiceCreatedSuccessfully":"Billable service created successfully","billableServiceForm":"Billable service form","billableServices":"Billable services","billableServices__lower":"billable services","billableServicesManagement":"Billable services management","billableServiceUpdated":"Billable service updated","billableServiceUpdatedSuccessfully":"Billable service updated successfully","billAmount":"Bill amount","billCode":"Bill code","billCreatedSuccessfully":"Bill created successfully","billCreationError":"Bill creation error","billedItems":"Billed items","billedTo":"Billed to","billErrorService":"Billing service error","billing":"Billing","billingForm":"Billing form","billingHistory":"Billing history","billingSettings":"Billing settings","billItem":"Bill item","billItems":"Bill items","billLineItemEmpty":"This bill has no line items","billList":"Bill list","billMetrics":"Bill metrics","billName":"{{billName}}","billPayment":"Bill payment","billPaymentError":"Bill payment error","billPaymentRequiredMessage":"The current patient has a pending bill. Advise the patient to settle the bill before receiving services","billProcessed":"Bill processed","billProcessedSuccessfully":"Bill processed successfully","billProcessingError":"Bill processing error","billsTable":"Bills table","billTotal":"Bill total","billWaiver":"Bill waiver","billWaiverError":"Bill waiver failed {{error}}","billWaiverSuccess":"Bill waiver successful","birthDate":"Date of birth","cashPointConfig":"Cash point configuration","cashPointHistory":"Cash point history","cashPointLocation":"Cash point location","cashPointName":"Cash point name","cashPointNamePlaceholder":"For example, Pharmacy Cash Point","cashPointNameRequired":"Cash point name is required","cashPointSaved":"Cash point was successfully saved.","cashPointUuid":"Cash point UUID","cashPointUuidPlaceholder":"Enter UUID","checkFilters":"Check the filters above","childUnder5":"Child under 5","confirmDeleteMessage":"Are you sure you want to delete this payment mode? Proceed cautiously.","cumulativeBills":"Cumulative bills","currentPrice":"Current price","date":"Date","dateAndTime":"Date and time","dateOfPayment":"Date of payment","deletePaymentMode":"Delete payment mode","deleting":"Deleting","description":"Description","descriptionPlaceholder":"For example, Used for all cash transactions","discard":"Discard","discount":"Discount","discountAmount":"Discount amount","editBillableService":"Edit billable service","editBillLineItem":"Edit bill line item","editPaymentMode":"Edit payment mode","editThisBillItem":"Edit this bill item","enterAmount":"Enter amount","enterReferenceNumber":"Enter reference number","enterSellingPrice":"Enter selling price","enterServiceName":"Enter service name","enterServiceShortName":"Enter service short name","errorCreatingBill":"An error occurred while creating the bill","errorDeletingPaymentMode":"An error occurred while deleting the payment mode.","errorFetchingCashPoints":"An error occurred while fetching cash points.","errorFetchingLocations":"An error occurred while fetching locations.","errorLoadingBillableServices":"Error loading billable services","errorLoadingBillServices":"Error loading bill services","errorLoadingPaymentModes":"Error loading payment modes","errorPrintingInvoice":"Error printing invoice","errorProcessingPayment":"Error processing payment","errorSavingCashPoint":"An error occurred while saving the cash point.","errorSavingPaymentMode":"An error occurred while saving the payment mode.","filterBy":"Filter by:","filterTable":"Filter table","gender":"Gender","grandTotal":"Grand total","home":"Home","identifier":"Identifier","insuranceScheme":"Insurance scheme","invalidUuidFormat":"Invalid UUID format","invalidWaiverAmount":"Invalid waiver amount","inventoryItem":"Inventory item","invoice":"Invoice","invoiceDate":"Invoice date","invoiceError":"Invoice error","invoiceLineItems":"Invoice line items","invoiceNumber":"Invoice #","invoiceStatus":"Invoice status","item":"Item","itemsToBeBilled":"Items to be billed","launchBillForm":"Launch bill form","lineItems":"Line items","lineItemUpdated":"Line item updated","lineItemUpdateErrorDefault":"Unable to update the bill line item. Please try again.","lineItemUpdateFailed":"Failed to update line item","lineItemUpdateSuccess":"The bill line item has been updated successfully","loading":"Loading data","loadingBillInfo":"Loading bill information","loadingBillingServices":"Loading billing services","loadingBillItems":"Loading bill items","loadingBillMetrics":"Loading bill metrics","loadingDescription":"Loading","location":"Location","locationRequired":"Location is required","manageBillableServices":"Manage billable services","name":"Name","nextPage":"Next page","noBillToDisplay":"There are no bills to display for this patient","noMatchingBillsToDisplay":"No matching bills to display","noMatchingItemsToDisplay":"No matching items to display","noMatchingServicesToDisplay":"No matching services to display","nonPaying":"Non paying","noResultsFor":"No results for {{searchTerm}}","number":"Number","ok":"OK","paidBills":"Paid bills","patientBill":"Patient bill","patientBillingAlert":"Patient billing alert","patientBills":"Patient bills","patientBillsDescription":"List of patient bills","patientCategory":"Patient category","paying":"Paying","paymentAmountCannotExceedAmountDue":"Payment amount cannot exceed amount due","paymentDetails":"Payment details","paymentMethod":"Payment method","paymentMethodRequired":"Payment method is required for all items","paymentMode":"Payment mode","paymentModeDeleted":"Payment mode was successfully deleted.","paymentModeHistory":"Payment mode history","paymentModeNameLabel":"Payment mode name","paymentModeNamePlaceholder":"For example, Cash, Credit Card","paymentModeNameRequired":"Payment mode name is required","paymentModeNameToDelete":"Payment mode name: {{paymentModeName}}","paymentModeRequired":"Payment mode is required","paymentModeSaved":"Payment mode was successfully saved.","paymentModesConfig":"Payment modes configuration","paymentOptionRequired":"At least one payment option is required","paymentProcessedSuccessfully":"Payment processed successfully","payments":"Payments","pendingBills":"Pending bills","policyNumber":"Policy number","postWaiver":"Post waiver","previousPage":"Previous page","price":"Price","priceIsRequired":"Price is required","priceMustBeNumber":"Price must be a valid number","priceMustBePositive":"Price must be greater than 0","prices":"Prices","printBill":"Print bill","printReceipt":"Print receipt","processPayment":"Process payment","quantity":"Quantity","quantityCannotExceed100":"Quantity cannot exceed 100","quantityMustBeAtLeastOne":"Quantity must be at least 1","quantityMustBeInteger":"Quantity must be a whole number","quantityMustBeNumber":"Quantity must be a valid number","quantityRequired":"Quantity is required","referenceNumber":"Reference number","remove":"Remove","removePaymentMethod":"Remove payment method","saveAndClose":"Save and close","saving":"Saving","searchConcepts":"Search associated concept","searching":"Searching","searchItems":"Search items and services","searchThisTable":"Search this table","selectBillableService":"Select a billable service","selectedItems":"Selected items","selectLocation":"Select location","selectPatientCategory":"Select patient category","selectPaymentMethod":"Select payment method","selectPaymentMode":"Select payment mode","selectServiceType":"Select service type","sellingPrice":"Selling price","serviceList":"Service list","serviceName":"Service name","serviceNameExceedsLimit":"Service name cannot exceed {{MAX_NAME_LENGTH}} characters","serviceNameRequired":"Service name is required","servicesList":"Services list","serviceStatus":"Service status","serviceType":"Service type","serviceTypeRequired":"Service type is required","shortName":"Short name","shortNameExceedsLimit":"Short name cannot exceed {{MAX_NAME_LENGTH}} characters","status":"Service status","student":"Student","submitting":"Submitting","success":"Success","total":"Total","totalAmount":"Total amount","totalTendered":"Total tendered","unitPrice":"Unit price","unitPriceHelperText":"This is the unit price for this item","uuid":"UUID","uuidRequired":"UUID is required","validationError":"Validation error","visitTime":"Visit time","waiverForm":"Waiver form"}')}}]);
|