@kenyaemr/esm-billing-app 5.4.1-pre.2107 → 5.4.1-pre.2108
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/.turbo/turbo-build.log +85 -85
- package/dist/574.js +1 -1
- package/dist/912.js +1 -1
- package/dist/912.js.map +1 -1
- package/dist/kenyaemr-esm-billing-app.js.buildmanifest.json +9 -9
- package/dist/main.js +2 -2
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/claims/dashboard/table/claims-table.component.tsx +35 -14
- package/src/hooks/usePaymentSchema.tsx +1 -0
- package/src/invoice/invoice-table.component.tsx +1 -1
- package/src/invoice/payments/payment-form/payment-form.component.tsx +107 -56
- package/src/invoice/payments/payment-form/payment-form.scss +5 -2
- package/src/invoice/payments/payments.component.tsx +6 -2
- package/src/invoice/payments/payments.test.tsx +42 -10
- package/src/invoice/payments/utils.ts +2 -0
- package/src/types/index.ts +24 -1
- package/src/utils.ts +6 -0
- package/translations/en.json +4 -1
package/translations/en.json
CHANGED
|
@@ -61,6 +61,7 @@
|
|
|
61
61
|
"chooseInterventions": "Choose interventions",
|
|
62
62
|
"choosePackage": "Choose package",
|
|
63
63
|
"claim": "Process claims",
|
|
64
|
+
"claimableItems": "Claimable Items",
|
|
64
65
|
"claimCode": "Claim Code",
|
|
65
66
|
"claimedAmount": "Claimed Amount",
|
|
66
67
|
"claimError": "Claim Error",
|
|
@@ -137,6 +138,7 @@
|
|
|
137
138
|
"incompletePaymentSubtitle": "Please ensure all selected line items are fully paid, Total amount expected is {{selectedLineItemsAmountDue}}",
|
|
138
139
|
"initiatePayment": "Initiate Payment",
|
|
139
140
|
"inputSampleSchema": "Input sample schema",
|
|
141
|
+
"insurancePaidItems": "Items paid through Insurance",
|
|
140
142
|
"insuranceScheme": "Insurance scheme",
|
|
141
143
|
"insurer": "Insurer",
|
|
142
144
|
"interventionCode": "Intervention Code",
|
|
@@ -171,6 +173,7 @@
|
|
|
171
173
|
"noBillsFoundDescription": "No bills found for this patient",
|
|
172
174
|
"noCashPoints": "No Cash Points",
|
|
173
175
|
"noCashPointsConfigured": "There are no cash points configured for this location",
|
|
176
|
+
"noInsurancePaidItems": "No items paid through insurance found",
|
|
174
177
|
"noItemsSelected": "No items selected",
|
|
175
178
|
"noMatchingBillsToDisplay": "No matching bills to display",
|
|
176
179
|
"noMatchingItemsToDisplay": "No matching items to display",
|
|
@@ -258,7 +261,7 @@
|
|
|
258
261
|
"selectAttributeFormat": "Select attribute format",
|
|
259
262
|
"selectExemptionCategory": "Select exemption category",
|
|
260
263
|
"selectInsuranceScheme": "Select insurance scheme",
|
|
261
|
-
"
|
|
264
|
+
"selectLineItemToPay": "Select line item to pay",
|
|
262
265
|
"selectPaymentMethod": "Select payment method",
|
|
263
266
|
"selectPaymentMode": "Select payment mode",
|
|
264
267
|
"selectProvider": "Select Provider",
|