@voyant-travel/finance-react 0.119.5
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/LICENSE +201 -0
- package/README.md +75 -0
- package/dist/admin/booking-invoices-widget.d.ts +19 -0
- package/dist/admin/booking-invoices-widget.d.ts.map +1 -0
- package/dist/admin/booking-invoices-widget.js +204 -0
- package/dist/admin/booking-payment-policy-widget.d.ts +21 -0
- package/dist/admin/booking-payment-policy-widget.d.ts.map +1 -0
- package/dist/admin/booking-payment-policy-widget.js +128 -0
- package/dist/admin/booking-pending-payment-sessions-widget.d.ts +24 -0
- package/dist/admin/booking-pending-payment-sessions-widget.d.ts.map +1 -0
- package/dist/admin/booking-pending-payment-sessions-widget.js +139 -0
- package/dist/admin/credit-note-dialog.d.ts +9 -0
- package/dist/admin/credit-note-dialog.d.ts.map +1 -0
- package/dist/admin/credit-note-dialog.js +70 -0
- package/dist/admin/finance-shared.d.ts +7 -0
- package/dist/admin/finance-shared.d.ts.map +1 -0
- package/dist/admin/finance-shared.js +30 -0
- package/dist/admin/index.d.ts +99 -0
- package/dist/admin/index.d.ts.map +1 -0
- package/dist/admin/index.js +286 -0
- package/dist/admin/invoice-detail-host.d.ts +19 -0
- package/dist/admin/invoice-detail-host.d.ts.map +1 -0
- package/dist/admin/invoice-detail-host.js +147 -0
- package/dist/admin/invoice-detail-sections.d.ts +31 -0
- package/dist/admin/invoice-detail-sections.d.ts.map +1 -0
- package/dist/admin/invoice-detail-sections.js +109 -0
- package/dist/admin/invoice-detail-skeleton.d.ts +11 -0
- package/dist/admin/invoice-detail-skeleton.d.ts.map +1 -0
- package/dist/admin/invoice-detail-skeleton.js +33 -0
- package/dist/admin/line-item-dialog.d.ts +10 -0
- package/dist/admin/line-item-dialog.d.ts.map +1 -0
- package/dist/admin/line-item-dialog.js +91 -0
- package/dist/admin/pages/invoice-detail.d.ts +8 -0
- package/dist/admin/pages/invoice-detail.d.ts.map +1 -0
- package/dist/admin/pages/invoice-detail.js +11 -0
- package/dist/admin/pages/invoices-index.d.ts +8 -0
- package/dist/admin/pages/invoices-index.d.ts.map +1 -0
- package/dist/admin/pages/invoices-index.js +14 -0
- package/dist/admin/pages/payment-detail.d.ts +8 -0
- package/dist/admin/pages/payment-detail.d.ts.map +1 -0
- package/dist/admin/pages/payment-detail.js +11 -0
- package/dist/admin/pages/payments-index.d.ts +9 -0
- package/dist/admin/pages/payments-index.d.ts.map +1 -0
- package/dist/admin/pages/payments-index.js +21 -0
- package/dist/admin/pages/profitability.d.ts +10 -0
- package/dist/admin/pages/profitability.d.ts.map +1 -0
- package/dist/admin/pages/profitability.js +32 -0
- package/dist/admin/pages/supplier-invoice-detail.d.ts +20 -0
- package/dist/admin/pages/supplier-invoice-detail.d.ts.map +1 -0
- package/dist/admin/pages/supplier-invoice-detail.js +102 -0
- package/dist/admin/pages/supplier-invoices-index.d.ts +9 -0
- package/dist/admin/pages/supplier-invoices-index.d.ts.map +1 -0
- package/dist/admin/pages/supplier-invoices-index.js +16 -0
- package/dist/admin/payment-detail-host.d.ts +12 -0
- package/dist/admin/payment-detail-host.d.ts.map +1 -0
- package/dist/admin/payment-detail-host.js +108 -0
- package/dist/admin/payment-detail-skeleton.d.ts +8 -0
- package/dist/admin/payment-detail-skeleton.d.ts.map +1 -0
- package/dist/admin/payment-detail-skeleton.js +15 -0
- package/dist/admin/payment-dialog.d.ts +9 -0
- package/dist/admin/payment-dialog.d.ts.map +1 -0
- package/dist/admin/payment-dialog.js +99 -0
- package/dist/admin/record-payment-dialog.d.ts +16 -0
- package/dist/admin/record-payment-dialog.d.ts.map +1 -0
- package/dist/admin/record-payment-dialog.js +219 -0
- package/dist/admin/supplier-payment-policy-widget.d.ts +18 -0
- package/dist/admin/supplier-payment-policy-widget.d.ts.map +1 -0
- package/dist/admin/supplier-payment-policy-widget.js +31 -0
- package/dist/admin/use-supplier-picker.d.ts +19 -0
- package/dist/admin/use-supplier-picker.d.ts.map +1 -0
- package/dist/admin/use-supplier-picker.js +30 -0
- package/dist/checkout-components/collect-payment-dialog.d.ts +45 -0
- package/dist/checkout-components/collect-payment-dialog.d.ts.map +1 -0
- package/dist/checkout-components/collect-payment-dialog.js +121 -0
- package/dist/checkout-components/payment-link-landing-page.d.ts +76 -0
- package/dist/checkout-components/payment-link-landing-page.d.ts.map +1 -0
- package/dist/checkout-components/payment-link-landing-page.js +173 -0
- package/dist/checkout-components/payment-step.d.ts +42 -0
- package/dist/checkout-components/payment-step.d.ts.map +1 -0
- package/dist/checkout-components/payment-step.js +113 -0
- package/dist/checkout-hooks/index.d.ts +5 -0
- package/dist/checkout-hooks/index.d.ts.map +1 -0
- package/dist/checkout-hooks/index.js +4 -0
- package/dist/checkout-hooks/use-checkout-payment-link-config.d.ts +20 -0
- package/dist/checkout-hooks/use-checkout-payment-link-config.d.ts.map +1 -0
- package/dist/checkout-hooks/use-checkout-payment-link-config.js +26 -0
- package/dist/checkout-hooks/use-collect-payment.d.ts +227 -0
- package/dist/checkout-hooks/use-collect-payment.d.ts.map +1 -0
- package/dist/checkout-hooks/use-collect-payment.js +80 -0
- package/dist/checkout-hooks/use-initiate-checkout-collection.d.ts +308 -0
- package/dist/checkout-hooks/use-initiate-checkout-collection.d.ts.map +1 -0
- package/dist/checkout-hooks/use-initiate-checkout-collection.js +35 -0
- package/dist/checkout-hooks/use-preview-checkout-collection.d.ts +65 -0
- package/dist/checkout-hooks/use-preview-checkout-collection.d.ts.map +1 -0
- package/dist/checkout-hooks/use-preview-checkout-collection.js +27 -0
- package/dist/checkout-i18n/en.d.ts +3 -0
- package/dist/checkout-i18n/en.d.ts.map +1 -0
- package/dist/checkout-i18n/en.js +127 -0
- package/dist/checkout-i18n/index.d.ts +5 -0
- package/dist/checkout-i18n/index.d.ts.map +1 -0
- package/dist/checkout-i18n/index.js +3 -0
- package/dist/checkout-i18n/messages.d.ts +121 -0
- package/dist/checkout-i18n/messages.d.ts.map +1 -0
- package/dist/checkout-i18n/messages.js +1 -0
- package/dist/checkout-i18n/provider.d.ts +26 -0
- package/dist/checkout-i18n/provider.d.ts.map +1 -0
- package/dist/checkout-i18n/provider.js +41 -0
- package/dist/checkout-i18n/ro.d.ts +3 -0
- package/dist/checkout-i18n/ro.d.ts.map +1 -0
- package/dist/checkout-i18n/ro.js +127 -0
- package/dist/checkout-types.d.ts +53 -0
- package/dist/checkout-types.d.ts.map +1 -0
- package/dist/checkout-types.js +1 -0
- package/dist/checkout-ui.d.ts +7 -0
- package/dist/checkout-ui.d.ts.map +1 -0
- package/dist/checkout-ui.js +4 -0
- package/dist/checkout.d.ts +5 -0
- package/dist/checkout.d.ts.map +1 -0
- package/dist/checkout.js +3 -0
- package/dist/client.d.ts +16 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/client.js +79 -0
- package/dist/components/accountant-portal/body.d.ts +8 -0
- package/dist/components/accountant-portal/body.d.ts.map +1 -0
- package/dist/components/accountant-portal/body.js +114 -0
- package/dist/components/accountant-portal/widgets.d.ts +13 -0
- package/dist/components/accountant-portal/widgets.d.ts.map +1 -0
- package/dist/components/accountant-portal/widgets.js +27 -0
- package/dist/components/accountant-portal.d.ts +10 -0
- package/dist/components/accountant-portal.d.ts.map +1 -0
- package/dist/components/accountant-portal.js +22 -0
- package/dist/components/accountant-share-dialog.d.ts +6 -0
- package/dist/components/accountant-share-dialog.d.ts.map +1 -0
- package/dist/components/accountant-share-dialog.js +53 -0
- package/dist/components/async-combobox.d.ts +33 -0
- package/dist/components/async-combobox.d.ts.map +1 -0
- package/dist/components/async-combobox.js +100 -0
- package/dist/components/booking-invoice-dialog.d.ts +63 -0
- package/dist/components/booking-invoice-dialog.d.ts.map +1 -0
- package/dist/components/booking-invoice-dialog.js +383 -0
- package/dist/components/cost-categories-page.d.ts +5 -0
- package/dist/components/cost-categories-page.d.ts.map +1 -0
- package/dist/components/cost-categories-page.js +30 -0
- package/dist/components/invoice-action-ledger-card.d.ts +15 -0
- package/dist/components/invoice-action-ledger-card.d.ts.map +1 -0
- package/dist/components/invoice-action-ledger-card.js +76 -0
- package/dist/components/invoice-bulk-actions.d.ts +10 -0
- package/dist/components/invoice-bulk-actions.d.ts.map +1 -0
- package/dist/components/invoice-bulk-actions.js +19 -0
- package/dist/components/invoice-detail-page/cards.d.ts +44 -0
- package/dist/components/invoice-detail-page/cards.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/cards.js +43 -0
- package/dist/components/invoice-detail-page/header.d.ts +15 -0
- package/dist/components/invoice-detail-page/header.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/header.js +30 -0
- package/dist/components/invoice-detail-page/notes-dialogs.d.ts +28 -0
- package/dist/components/invoice-detail-page/notes-dialogs.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/notes-dialogs.js +104 -0
- package/dist/components/invoice-detail-page/primitives.d.ts +47 -0
- package/dist/components/invoice-detail-page/primitives.d.ts.map +1 -0
- package/dist/components/invoice-detail-page/primitives.js +76 -0
- package/dist/components/invoice-detail-page-with-action-ledger.d.ts +7 -0
- package/dist/components/invoice-detail-page-with-action-ledger.d.ts.map +1 -0
- package/dist/components/invoice-detail-page-with-action-ledger.js +11 -0
- package/dist/components/invoice-detail-page.d.ts +46 -0
- package/dist/components/invoice-detail-page.d.ts.map +1 -0
- package/dist/components/invoice-detail-page.js +134 -0
- package/dist/components/invoice-dialog.d.ts +9 -0
- package/dist/components/invoice-dialog.d.ts.map +1 -0
- package/dist/components/invoice-dialog.js +145 -0
- package/dist/components/invoice-number-series-dialog.d.ts +9 -0
- package/dist/components/invoice-number-series-dialog.d.ts.map +1 -0
- package/dist/components/invoice-number-series-dialog.js +134 -0
- package/dist/components/invoice-number-series-format.d.ts +3 -0
- package/dist/components/invoice-number-series-format.d.ts.map +1 -0
- package/dist/components/invoice-number-series-format.js +4 -0
- package/dist/components/invoice-number-series-page.d.ts +5 -0
- package/dist/components/invoice-number-series-page.d.ts.map +1 -0
- package/dist/components/invoice-number-series-page.js +55 -0
- package/dist/components/invoice-table-parts.d.ts +25 -0
- package/dist/components/invoice-table-parts.d.ts.map +1 -0
- package/dist/components/invoice-table-parts.js +32 -0
- package/dist/components/invoices-page-skeleton.d.ts +5 -0
- package/dist/components/invoices-page-skeleton.d.ts.map +1 -0
- package/dist/components/invoices-page-skeleton.js +13 -0
- package/dist/components/invoices-page.d.ts +6 -0
- package/dist/components/invoices-page.d.ts.map +1 -0
- package/dist/components/invoices-page.js +145 -0
- package/dist/components/payment-detail-page.d.ts +47 -0
- package/dist/components/payment-detail-page.d.ts.map +1 -0
- package/dist/components/payment-detail-page.js +90 -0
- package/dist/components/payment-policy-form.d.ts +49 -0
- package/dist/components/payment-policy-form.d.ts.map +1 -0
- package/dist/components/payment-policy-form.js +82 -0
- package/dist/components/payments-page/controls.d.ts +23 -0
- package/dist/components/payments-page/controls.d.ts.map +1 -0
- package/dist/components/payments-page/controls.js +20 -0
- package/dist/components/payments-page-skeleton.d.ts +5 -0
- package/dist/components/payments-page-skeleton.d.ts.map +1 -0
- package/dist/components/payments-page-skeleton.js +13 -0
- package/dist/components/payments-page.d.ts +20 -0
- package/dist/components/payments-page.d.ts.map +1 -0
- package/dist/components/payments-page.js +143 -0
- package/dist/components/profitability-page/sections.d.ts +24 -0
- package/dist/components/profitability-page/sections.d.ts.map +1 -0
- package/dist/components/profitability-page/sections.js +43 -0
- package/dist/components/profitability-page.d.ts +13 -0
- package/dist/components/profitability-page.d.ts.map +1 -0
- package/dist/components/profitability-page.js +175 -0
- package/dist/components/record-booking-payment-dialog/shared.d.ts +54 -0
- package/dist/components/record-booking-payment-dialog/shared.d.ts.map +1 -0
- package/dist/components/record-booking-payment-dialog/shared.js +47 -0
- package/dist/components/record-booking-payment-dialog.d.ts +4 -0
- package/dist/components/record-booking-payment-dialog.d.ts.map +1 -0
- package/dist/components/record-booking-payment-dialog.js +256 -0
- package/dist/components/supplier-invoice-detail-page/dialogs.d.ts +34 -0
- package/dist/components/supplier-invoice-detail-page/dialogs.d.ts.map +1 -0
- package/dist/components/supplier-invoice-detail-page/dialogs.js +119 -0
- package/dist/components/supplier-invoice-detail-page/shared.d.ts +64 -0
- package/dist/components/supplier-invoice-detail-page/shared.d.ts.map +1 -0
- package/dist/components/supplier-invoice-detail-page/shared.js +70 -0
- package/dist/components/supplier-invoice-detail-page.d.ts +4 -0
- package/dist/components/supplier-invoice-detail-page.d.ts.map +1 -0
- package/dist/components/supplier-invoice-detail-page.js +101 -0
- package/dist/components/supplier-invoice-form-dialog.d.ts +45 -0
- package/dist/components/supplier-invoice-form-dialog.d.ts.map +1 -0
- package/dist/components/supplier-invoice-form-dialog.js +102 -0
- package/dist/components/supplier-invoices-page.d.ts +14 -0
- package/dist/components/supplier-invoices-page.d.ts.map +1 -0
- package/dist/components/supplier-invoices-page.js +69 -0
- package/dist/components/supplier-payment-dialog.d.ts +7 -0
- package/dist/components/supplier-payment-dialog.d.ts.map +1 -0
- package/dist/components/supplier-payment-dialog.js +103 -0
- package/dist/components/taxes-page/policy-profile-sheet.d.ts +8 -0
- package/dist/components/taxes-page/policy-profile-sheet.d.ts.map +1 -0
- package/dist/components/taxes-page/policy-profile-sheet.js +52 -0
- package/dist/components/taxes-page/policy-rule-sheet.d.ts +10 -0
- package/dist/components/taxes-page/policy-rule-sheet.d.ts.map +1 -0
- package/dist/components/taxes-page/policy-rule-sheet.js +137 -0
- package/dist/components/taxes-page/shared.d.ts +128 -0
- package/dist/components/taxes-page/shared.d.ts.map +1 -0
- package/dist/components/taxes-page/shared.js +288 -0
- package/dist/components/taxes-page/sheets.d.ts +4 -0
- package/dist/components/taxes-page/sheets.d.ts.map +1 -0
- package/dist/components/taxes-page/sheets.js +3 -0
- package/dist/components/taxes-page/tax-sheet.d.ts +9 -0
- package/dist/components/taxes-page/tax-sheet.d.ts.map +1 -0
- package/dist/components/taxes-page/tax-sheet.js +108 -0
- package/dist/components/taxes-page.d.ts +4 -0
- package/dist/components/taxes-page.d.ts.map +1 -0
- package/dist/components/taxes-page.js +165 -0
- package/dist/hooks/index.d.ts +53 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +52 -0
- package/dist/hooks/use-accountant-share-mutation.d.ts +20 -0
- package/dist/hooks/use-accountant-share-mutation.d.ts.map +1 -0
- package/dist/hooks/use-accountant-share-mutation.js +27 -0
- package/dist/hooks/use-accountant-shares.d.ts +13 -0
- package/dist/hooks/use-accountant-shares.d.ts.map +1 -0
- package/dist/hooks/use-accountant-shares.js +8 -0
- package/dist/hooks/use-admin-booking-payments.d.ts +30 -0
- package/dist/hooks/use-admin-booking-payments.d.ts.map +1 -0
- package/dist/hooks/use-admin-booking-payments.js +18 -0
- package/dist/hooks/use-all-payments.d.ts +35 -0
- package/dist/hooks/use-all-payments.d.ts.map +1 -0
- package/dist/hooks/use-all-payments.js +12 -0
- package/dist/hooks/use-booking-guarantees.d.ts +82 -0
- package/dist/hooks/use-booking-guarantees.d.ts.map +1 -0
- package/dist/hooks/use-booking-guarantees.js +46 -0
- package/dist/hooks/use-booking-payment-schedule-regenerate-mutation.d.ts +44 -0
- package/dist/hooks/use-booking-payment-schedule-regenerate-mutation.d.ts.map +1 -0
- package/dist/hooks/use-booking-payment-schedule-regenerate-mutation.js +27 -0
- package/dist/hooks/use-booking-payment-schedules.d.ts +63 -0
- package/dist/hooks/use-booking-payment-schedules.d.ts.map +1 -0
- package/dist/hooks/use-booking-payment-schedules.js +47 -0
- package/dist/hooks/use-cost-categories.d.ts +14 -0
- package/dist/hooks/use-cost-categories.d.ts.map +1 -0
- package/dist/hooks/use-cost-categories.js +9 -0
- package/dist/hooks/use-cost-category-mutation.d.ts +31 -0
- package/dist/hooks/use-cost-category-mutation.d.ts.map +1 -0
- package/dist/hooks/use-cost-category-mutation.js +27 -0
- package/dist/hooks/use-departure-profitability.d.ts +56 -0
- package/dist/hooks/use-departure-profitability.d.ts.map +1 -0
- package/dist/hooks/use-departure-profitability.js +12 -0
- package/dist/hooks/use-finance-action-ledger.d.ts +94 -0
- package/dist/hooks/use-finance-action-ledger.d.ts.map +1 -0
- package/dist/hooks/use-finance-action-ledger.js +20 -0
- package/dist/hooks/use-invoice-attachment-mutation.d.ts +43 -0
- package/dist/hooks/use-invoice-attachment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-attachment-mutation.js +39 -0
- package/dist/hooks/use-invoice-attachments.d.ts +18 -0
- package/dist/hooks/use-invoice-attachments.d.ts.map +1 -0
- package/dist/hooks/use-invoice-attachments.js +12 -0
- package/dist/hooks/use-invoice-bulk-status-mutation.d.ts +51 -0
- package/dist/hooks/use-invoice-bulk-status-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-bulk-status-mutation.js +66 -0
- package/dist/hooks/use-invoice-credit-note-mutation.d.ts +38 -0
- package/dist/hooks/use-invoice-credit-note-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-credit-note-mutation.js +35 -0
- package/dist/hooks/use-invoice-credit-notes.d.ts +17 -0
- package/dist/hooks/use-invoice-credit-notes.d.ts.map +1 -0
- package/dist/hooks/use-invoice-credit-notes.js +12 -0
- package/dist/hooks/use-invoice-fx-rate.d.ts +19 -0
- package/dist/hooks/use-invoice-fx-rate.d.ts.map +1 -0
- package/dist/hooks/use-invoice-fx-rate.js +13 -0
- package/dist/hooks/use-invoice-line-item-mutation.d.ts +40 -0
- package/dist/hooks/use-invoice-line-item-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-line-item-mutation.js +42 -0
- package/dist/hooks/use-invoice-line-items.d.ts +17 -0
- package/dist/hooks/use-invoice-line-items.d.ts.map +1 -0
- package/dist/hooks/use-invoice-line-items.js +12 -0
- package/dist/hooks/use-invoice-mutation.d.ts +225 -0
- package/dist/hooks/use-invoice-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-mutation.js +121 -0
- package/dist/hooks/use-invoice-note-mutation.d.ts +11 -0
- package/dist/hooks/use-invoice-note-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-note-mutation.js +23 -0
- package/dist/hooks/use-invoice-notes.d.ts +13 -0
- package/dist/hooks/use-invoice-notes.d.ts.map +1 -0
- package/dist/hooks/use-invoice-notes.js +12 -0
- package/dist/hooks/use-invoice-number-series-mutation.d.ts +62 -0
- package/dist/hooks/use-invoice-number-series-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-number-series-mutation.js +39 -0
- package/dist/hooks/use-invoice-number-series.d.ts +28 -0
- package/dist/hooks/use-invoice-number-series.d.ts.map +1 -0
- package/dist/hooks/use-invoice-number-series.js +12 -0
- package/dist/hooks/use-invoice-payment-mutation.d.ts +29 -0
- package/dist/hooks/use-invoice-payment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-invoice-payment-mutation.js +35 -0
- package/dist/hooks/use-invoice-payments.d.ts +21 -0
- package/dist/hooks/use-invoice-payments.d.ts.map +1 -0
- package/dist/hooks/use-invoice-payments.js +12 -0
- package/dist/hooks/use-invoice.d.ts +32 -0
- package/dist/hooks/use-invoice.d.ts.map +1 -0
- package/dist/hooks/use-invoice.js +12 -0
- package/dist/hooks/use-invoices.d.ts +36 -0
- package/dist/hooks/use-invoices.d.ts.map +1 -0
- package/dist/hooks/use-invoices.js +12 -0
- package/dist/hooks/use-payment-mutation.d.ts +57 -0
- package/dist/hooks/use-payment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-payment-mutation.js +59 -0
- package/dist/hooks/use-payment-session-mutation.d.ts +205 -0
- package/dist/hooks/use-payment-session-mutation.d.ts.map +1 -0
- package/dist/hooks/use-payment-session-mutation.js +38 -0
- package/dist/hooks/use-payment-sessions.d.ts +97 -0
- package/dist/hooks/use-payment-sessions.d.ts.map +1 -0
- package/dist/hooks/use-payment-sessions.js +17 -0
- package/dist/hooks/use-payment.d.ts +31 -0
- package/dist/hooks/use-payment.d.ts.map +1 -0
- package/dist/hooks/use-payment.js +12 -0
- package/dist/hooks/use-product-profitability.d.ts +52 -0
- package/dist/hooks/use-product-profitability.d.ts.map +1 -0
- package/dist/hooks/use-product-profitability.js +12 -0
- package/dist/hooks/use-public-booking-documents.d.ts +29 -0
- package/dist/hooks/use-public-booking-documents.d.ts.map +1 -0
- package/dist/hooks/use-public-booking-documents.js +12 -0
- package/dist/hooks/use-public-booking-payment-options.d.ts +47 -0
- package/dist/hooks/use-public-booking-payment-options.d.ts.map +1 -0
- package/dist/hooks/use-public-booking-payment-options.js +12 -0
- package/dist/hooks/use-public-booking-payments.d.ts +24 -0
- package/dist/hooks/use-public-booking-payments.d.ts.map +1 -0
- package/dist/hooks/use-public-booking-payments.js +12 -0
- package/dist/hooks/use-public-finance-document-by-reference.d.ts +27 -0
- package/dist/hooks/use-public-finance-document-by-reference.d.ts.map +1 -0
- package/dist/hooks/use-public-finance-document-by-reference.js +12 -0
- package/dist/hooks/use-public-payment-session-mutation.d.ts +82 -0
- package/dist/hooks/use-public-payment-session-mutation.d.ts.map +1 -0
- package/dist/hooks/use-public-payment-session-mutation.js +33 -0
- package/dist/hooks/use-public-payment-session.d.ts +73 -0
- package/dist/hooks/use-public-payment-session.d.ts.map +1 -0
- package/dist/hooks/use-public-payment-session.js +12 -0
- package/dist/hooks/use-public-voucher-validation-mutation.d.ts +23 -0
- package/dist/hooks/use-public-voucher-validation-mutation.d.ts.map +1 -0
- package/dist/hooks/use-public-voucher-validation-mutation.js +17 -0
- package/dist/hooks/use-supplier-invoice-attachments.d.ts +17 -0
- package/dist/hooks/use-supplier-invoice-attachments.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice-attachments.js +12 -0
- package/dist/hooks/use-supplier-invoice-mutation.d.ts +353 -0
- package/dist/hooks/use-supplier-invoice-mutation.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice-mutation.js +81 -0
- package/dist/hooks/use-supplier-invoice-payments.d.ts +26 -0
- package/dist/hooks/use-supplier-invoice-payments.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice-payments.js +12 -0
- package/dist/hooks/use-supplier-invoice.d.ts +65 -0
- package/dist/hooks/use-supplier-invoice.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoice.js +12 -0
- package/dist/hooks/use-supplier-invoices.d.ts +36 -0
- package/dist/hooks/use-supplier-invoices.d.ts.map +1 -0
- package/dist/hooks/use-supplier-invoices.js +12 -0
- package/dist/hooks/use-supplier-payment-mutation.d.ts +55 -0
- package/dist/hooks/use-supplier-payment-mutation.d.ts.map +1 -0
- package/dist/hooks/use-supplier-payment-mutation.js +35 -0
- package/dist/hooks/use-supplier-payments.d.ts +27 -0
- package/dist/hooks/use-supplier-payments.d.ts.map +1 -0
- package/dist/hooks/use-supplier-payments.js +12 -0
- package/dist/hooks/use-traveler-profitability.d.ts +24 -0
- package/dist/hooks/use-traveler-profitability.d.ts.map +1 -0
- package/dist/hooks/use-traveler-profitability.js +11 -0
- package/dist/hooks/use-voucher-mutation.d.ts +105 -0
- package/dist/hooks/use-voucher-mutation.d.ts.map +1 -0
- package/dist/hooks/use-voucher-mutation.js +50 -0
- package/dist/hooks/use-voucher.d.ts +38 -0
- package/dist/hooks/use-voucher.d.ts.map +1 -0
- package/dist/hooks/use-voucher.js +17 -0
- package/dist/hooks/use-vouchers.d.ts +34 -0
- package/dist/hooks/use-vouchers.d.ts.map +1 -0
- package/dist/hooks/use-vouchers.js +18 -0
- package/dist/i18n/en/invoices.d.ts +278 -0
- package/dist/i18n/en/invoices.d.ts.map +1 -0
- package/dist/i18n/en/invoices.js +277 -0
- package/dist/i18n/en/numberingAndPayments.d.ts +387 -0
- package/dist/i18n/en/numberingAndPayments.d.ts.map +1 -0
- package/dist/i18n/en/numberingAndPayments.js +386 -0
- package/dist/i18n/en/profitability.d.ts +147 -0
- package/dist/i18n/en/profitability.d.ts.map +1 -0
- package/dist/i18n/en/profitability.js +146 -0
- package/dist/i18n/en/suppliers.d.ts +187 -0
- package/dist/i18n/en/suppliers.d.ts.map +1 -0
- package/dist/i18n/en/suppliers.js +186 -0
- package/dist/i18n/en.d.ts +998 -0
- package/dist/i18n/en.d.ts.map +1 -0
- package/dist/i18n/en.js +22 -0
- package/dist/i18n/index.d.ts +5 -0
- package/dist/i18n/index.d.ts.map +1 -0
- package/dist/i18n/index.js +3 -0
- package/dist/i18n/messages/core.d.ts +18 -0
- package/dist/i18n/messages/core.d.ts.map +1 -0
- package/dist/i18n/messages/core.js +30 -0
- package/dist/i18n/messages/invoices.d.ts +252 -0
- package/dist/i18n/messages/invoices.d.ts.map +1 -0
- package/dist/i18n/messages/invoices.js +1 -0
- package/dist/i18n/messages/numberingAndPayments.d.ts +277 -0
- package/dist/i18n/messages/numberingAndPayments.d.ts.map +1 -0
- package/dist/i18n/messages/numberingAndPayments.js +1 -0
- package/dist/i18n/messages/profitability.d.ts +151 -0
- package/dist/i18n/messages/profitability.d.ts.map +1 -0
- package/dist/i18n/messages/profitability.js +1 -0
- package/dist/i18n/messages/suppliers.d.ts +167 -0
- package/dist/i18n/messages/suppliers.d.ts.map +1 -0
- package/dist/i18n/messages/suppliers.js +1 -0
- package/dist/i18n/messages.d.ts +29 -0
- package/dist/i18n/messages.d.ts.map +1 -0
- package/dist/i18n/messages.js +1 -0
- package/dist/i18n/provider.d.ts +2018 -0
- package/dist/i18n/provider.d.ts.map +1 -0
- package/dist/i18n/provider.js +44 -0
- package/dist/i18n/ro/invoices.d.ts +278 -0
- package/dist/i18n/ro/invoices.d.ts.map +1 -0
- package/dist/i18n/ro/invoices.js +277 -0
- package/dist/i18n/ro/numberingAndPayments.d.ts +387 -0
- package/dist/i18n/ro/numberingAndPayments.d.ts.map +1 -0
- package/dist/i18n/ro/numberingAndPayments.js +386 -0
- package/dist/i18n/ro/profitability.d.ts +147 -0
- package/dist/i18n/ro/profitability.d.ts.map +1 -0
- package/dist/i18n/ro/profitability.js +146 -0
- package/dist/i18n/ro/suppliers.d.ts +187 -0
- package/dist/i18n/ro/suppliers.d.ts.map +1 -0
- package/dist/i18n/ro/suppliers.js +186 -0
- package/dist/i18n/ro.d.ts +998 -0
- package/dist/i18n/ro.d.ts.map +1 -0
- package/dist/i18n/ro.js +22 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +9 -0
- package/dist/operations.d.ts +484 -0
- package/dist/operations.d.ts.map +1 -0
- package/dist/operations.js +52 -0
- package/dist/provider.d.ts +2 -0
- package/dist/provider.d.ts.map +1 -0
- package/dist/provider.js +1 -0
- package/dist/query-keys.d.ts +195 -0
- package/dist/query-keys.d.ts.map +1 -0
- package/dist/query-keys.js +49 -0
- package/dist/query-options/public-reporting.d.ts +2129 -0
- package/dist/query-options/public-reporting.d.ts.map +1 -0
- package/dist/query-options/public-reporting.js +193 -0
- package/dist/query-options-action-ledger.d.ts +382 -0
- package/dist/query-options-action-ledger.d.ts.map +1 -0
- package/dist/query-options-action-ledger.js +36 -0
- package/dist/query-options.d.ts +2057 -0
- package/dist/query-options.d.ts.map +1 -0
- package/dist/query-options.js +328 -0
- package/dist/schemas/accountant.d.ts +168 -0
- package/dist/schemas/accountant.d.ts.map +1 -0
- package/dist/schemas/accountant.js +53 -0
- package/dist/schemas/action-ledger.d.ts +206 -0
- package/dist/schemas/action-ledger.d.ts.map +1 -0
- package/dist/schemas/action-ledger.js +83 -0
- package/dist/schemas/common.d.ts +17 -0
- package/dist/schemas/common.d.ts.map +1 -0
- package/dist/schemas/common.js +10 -0
- package/dist/schemas/invoice.d.ts +1451 -0
- package/dist/schemas/invoice.d.ts.map +1 -0
- package/dist/schemas/invoice.js +438 -0
- package/dist/schemas/profitability.d.ts +333 -0
- package/dist/schemas/profitability.d.ts.map +1 -0
- package/dist/schemas/profitability.js +84 -0
- package/dist/schemas/public.d.ts +481 -0
- package/dist/schemas/public.d.ts.map +1 -0
- package/dist/schemas/public.js +9 -0
- package/dist/schemas/responses.d.ts +632 -0
- package/dist/schemas/responses.d.ts.map +1 -0
- package/dist/schemas/responses.js +27 -0
- package/dist/schemas/supplier.d.ts +226 -0
- package/dist/schemas/supplier.d.ts.map +1 -0
- package/dist/schemas/supplier.js +103 -0
- package/dist/schemas/vouchers.d.ts +283 -0
- package/dist/schemas/vouchers.d.ts.map +1 -0
- package/dist/schemas/vouchers.js +49 -0
- package/dist/schemas.d.ts +10 -0
- package/dist/schemas.d.ts.map +1 -0
- package/dist/schemas.js +9 -0
- package/dist/ui.d.ts +27 -0
- package/dist/ui.d.ts.map +1 -0
- package/dist/ui.js +26 -0
- package/package.json +181 -0
- package/src/styles.css +12 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invoices.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/invoices.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoClB,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmEzB,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgDxB,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6H7B,CAAA"}
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
export const common = {
|
|
2
|
+
cancel: "Cancel",
|
|
3
|
+
saveChanges: "Save Changes",
|
|
4
|
+
invoiceStatusLabels: {
|
|
5
|
+
draft: "Draft",
|
|
6
|
+
pending_external_allocation: "Pending External Allocation",
|
|
7
|
+
issued: "Issued",
|
|
8
|
+
partially_paid: "Partially Paid",
|
|
9
|
+
paid: "Paid",
|
|
10
|
+
overdue: "Overdue",
|
|
11
|
+
void: "Void",
|
|
12
|
+
},
|
|
13
|
+
paymentMethodLabels: {
|
|
14
|
+
bank_transfer: "Bank Transfer",
|
|
15
|
+
credit_card: "Credit Card",
|
|
16
|
+
debit_card: "Debit Card",
|
|
17
|
+
cash: "Cash",
|
|
18
|
+
cheque: "Cheque",
|
|
19
|
+
wallet: "Wallet",
|
|
20
|
+
direct_bill: "Direct Bill",
|
|
21
|
+
voucher: "Voucher",
|
|
22
|
+
other: "Other",
|
|
23
|
+
},
|
|
24
|
+
supplierPaymentMethodLabels: {
|
|
25
|
+
bank_transfer: "Bank Transfer",
|
|
26
|
+
credit_card: "Credit Card",
|
|
27
|
+
cash: "Cash",
|
|
28
|
+
cheque: "Cheque",
|
|
29
|
+
other: "Other",
|
|
30
|
+
},
|
|
31
|
+
supplierPaymentStatusLabels: {
|
|
32
|
+
pending: "Pending",
|
|
33
|
+
completed: "Completed",
|
|
34
|
+
failed: "Failed",
|
|
35
|
+
refunded: "Refunded",
|
|
36
|
+
},
|
|
37
|
+
};
|
|
38
|
+
export const invoiceDialog = {
|
|
39
|
+
titles: {
|
|
40
|
+
create: "New Invoice",
|
|
41
|
+
edit: "Edit Invoice",
|
|
42
|
+
},
|
|
43
|
+
fields: {
|
|
44
|
+
invoiceNumber: "Invoice Number",
|
|
45
|
+
status: "Status",
|
|
46
|
+
bookingId: "Booking",
|
|
47
|
+
currency: "Currency",
|
|
48
|
+
subtotalCents: "Subtotal",
|
|
49
|
+
taxCents: "Tax",
|
|
50
|
+
totalCents: "Total",
|
|
51
|
+
issueDate: "Issue Date",
|
|
52
|
+
dueDate: "Due Date",
|
|
53
|
+
notes: "Notes",
|
|
54
|
+
type: "Type",
|
|
55
|
+
source: "Source",
|
|
56
|
+
schedule: "Payment schedule",
|
|
57
|
+
markAsPaid: "Mark as paid",
|
|
58
|
+
markAsPaidMethod: "Payment method",
|
|
59
|
+
markAsPaidDate: "Payment date",
|
|
60
|
+
syncToSmartbill: "Sync to SmartBill",
|
|
61
|
+
attachments: "Attachments",
|
|
62
|
+
},
|
|
63
|
+
typeLabels: {
|
|
64
|
+
invoice: "Invoice",
|
|
65
|
+
proforma: "Proforma",
|
|
66
|
+
},
|
|
67
|
+
sourceLabels: {
|
|
68
|
+
custom: "Custom",
|
|
69
|
+
schedule: "From schedule",
|
|
70
|
+
},
|
|
71
|
+
schedulePlaceholder: "Select a payment schedule",
|
|
72
|
+
scheduleEmpty: "No unpaid schedules available.",
|
|
73
|
+
scheduleLockedHint: "Amounts, currency and due date are taken from the schedule.",
|
|
74
|
+
attachmentsHint: "Attach supporting documents. Skipped when SmartBill sync is on.",
|
|
75
|
+
invoiceNumberAutoHint: "SmartBill assigns the number from the next sequence on issue.",
|
|
76
|
+
placeholders: {
|
|
77
|
+
invoiceNumber: "INV-2025-1234",
|
|
78
|
+
bookingId: "Search by booking number, customer, or product",
|
|
79
|
+
issueDate: "Pick issue date",
|
|
80
|
+
dueDate: "Pick due date",
|
|
81
|
+
notes: "Invoice notes...",
|
|
82
|
+
},
|
|
83
|
+
actions: {
|
|
84
|
+
create: "Create Invoice",
|
|
85
|
+
},
|
|
86
|
+
validation: {
|
|
87
|
+
invoiceNumberRequired: "Invoice number is required",
|
|
88
|
+
bookingIdRequired: "Booking is required",
|
|
89
|
+
currencyIsoCode: "Use 3-letter ISO code",
|
|
90
|
+
issueDateRequired: "Issue date is required",
|
|
91
|
+
dueDateRequired: "Due date is required",
|
|
92
|
+
lineItemInvalid: "Each line item needs a description and quantity ≥ 1.",
|
|
93
|
+
},
|
|
94
|
+
lineItems: {
|
|
95
|
+
sectionTitle: "Line items",
|
|
96
|
+
addRow: "Add line item",
|
|
97
|
+
empty: "No line items. Add rows to override the booking-derived totals.",
|
|
98
|
+
description: "Description",
|
|
99
|
+
quantity: "Qty",
|
|
100
|
+
unitPrice: "Unit price",
|
|
101
|
+
taxPercent: "Tax %",
|
|
102
|
+
lineTotal: "Total",
|
|
103
|
+
remove: "Remove line item",
|
|
104
|
+
},
|
|
105
|
+
};
|
|
106
|
+
export const invoicesPage = {
|
|
107
|
+
title: "Invoices",
|
|
108
|
+
description: "Customer-facing invoices, proformas, and credit notes.",
|
|
109
|
+
searchPlaceholder: "Search invoices...",
|
|
110
|
+
actions: {
|
|
111
|
+
newInvoice: "New Invoice",
|
|
112
|
+
},
|
|
113
|
+
bulkActions: {
|
|
114
|
+
selectionSummary: "{count} selected",
|
|
115
|
+
clearSelection: "Clear selection",
|
|
116
|
+
markPaid: "Mark paid",
|
|
117
|
+
markPaidConfirm: "Mark paid",
|
|
118
|
+
markPaidTitle: "Mark {count} invoices as paid?",
|
|
119
|
+
markPaidDescription: "Selected invoices will move to Paid, with paid amount set to the invoice total and balance due set to zero.",
|
|
120
|
+
selectAllOnPage: "Select all invoices on this page",
|
|
121
|
+
selectInvoice: "Select invoice",
|
|
122
|
+
successTitle: "Invoices updated",
|
|
123
|
+
successDescription: "{updated} of {total} invoices were marked paid.",
|
|
124
|
+
partialTitle: "Some invoices were not updated",
|
|
125
|
+
partialDescription: "{updated} of {total} invoices were marked paid. {failed} failed.",
|
|
126
|
+
},
|
|
127
|
+
filters: {
|
|
128
|
+
button: "Filters",
|
|
129
|
+
statusLabel: "Status",
|
|
130
|
+
statusAll: "All statuses",
|
|
131
|
+
currencyLabel: "Currency",
|
|
132
|
+
currencyAny: "Any currency",
|
|
133
|
+
dueDateLabel: "Due date",
|
|
134
|
+
dateAny: "Any date",
|
|
135
|
+
clear: "Clear",
|
|
136
|
+
},
|
|
137
|
+
columns: {
|
|
138
|
+
invoiceNumber: "Invoice #",
|
|
139
|
+
status: "Status",
|
|
140
|
+
total: "Total",
|
|
141
|
+
paid: "Paid",
|
|
142
|
+
balanceDue: "Balance Due",
|
|
143
|
+
dueDate: "Due Date",
|
|
144
|
+
},
|
|
145
|
+
empty: "No records found.",
|
|
146
|
+
loadFailed: "Failed to load records.",
|
|
147
|
+
pagination: {
|
|
148
|
+
showing: "Showing {count} of {total}",
|
|
149
|
+
page: "Page {page} / {pageCount}",
|
|
150
|
+
previous: "Previous",
|
|
151
|
+
next: "Next",
|
|
152
|
+
},
|
|
153
|
+
};
|
|
154
|
+
export const invoiceDetailPage = {
|
|
155
|
+
title: "Invoice",
|
|
156
|
+
invoiceTypeLabels: {
|
|
157
|
+
invoice: "Invoice",
|
|
158
|
+
proforma: "Proforma",
|
|
159
|
+
credit_note: "Credit note",
|
|
160
|
+
},
|
|
161
|
+
actions: {
|
|
162
|
+
back: "Back to finance",
|
|
163
|
+
edit: "Edit",
|
|
164
|
+
convertToInvoice: "Convert to invoice",
|
|
165
|
+
convertToInvoiceTitle: "Convert this proforma?",
|
|
166
|
+
convertToInvoiceDescription: "This creates the final invoice, moves any payments to it, and voids the proforma.",
|
|
167
|
+
void: "Void",
|
|
168
|
+
voidTitle: "Void this invoice?",
|
|
169
|
+
voidDescription: "This marks the invoice as void and keeps its audit history.",
|
|
170
|
+
voidUnavailable: "Only issued invoices without payments or credit notes can be voided.",
|
|
171
|
+
voidReasonPlaceholder: "Reason for voiding...",
|
|
172
|
+
delete: "Delete",
|
|
173
|
+
deleteTitle: "Delete this invoice?",
|
|
174
|
+
deleteDescription: "This permanently removes the draft invoice and its finance records.",
|
|
175
|
+
deleteOnlyDraft: "Only draft invoices can be deleted.",
|
|
176
|
+
mutationFailed: "Unable to complete the invoice action.",
|
|
177
|
+
viewBooking: "View booking",
|
|
178
|
+
viewPerson: "View person",
|
|
179
|
+
viewOrganization: "View organization",
|
|
180
|
+
addLineItem: "Add line item",
|
|
181
|
+
editLineItem: "Edit line item",
|
|
182
|
+
deleteLineItemShort: "Delete",
|
|
183
|
+
deleteLineItemTitle: "Delete this line item?",
|
|
184
|
+
deleteLineItemDescription: "This removes the selected line item and recalculates invoice totals.",
|
|
185
|
+
recordPayment: "Record payment",
|
|
186
|
+
addCreditNote: "Add credit note",
|
|
187
|
+
addNote: "Add note",
|
|
188
|
+
addAttachment: "Add attachment",
|
|
189
|
+
editAttachment: "Edit attachment",
|
|
190
|
+
deleteAttachmentShort: "Delete",
|
|
191
|
+
deleteAttachmentTitle: "Delete this attachment?",
|
|
192
|
+
deleteAttachmentDescription: "This removes the attachment record from the invoice.",
|
|
193
|
+
loadOlderActionLedger: "Load older",
|
|
194
|
+
},
|
|
195
|
+
titles: {
|
|
196
|
+
summary: "Invoice details",
|
|
197
|
+
links: "Dates and links",
|
|
198
|
+
lineItems: "Line items",
|
|
199
|
+
payments: "Payments",
|
|
200
|
+
creditNotes: "Credit notes",
|
|
201
|
+
notes: "Notes",
|
|
202
|
+
attachments: "Attachments",
|
|
203
|
+
actionLedger: "Action ledger",
|
|
204
|
+
},
|
|
205
|
+
fields: {
|
|
206
|
+
currency: "Currency",
|
|
207
|
+
subtotal: "Subtotal",
|
|
208
|
+
tax: "Tax",
|
|
209
|
+
total: "Total",
|
|
210
|
+
paid: "Paid",
|
|
211
|
+
balanceDue: "Balance due",
|
|
212
|
+
status: "Status",
|
|
213
|
+
issueDate: "Issue date",
|
|
214
|
+
dueDate: "Due date",
|
|
215
|
+
booking: "Booking",
|
|
216
|
+
person: "Person",
|
|
217
|
+
organization: "Organization",
|
|
218
|
+
notes: "Notes",
|
|
219
|
+
createdAt: "Created",
|
|
220
|
+
updatedAt: "Updated",
|
|
221
|
+
name: "Name",
|
|
222
|
+
kind: "Kind",
|
|
223
|
+
mimeType: "MIME type",
|
|
224
|
+
fileSize: "File size",
|
|
225
|
+
storageKey: "Storage key",
|
|
226
|
+
checksum: "Checksum",
|
|
227
|
+
},
|
|
228
|
+
columns: {
|
|
229
|
+
description: "Description",
|
|
230
|
+
quantity: "Qty",
|
|
231
|
+
unitPrice: "Unit price",
|
|
232
|
+
total: "Total",
|
|
233
|
+
taxRate: "Tax rate",
|
|
234
|
+
name: "Name",
|
|
235
|
+
kind: "Kind",
|
|
236
|
+
mimeType: "MIME type",
|
|
237
|
+
size: "Size",
|
|
238
|
+
},
|
|
239
|
+
states: {
|
|
240
|
+
loading: "Loading invoice...",
|
|
241
|
+
loadFailed: "Failed to load invoice.",
|
|
242
|
+
notFound: "Invoice not found.",
|
|
243
|
+
noValue: "-",
|
|
244
|
+
noLineItems: "No line items yet.",
|
|
245
|
+
noPayments: "No payments yet.",
|
|
246
|
+
noCreditNotes: "No credit notes yet.",
|
|
247
|
+
noNotes: "No notes yet.",
|
|
248
|
+
noAttachments: "No attachments yet.",
|
|
249
|
+
noActionLedger: "No ledger entries yet.",
|
|
250
|
+
actionLedgerLoadFailed: "Failed to load ledger entries.",
|
|
251
|
+
},
|
|
252
|
+
placeholders: {
|
|
253
|
+
note: "Add an internal note...",
|
|
254
|
+
attachmentName: "Supporting document",
|
|
255
|
+
attachmentKind: "supporting_document",
|
|
256
|
+
attachmentMimeType: "application/pdf",
|
|
257
|
+
attachmentFileSize: "12345",
|
|
258
|
+
attachmentStorageKey: "invoices/.../document.pdf",
|
|
259
|
+
attachmentChecksum: "sha256:...",
|
|
260
|
+
},
|
|
261
|
+
attachmentDialog: {
|
|
262
|
+
createTitle: "Add attachment",
|
|
263
|
+
editTitle: "Edit attachment",
|
|
264
|
+
createAction: "Add attachment",
|
|
265
|
+
nameRequired: "Attachment name is required",
|
|
266
|
+
},
|
|
267
|
+
noteDialog: {
|
|
268
|
+
title: "Add note",
|
|
269
|
+
createAction: "Add note",
|
|
270
|
+
contentRequired: "Note content is required",
|
|
271
|
+
},
|
|
272
|
+
creditNoteStatusLabels: {
|
|
273
|
+
draft: "Draft",
|
|
274
|
+
issued: "Issued",
|
|
275
|
+
applied: "Applied",
|
|
276
|
+
},
|
|
277
|
+
};
|
|
@@ -0,0 +1,387 @@
|
|
|
1
|
+
export declare const invoiceNumberSeriesPage: {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
actions: {
|
|
5
|
+
create: string;
|
|
6
|
+
};
|
|
7
|
+
columns: {
|
|
8
|
+
code: string;
|
|
9
|
+
name: string;
|
|
10
|
+
prefix: string;
|
|
11
|
+
current: string;
|
|
12
|
+
reset: string;
|
|
13
|
+
scope: string;
|
|
14
|
+
default: string;
|
|
15
|
+
status: string;
|
|
16
|
+
external: string;
|
|
17
|
+
};
|
|
18
|
+
filters: {
|
|
19
|
+
scopeLabel: string;
|
|
20
|
+
scopeAll: string;
|
|
21
|
+
activeLabel: string;
|
|
22
|
+
activeAll: string;
|
|
23
|
+
activeOnly: string;
|
|
24
|
+
inactiveOnly: string;
|
|
25
|
+
};
|
|
26
|
+
scopeLabels: {
|
|
27
|
+
invoice: string;
|
|
28
|
+
proforma: string;
|
|
29
|
+
credit_note: string;
|
|
30
|
+
};
|
|
31
|
+
resetStrategyLabels: {
|
|
32
|
+
never: string;
|
|
33
|
+
annual: string;
|
|
34
|
+
monthly: string;
|
|
35
|
+
};
|
|
36
|
+
active: string;
|
|
37
|
+
inactive: string;
|
|
38
|
+
default: string;
|
|
39
|
+
notDefault: string;
|
|
40
|
+
noExternalProvider: string;
|
|
41
|
+
empty: string;
|
|
42
|
+
loadFailed: string;
|
|
43
|
+
deleteConfirm: string;
|
|
44
|
+
};
|
|
45
|
+
export declare const invoiceNumberSeriesDialog: {
|
|
46
|
+
titleNew: string;
|
|
47
|
+
titleEdit: string;
|
|
48
|
+
fields: {
|
|
49
|
+
code: string;
|
|
50
|
+
name: string;
|
|
51
|
+
prefix: string;
|
|
52
|
+
separator: string;
|
|
53
|
+
padLength: string;
|
|
54
|
+
currentSequence: string;
|
|
55
|
+
resetStrategy: string;
|
|
56
|
+
scope: string;
|
|
57
|
+
isDefault: string;
|
|
58
|
+
externalProvider: string;
|
|
59
|
+
externalConfigKey: string;
|
|
60
|
+
active: string;
|
|
61
|
+
};
|
|
62
|
+
placeholders: {
|
|
63
|
+
code: string;
|
|
64
|
+
name: string;
|
|
65
|
+
prefix: string;
|
|
66
|
+
separator: string;
|
|
67
|
+
externalProvider: string;
|
|
68
|
+
externalConfigKey: string;
|
|
69
|
+
};
|
|
70
|
+
help: {
|
|
71
|
+
previewLabel: string;
|
|
72
|
+
previewSample: string;
|
|
73
|
+
default: string;
|
|
74
|
+
external: string;
|
|
75
|
+
};
|
|
76
|
+
actions: {
|
|
77
|
+
create: string;
|
|
78
|
+
};
|
|
79
|
+
validation: {
|
|
80
|
+
codeRequired: string;
|
|
81
|
+
nameRequired: string;
|
|
82
|
+
padLengthInvalid: string;
|
|
83
|
+
currentSequenceInvalid: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
export declare const paymentsPage: {
|
|
87
|
+
title: string;
|
|
88
|
+
description: string;
|
|
89
|
+
searchPlaceholder: string;
|
|
90
|
+
actions: {
|
|
91
|
+
recordPayment: string;
|
|
92
|
+
};
|
|
93
|
+
kindLabels: {
|
|
94
|
+
customer: string;
|
|
95
|
+
supplier: string;
|
|
96
|
+
};
|
|
97
|
+
filters: {
|
|
98
|
+
button: string;
|
|
99
|
+
kindLabel: string;
|
|
100
|
+
kindAll: string;
|
|
101
|
+
statusLabel: string;
|
|
102
|
+
statusAll: string;
|
|
103
|
+
methodLabel: string;
|
|
104
|
+
methodAll: string;
|
|
105
|
+
supplierLabel: string;
|
|
106
|
+
supplierAny: string;
|
|
107
|
+
supplierEmpty: string;
|
|
108
|
+
currencyLabel: string;
|
|
109
|
+
currencyAny: string;
|
|
110
|
+
paymentDateLabel: string;
|
|
111
|
+
dateAny: string;
|
|
112
|
+
clear: string;
|
|
113
|
+
};
|
|
114
|
+
columns: {
|
|
115
|
+
kind: string;
|
|
116
|
+
reference: string;
|
|
117
|
+
party: string;
|
|
118
|
+
amount: string;
|
|
119
|
+
status: string;
|
|
120
|
+
date: string;
|
|
121
|
+
method: string;
|
|
122
|
+
};
|
|
123
|
+
noValue: string;
|
|
124
|
+
empty: string;
|
|
125
|
+
loadFailed: string;
|
|
126
|
+
pagination: {
|
|
127
|
+
showing: string;
|
|
128
|
+
page: string;
|
|
129
|
+
previous: string;
|
|
130
|
+
next: string;
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
export declare const paymentDetailPage: {
|
|
134
|
+
actions: {
|
|
135
|
+
back: string;
|
|
136
|
+
viewInvoice: string;
|
|
137
|
+
viewBooking: string;
|
|
138
|
+
viewPerson: string;
|
|
139
|
+
viewOrganization: string;
|
|
140
|
+
viewSupplier: string;
|
|
141
|
+
edit: string;
|
|
142
|
+
delete: string;
|
|
143
|
+
deleteTitle: string;
|
|
144
|
+
deleteDescription: string;
|
|
145
|
+
};
|
|
146
|
+
titles: {
|
|
147
|
+
summary: string;
|
|
148
|
+
links: string;
|
|
149
|
+
metadata: string;
|
|
150
|
+
};
|
|
151
|
+
fields: {
|
|
152
|
+
amount: string;
|
|
153
|
+
baseAmount: string;
|
|
154
|
+
fxRate: string;
|
|
155
|
+
status: string;
|
|
156
|
+
method: string;
|
|
157
|
+
date: string;
|
|
158
|
+
reference: string;
|
|
159
|
+
notes: string;
|
|
160
|
+
kind: string;
|
|
161
|
+
paidBy: string;
|
|
162
|
+
paidTo: string;
|
|
163
|
+
organization: string;
|
|
164
|
+
invoice: string;
|
|
165
|
+
booking: string;
|
|
166
|
+
createdAt: string;
|
|
167
|
+
updatedAt: string;
|
|
168
|
+
};
|
|
169
|
+
states: {
|
|
170
|
+
loading: string;
|
|
171
|
+
loadFailed: string;
|
|
172
|
+
notFound: string;
|
|
173
|
+
noValue: string;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
176
|
+
export declare const paymentPolicy: {
|
|
177
|
+
form: {
|
|
178
|
+
inherit: {
|
|
179
|
+
label: string;
|
|
180
|
+
help: string;
|
|
181
|
+
tooltipLabel: string;
|
|
182
|
+
};
|
|
183
|
+
depositKind: {
|
|
184
|
+
label: string;
|
|
185
|
+
options: {
|
|
186
|
+
none: string;
|
|
187
|
+
percent: string;
|
|
188
|
+
fixed_cents: string;
|
|
189
|
+
};
|
|
190
|
+
};
|
|
191
|
+
depositValue: {
|
|
192
|
+
percentLabel: string;
|
|
193
|
+
fixedLabel: string;
|
|
194
|
+
};
|
|
195
|
+
depositHints: {
|
|
196
|
+
none: string;
|
|
197
|
+
percent: string;
|
|
198
|
+
fixed_cents: string;
|
|
199
|
+
};
|
|
200
|
+
days: {
|
|
201
|
+
minDaysLabel: string;
|
|
202
|
+
minDaysHelp: string;
|
|
203
|
+
balanceDaysLabel: string;
|
|
204
|
+
balanceDaysHelp: string;
|
|
205
|
+
graceDaysLabel: string;
|
|
206
|
+
graceDaysHelp: string;
|
|
207
|
+
tooltipLabel: string;
|
|
208
|
+
suffix: string;
|
|
209
|
+
};
|
|
210
|
+
};
|
|
211
|
+
preview: {
|
|
212
|
+
inheriting: string;
|
|
213
|
+
sample: string;
|
|
214
|
+
scheduleTypes: {
|
|
215
|
+
deposit: string;
|
|
216
|
+
balance: string;
|
|
217
|
+
full: string;
|
|
218
|
+
};
|
|
219
|
+
due: string;
|
|
220
|
+
};
|
|
221
|
+
supplierCard: {
|
|
222
|
+
title: string;
|
|
223
|
+
description: string;
|
|
224
|
+
missingCurrency: string;
|
|
225
|
+
save: string;
|
|
226
|
+
savedToast: string;
|
|
227
|
+
saveFailed: string;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
export declare const taxesPage: {
|
|
231
|
+
title: string;
|
|
232
|
+
description: string;
|
|
233
|
+
addTax: string;
|
|
234
|
+
empty: string;
|
|
235
|
+
inactive: string;
|
|
236
|
+
edit: string;
|
|
237
|
+
delete: string;
|
|
238
|
+
deleteConfirm: string;
|
|
239
|
+
editSheetTitle: string;
|
|
240
|
+
newSheetTitle: string;
|
|
241
|
+
taxClassBadge: string;
|
|
242
|
+
defaultRegimeLabel: string;
|
|
243
|
+
regimeOverridesLabel: string;
|
|
244
|
+
regimeOverrideCount: string;
|
|
245
|
+
taxClassSectionTitle: string;
|
|
246
|
+
taxClassSectionDescription: string;
|
|
247
|
+
defaultRegimeSectionTitle: string;
|
|
248
|
+
defaultRegimeSectionDescription: string;
|
|
249
|
+
regimeOverridesSectionTitle: string;
|
|
250
|
+
regimeOverridesSectionDescription: string;
|
|
251
|
+
addRegimeOverride: string;
|
|
252
|
+
removeRegimeOverride: string;
|
|
253
|
+
noRegimeOverrides: string;
|
|
254
|
+
appliesToLabel: string;
|
|
255
|
+
taxRegimeLabel: string;
|
|
256
|
+
appliesToBase: string;
|
|
257
|
+
appliesToAddon: string;
|
|
258
|
+
appliesToAccommodation: string;
|
|
259
|
+
appliesToAll: string;
|
|
260
|
+
taxClassLabelLabel: string;
|
|
261
|
+
taxClassLabelPlaceholder: string;
|
|
262
|
+
taxClassCodeLabel: string;
|
|
263
|
+
taxClassCodePlaceholder: string;
|
|
264
|
+
taxClassDescriptionLabel: string;
|
|
265
|
+
taxClassDescriptionPlaceholder: string;
|
|
266
|
+
regimeNameLabel: string;
|
|
267
|
+
regimeNamePlaceholder: string;
|
|
268
|
+
regimeCodeLabel: string;
|
|
269
|
+
rateLabel: string;
|
|
270
|
+
jurisdictionLabel: string;
|
|
271
|
+
legalReferenceLabel: string;
|
|
272
|
+
legalReferencePlaceholder: string;
|
|
273
|
+
regimeDescriptionLabel: string;
|
|
274
|
+
regimeDescriptionPlaceholder: string;
|
|
275
|
+
activeLabel: string;
|
|
276
|
+
cancel: string;
|
|
277
|
+
saveChanges: string;
|
|
278
|
+
createTax: string;
|
|
279
|
+
validationNameRequired: string;
|
|
280
|
+
validationRateInvalid: string;
|
|
281
|
+
saveFailed: string;
|
|
282
|
+
policyTitle: string;
|
|
283
|
+
policyDescription: string;
|
|
284
|
+
addPolicyProfile: string;
|
|
285
|
+
addPolicyRule: string;
|
|
286
|
+
policyEmpty: string;
|
|
287
|
+
policyRulesEmpty: string;
|
|
288
|
+
deletePolicyProfileConfirm: string;
|
|
289
|
+
deletePolicyRuleConfirm: string;
|
|
290
|
+
editPolicyProfileSheetTitle: string;
|
|
291
|
+
newPolicyProfileSheetTitle: string;
|
|
292
|
+
editPolicyRuleSheetTitle: string;
|
|
293
|
+
newPolicyRuleSheetTitle: string;
|
|
294
|
+
policyProfileNameLabel: string;
|
|
295
|
+
policyProfileNamePlaceholder: string;
|
|
296
|
+
policyProfileCodeLabel: string;
|
|
297
|
+
policyProfileCodePlaceholder: string;
|
|
298
|
+
policyProfileDescriptionLabel: string;
|
|
299
|
+
policyProfileDescriptionPlaceholder: string;
|
|
300
|
+
policyPriorityLabel: string;
|
|
301
|
+
policySideLabel: string;
|
|
302
|
+
policyRuleNameLabel: string;
|
|
303
|
+
policyRuleNamePlaceholder: string;
|
|
304
|
+
policyConditionLabel: string;
|
|
305
|
+
policyConditionSectionTitle: string;
|
|
306
|
+
policyConditionSectionDescription: string;
|
|
307
|
+
policyConditionModeLabel: string;
|
|
308
|
+
policyConditionAlways: string;
|
|
309
|
+
policyConditionAlwaysDescription: string;
|
|
310
|
+
policyConditionModeAll: string;
|
|
311
|
+
policyConditionModeAny: string;
|
|
312
|
+
addPolicyCondition: string;
|
|
313
|
+
removePolicyCondition: string;
|
|
314
|
+
policyFactLabel: string;
|
|
315
|
+
policyFactHasAccommodation: string;
|
|
316
|
+
policyFactAccommodationCountries: string;
|
|
317
|
+
policyOperatorLabel: string;
|
|
318
|
+
policyOperatorEquals: string;
|
|
319
|
+
policyOperatorContains: string;
|
|
320
|
+
policyValueLabel: string;
|
|
321
|
+
policyValueYes: string;
|
|
322
|
+
policyValueNo: string;
|
|
323
|
+
policyActionsLabel: string;
|
|
324
|
+
policySideSell: string;
|
|
325
|
+
policySideBuy: string;
|
|
326
|
+
createPolicyProfile: string;
|
|
327
|
+
createPolicyRule: string;
|
|
328
|
+
validationPolicyProfileNameRequired: string;
|
|
329
|
+
validationPolicyProfileRequired: string;
|
|
330
|
+
validationPolicyRuleNameRequired: string;
|
|
331
|
+
validationPolicyRuleRegimeRequired: string;
|
|
332
|
+
validationPolicyRulePriorityInvalid: string;
|
|
333
|
+
validationPolicyRuleConditionInvalid: string;
|
|
334
|
+
savePolicyProfileFailed: string;
|
|
335
|
+
savePolicyRuleFailed: string;
|
|
336
|
+
};
|
|
337
|
+
export declare const recordBookingPaymentDialog: {
|
|
338
|
+
title: string;
|
|
339
|
+
editTitle: string;
|
|
340
|
+
description: string;
|
|
341
|
+
generateLinkLabel: string;
|
|
342
|
+
fields: {
|
|
343
|
+
invoice: string;
|
|
344
|
+
amountCents: string;
|
|
345
|
+
currency: string;
|
|
346
|
+
fxRate: string;
|
|
347
|
+
paymentDate: string;
|
|
348
|
+
paymentMethod: string;
|
|
349
|
+
status: string;
|
|
350
|
+
referenceNumber: string;
|
|
351
|
+
notes: string;
|
|
352
|
+
convertProformaAfter: string;
|
|
353
|
+
convertProformaAfterHint: string;
|
|
354
|
+
};
|
|
355
|
+
placeholders: {
|
|
356
|
+
invoice: string;
|
|
357
|
+
currency: string;
|
|
358
|
+
fxRate: string;
|
|
359
|
+
referenceNumber: string;
|
|
360
|
+
};
|
|
361
|
+
fx: {
|
|
362
|
+
title: string;
|
|
363
|
+
help: string;
|
|
364
|
+
loadingRate: string;
|
|
365
|
+
summary: string;
|
|
366
|
+
commissionNote: string;
|
|
367
|
+
source: string;
|
|
368
|
+
rateUnavailable: string;
|
|
369
|
+
override: string;
|
|
370
|
+
useAuto: string;
|
|
371
|
+
};
|
|
372
|
+
invoiceOption: string;
|
|
373
|
+
invoiceMeta: string;
|
|
374
|
+
loadingInvoices: string;
|
|
375
|
+
noInvoices: string;
|
|
376
|
+
actions: {
|
|
377
|
+
record: string;
|
|
378
|
+
save: string;
|
|
379
|
+
};
|
|
380
|
+
validation: {
|
|
381
|
+
invoiceRequired: string;
|
|
382
|
+
amountMinimum: string;
|
|
383
|
+
baseAmountRequired: string;
|
|
384
|
+
recordFailed: string;
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
//# sourceMappingURL=numberingAndPayments.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"numberingAndPayments.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/numberingAndPayments.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CnC,CAAA;AAED,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwCrC,CAAA;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CxB,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0C7B,CAAA;AAED,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyDzB,CAAA;AAED,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgHrB,CAAA;AAED,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqDtC,CAAA"}
|