@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,386 @@
|
|
|
1
|
+
export const invoiceNumberSeriesPage = {
|
|
2
|
+
title: "Invoice Number Series",
|
|
3
|
+
description: "Configure automatic numbering for invoices, proformas, and credit notes.",
|
|
4
|
+
actions: {
|
|
5
|
+
create: "New Series",
|
|
6
|
+
},
|
|
7
|
+
columns: {
|
|
8
|
+
code: "Code",
|
|
9
|
+
name: "Name",
|
|
10
|
+
prefix: "Prefix",
|
|
11
|
+
current: "Current",
|
|
12
|
+
reset: "Reset",
|
|
13
|
+
scope: "Scope",
|
|
14
|
+
default: "Default",
|
|
15
|
+
status: "Status",
|
|
16
|
+
external: "External",
|
|
17
|
+
},
|
|
18
|
+
filters: {
|
|
19
|
+
scopeLabel: "Scope",
|
|
20
|
+
scopeAll: "All scopes",
|
|
21
|
+
activeLabel: "Status",
|
|
22
|
+
activeAll: "All statuses",
|
|
23
|
+
activeOnly: "Active",
|
|
24
|
+
inactiveOnly: "Inactive",
|
|
25
|
+
},
|
|
26
|
+
scopeLabels: {
|
|
27
|
+
invoice: "Invoice",
|
|
28
|
+
proforma: "Proforma",
|
|
29
|
+
credit_note: "Credit Note",
|
|
30
|
+
},
|
|
31
|
+
resetStrategyLabels: {
|
|
32
|
+
never: "Never",
|
|
33
|
+
annual: "Annual",
|
|
34
|
+
monthly: "Monthly",
|
|
35
|
+
},
|
|
36
|
+
active: "Active",
|
|
37
|
+
inactive: "Inactive",
|
|
38
|
+
default: "Default",
|
|
39
|
+
notDefault: "No",
|
|
40
|
+
noExternalProvider: "-",
|
|
41
|
+
empty: "No invoice number series found.",
|
|
42
|
+
loadFailed: "Failed to load invoice number series.",
|
|
43
|
+
deleteConfirm: 'Delete number series "{name}"?',
|
|
44
|
+
};
|
|
45
|
+
export const invoiceNumberSeriesDialog = {
|
|
46
|
+
titleNew: "New Invoice Number Series",
|
|
47
|
+
titleEdit: "Edit Invoice Number Series",
|
|
48
|
+
fields: {
|
|
49
|
+
code: "Code",
|
|
50
|
+
name: "Name",
|
|
51
|
+
prefix: "Prefix",
|
|
52
|
+
separator: "Separator",
|
|
53
|
+
padLength: "Pad Length",
|
|
54
|
+
currentSequence: "Current Sequence",
|
|
55
|
+
resetStrategy: "Reset Strategy",
|
|
56
|
+
scope: "Scope",
|
|
57
|
+
isDefault: "Default series for this scope",
|
|
58
|
+
externalProvider: "External Provider",
|
|
59
|
+
externalConfigKey: "External Config Key",
|
|
60
|
+
active: "Active",
|
|
61
|
+
},
|
|
62
|
+
placeholders: {
|
|
63
|
+
code: "invoice-main",
|
|
64
|
+
name: "Default invoice series",
|
|
65
|
+
prefix: "INV",
|
|
66
|
+
separator: "-",
|
|
67
|
+
externalProvider: "smartbill",
|
|
68
|
+
externalConfigKey: "default",
|
|
69
|
+
},
|
|
70
|
+
help: {
|
|
71
|
+
previewLabel: "Preview",
|
|
72
|
+
previewSample: "The next allocated number will follow this format.",
|
|
73
|
+
default: "Default active series are used when no specific series is requested.",
|
|
74
|
+
external: "Leave blank for internally allocated numbers.",
|
|
75
|
+
},
|
|
76
|
+
actions: {
|
|
77
|
+
create: "Create Series",
|
|
78
|
+
},
|
|
79
|
+
validation: {
|
|
80
|
+
codeRequired: "Code is required",
|
|
81
|
+
nameRequired: "Name is required",
|
|
82
|
+
padLengthInvalid: "Pad length must be between 0 and 20",
|
|
83
|
+
currentSequenceInvalid: "Current sequence must be 0 or greater",
|
|
84
|
+
},
|
|
85
|
+
};
|
|
86
|
+
export const paymentsPage = {
|
|
87
|
+
title: "Payments",
|
|
88
|
+
description: "All customer and supplier payments in one place.",
|
|
89
|
+
searchPlaceholder: "Search by reference number...",
|
|
90
|
+
actions: {
|
|
91
|
+
recordPayment: "Record Payment",
|
|
92
|
+
},
|
|
93
|
+
kindLabels: {
|
|
94
|
+
customer: "Customer",
|
|
95
|
+
supplier: "Supplier",
|
|
96
|
+
},
|
|
97
|
+
filters: {
|
|
98
|
+
button: "Filters",
|
|
99
|
+
kindLabel: "Type",
|
|
100
|
+
kindAll: "All types",
|
|
101
|
+
statusLabel: "Status",
|
|
102
|
+
statusAll: "All statuses",
|
|
103
|
+
methodLabel: "Payment method",
|
|
104
|
+
methodAll: "All methods",
|
|
105
|
+
supplierLabel: "Supplier",
|
|
106
|
+
supplierAny: "Any supplier",
|
|
107
|
+
supplierEmpty: "No suppliers found.",
|
|
108
|
+
currencyLabel: "Currency",
|
|
109
|
+
currencyAny: "Any currency",
|
|
110
|
+
paymentDateLabel: "Payment date",
|
|
111
|
+
dateAny: "Any date",
|
|
112
|
+
clear: "Clear",
|
|
113
|
+
},
|
|
114
|
+
columns: {
|
|
115
|
+
kind: "Type",
|
|
116
|
+
reference: "Reference",
|
|
117
|
+
party: "Party",
|
|
118
|
+
amount: "Amount",
|
|
119
|
+
status: "Status",
|
|
120
|
+
date: "Date",
|
|
121
|
+
method: "Payment method",
|
|
122
|
+
},
|
|
123
|
+
noValue: "-",
|
|
124
|
+
empty: "No records found.",
|
|
125
|
+
loadFailed: "Failed to load records.",
|
|
126
|
+
pagination: {
|
|
127
|
+
showing: "Showing {count} of {total}",
|
|
128
|
+
page: "Page {page} / {pageCount}",
|
|
129
|
+
previous: "Previous",
|
|
130
|
+
next: "Next",
|
|
131
|
+
},
|
|
132
|
+
};
|
|
133
|
+
export const paymentDetailPage = {
|
|
134
|
+
actions: {
|
|
135
|
+
back: "Back to payments",
|
|
136
|
+
viewInvoice: "View invoice",
|
|
137
|
+
viewBooking: "View booking",
|
|
138
|
+
viewPerson: "View person",
|
|
139
|
+
viewOrganization: "View organization",
|
|
140
|
+
viewSupplier: "View supplier",
|
|
141
|
+
edit: "Edit",
|
|
142
|
+
delete: "Delete",
|
|
143
|
+
deleteTitle: "Delete this payment?",
|
|
144
|
+
deleteDescription: "This permanently removes the payment and recomputes the related balance.",
|
|
145
|
+
},
|
|
146
|
+
titles: {
|
|
147
|
+
summary: "Summary",
|
|
148
|
+
links: "Related records",
|
|
149
|
+
metadata: "Metadata",
|
|
150
|
+
},
|
|
151
|
+
fields: {
|
|
152
|
+
amount: "Amount",
|
|
153
|
+
baseAmount: "Base amount",
|
|
154
|
+
fxRate: "FX rate",
|
|
155
|
+
status: "Status",
|
|
156
|
+
method: "Payment method",
|
|
157
|
+
date: "Payment date",
|
|
158
|
+
reference: "Reference",
|
|
159
|
+
notes: "Notes",
|
|
160
|
+
kind: "Type",
|
|
161
|
+
paidBy: "Paid by",
|
|
162
|
+
paidTo: "Paid to",
|
|
163
|
+
organization: "Organization",
|
|
164
|
+
invoice: "Invoice",
|
|
165
|
+
booking: "Booking",
|
|
166
|
+
createdAt: "Created",
|
|
167
|
+
updatedAt: "Updated",
|
|
168
|
+
},
|
|
169
|
+
states: {
|
|
170
|
+
loading: "Loading payment...",
|
|
171
|
+
loadFailed: "Failed to load payment.",
|
|
172
|
+
notFound: "Payment not found.",
|
|
173
|
+
noValue: "-",
|
|
174
|
+
},
|
|
175
|
+
};
|
|
176
|
+
export const paymentPolicy = {
|
|
177
|
+
form: {
|
|
178
|
+
inherit: {
|
|
179
|
+
label: "Inherit from parent",
|
|
180
|
+
help: "Falls back to the next broader policy. Switch off to set an explicit policy here.",
|
|
181
|
+
tooltipLabel: "Explain inheritance",
|
|
182
|
+
},
|
|
183
|
+
depositKind: {
|
|
184
|
+
label: "Deposit kind",
|
|
185
|
+
options: {
|
|
186
|
+
none: "None",
|
|
187
|
+
percent: "Percent of total",
|
|
188
|
+
fixed_cents: "Fixed amount",
|
|
189
|
+
},
|
|
190
|
+
},
|
|
191
|
+
depositValue: {
|
|
192
|
+
percentLabel: "Deposit percent",
|
|
193
|
+
fixedLabel: "Deposit amount",
|
|
194
|
+
},
|
|
195
|
+
depositHints: {
|
|
196
|
+
none: "Customer pays the full amount up front.",
|
|
197
|
+
percent: "Use a whole-number percentage between 0 and 100.",
|
|
198
|
+
fixed_cents: "Capped at the booking total when the booking is smaller than this amount.",
|
|
199
|
+
},
|
|
200
|
+
days: {
|
|
201
|
+
minDaysLabel: "Deposit window",
|
|
202
|
+
minDaysHelp: "If departure is closer than this, the booking requires the full amount up front.",
|
|
203
|
+
balanceDaysLabel: "Balance due",
|
|
204
|
+
balanceDaysHelp: "How many days before departure the remaining balance is due.",
|
|
205
|
+
graceDaysLabel: "Grace floor",
|
|
206
|
+
graceDaysHelp: "Minimum number of days from now before the balance can be due, even for close departures.",
|
|
207
|
+
tooltipLabel: "Show field help",
|
|
208
|
+
suffix: "days",
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
preview: {
|
|
212
|
+
inheriting: "Inheriting from parent - no preview at this layer.",
|
|
213
|
+
sample: "Sample: {amount} booking, departure in {days} days",
|
|
214
|
+
scheduleTypes: {
|
|
215
|
+
deposit: "Deposit",
|
|
216
|
+
balance: "Balance",
|
|
217
|
+
full: "Full payment",
|
|
218
|
+
},
|
|
219
|
+
due: "due {date}",
|
|
220
|
+
},
|
|
221
|
+
supplierCard: {
|
|
222
|
+
title: "Customer payment policy",
|
|
223
|
+
description: "When set, sourced bookings against this supplier inherit these terms instead of the operator default. Leave inheriting to fall back to the deployment-wide policy.",
|
|
224
|
+
missingCurrency: "Set the supplier's default currency above before defining a payment policy; amounts must be denominated in a known currency.",
|
|
225
|
+
save: "Save policy",
|
|
226
|
+
savedToast: "Customer payment policy saved",
|
|
227
|
+
saveFailed: "Failed to save policy",
|
|
228
|
+
},
|
|
229
|
+
};
|
|
230
|
+
export const taxesPage = {
|
|
231
|
+
title: "Tax Regimes and Classes",
|
|
232
|
+
description: "Manage tax classes and the default tax regime each class uses for VAT calculation.",
|
|
233
|
+
addTax: "Add tax class",
|
|
234
|
+
empty: "No tax classes yet. Seed or create classes such as Normala, Redusa, and Art. 311.",
|
|
235
|
+
inactive: "Inactive",
|
|
236
|
+
edit: "Edit",
|
|
237
|
+
delete: "Delete",
|
|
238
|
+
deleteConfirm: "Delete this tax class?",
|
|
239
|
+
editSheetTitle: "Edit Tax Class",
|
|
240
|
+
newSheetTitle: "New Tax Class",
|
|
241
|
+
taxClassBadge: "Tax class",
|
|
242
|
+
defaultRegimeLabel: "Default regime",
|
|
243
|
+
regimeOverridesLabel: "Overrides",
|
|
244
|
+
regimeOverrideCount: "{count} overrides",
|
|
245
|
+
taxClassSectionTitle: "Tax class",
|
|
246
|
+
taxClassSectionDescription: "The assignable classification stored on products and booking lines.",
|
|
247
|
+
defaultRegimeSectionTitle: "Default tax regime",
|
|
248
|
+
defaultRegimeSectionDescription: "The VAT/tax calculation rule linked through tax_classes.default_regime_id.",
|
|
249
|
+
regimeOverridesSectionTitle: "Regime overrides",
|
|
250
|
+
regimeOverridesSectionDescription: "Optional tax_classes.lines entries for base, addon, accommodation, or all lines.",
|
|
251
|
+
addRegimeOverride: "Add override",
|
|
252
|
+
removeRegimeOverride: "Remove override",
|
|
253
|
+
noRegimeOverrides: "No regime overrides. This class falls back to the default regime.",
|
|
254
|
+
appliesToLabel: "Applies to",
|
|
255
|
+
taxRegimeLabel: "Tax regime",
|
|
256
|
+
appliesToBase: "Base",
|
|
257
|
+
appliesToAddon: "Addon",
|
|
258
|
+
appliesToAccommodation: "Accommodation",
|
|
259
|
+
appliesToAll: "All",
|
|
260
|
+
taxClassLabelLabel: "Tax class label",
|
|
261
|
+
taxClassLabelPlaceholder: "Normala 21",
|
|
262
|
+
taxClassCodeLabel: "Tax class code",
|
|
263
|
+
taxClassCodePlaceholder: "normala",
|
|
264
|
+
taxClassDescriptionLabel: "Tax class description",
|
|
265
|
+
taxClassDescriptionPlaceholder: "Optional tax class description...",
|
|
266
|
+
regimeNameLabel: "Regime name",
|
|
267
|
+
regimeNamePlaceholder: "Normala",
|
|
268
|
+
regimeCodeLabel: "Regime code",
|
|
269
|
+
rateLabel: "Regime rate %",
|
|
270
|
+
jurisdictionLabel: "Jurisdiction",
|
|
271
|
+
legalReferenceLabel: "Legal reference",
|
|
272
|
+
legalReferencePlaceholder: "Optional legal reference",
|
|
273
|
+
regimeDescriptionLabel: "Regime description",
|
|
274
|
+
regimeDescriptionPlaceholder: "Optional tax regime description...",
|
|
275
|
+
activeLabel: "Active",
|
|
276
|
+
cancel: "Cancel",
|
|
277
|
+
saveChanges: "Save Changes",
|
|
278
|
+
createTax: "Create Tax Class",
|
|
279
|
+
validationNameRequired: "Tax class label is required",
|
|
280
|
+
validationRateInvalid: "Rate must be a non-negative number",
|
|
281
|
+
saveFailed: "Failed to save tax class",
|
|
282
|
+
policyTitle: "Tax Policy Profiles",
|
|
283
|
+
policyDescription: "Manage implementation-specific tax rules that choose tax regimes automatically.",
|
|
284
|
+
addPolicyProfile: "Add profile",
|
|
285
|
+
addPolicyRule: "Add rule",
|
|
286
|
+
policyEmpty: "No tax policy profiles yet.",
|
|
287
|
+
policyRulesEmpty: "No policy rules yet. Add ordered rules for this profile.",
|
|
288
|
+
deletePolicyProfileConfirm: "Delete this tax policy profile and its rules?",
|
|
289
|
+
deletePolicyRuleConfirm: "Delete this tax policy rule?",
|
|
290
|
+
editPolicyProfileSheetTitle: "Edit Tax Policy Profile",
|
|
291
|
+
newPolicyProfileSheetTitle: "New Tax Policy Profile",
|
|
292
|
+
editPolicyRuleSheetTitle: "Edit Tax Policy Rule",
|
|
293
|
+
newPolicyRuleSheetTitle: "New Tax Policy Rule",
|
|
294
|
+
policyProfileNameLabel: "Profile name",
|
|
295
|
+
policyProfileNamePlaceholder: "Romanian travel operator",
|
|
296
|
+
policyProfileCodeLabel: "Profile code",
|
|
297
|
+
policyProfileCodePlaceholder: "ro-travel-operator",
|
|
298
|
+
policyProfileDescriptionLabel: "Profile description",
|
|
299
|
+
policyProfileDescriptionPlaceholder: "Optional policy profile description...",
|
|
300
|
+
policyPriorityLabel: "Priority",
|
|
301
|
+
policySideLabel: "Side",
|
|
302
|
+
policyRuleNameLabel: "Rule name",
|
|
303
|
+
policyRuleNamePlaceholder: "Accommodation in Romania",
|
|
304
|
+
policyConditionLabel: "Condition",
|
|
305
|
+
policyConditionSectionTitle: "Condition",
|
|
306
|
+
policyConditionSectionDescription: "Choose when this rule applies. Rules are evaluated by priority.",
|
|
307
|
+
policyConditionModeLabel: "Match",
|
|
308
|
+
policyConditionAlways: "Always",
|
|
309
|
+
policyConditionAlwaysDescription: "This rule always matches and is usually used as the last fallback rule.",
|
|
310
|
+
policyConditionModeAll: "All conditions",
|
|
311
|
+
policyConditionModeAny: "Any condition",
|
|
312
|
+
addPolicyCondition: "Add condition",
|
|
313
|
+
removePolicyCondition: "Remove condition",
|
|
314
|
+
policyFactLabel: "Fact",
|
|
315
|
+
policyFactHasAccommodation: "Has accommodation",
|
|
316
|
+
policyFactAccommodationCountries: "Accommodation countries",
|
|
317
|
+
policyOperatorLabel: "Operator",
|
|
318
|
+
policyOperatorEquals: "is",
|
|
319
|
+
policyOperatorContains: "contains",
|
|
320
|
+
policyValueLabel: "Value",
|
|
321
|
+
policyValueYes: "Yes",
|
|
322
|
+
policyValueNo: "No",
|
|
323
|
+
policyActionsLabel: "Actions",
|
|
324
|
+
policySideSell: "Sell",
|
|
325
|
+
policySideBuy: "Buy",
|
|
326
|
+
createPolicyProfile: "Create Profile",
|
|
327
|
+
createPolicyRule: "Create Rule",
|
|
328
|
+
validationPolicyProfileNameRequired: "Profile name is required",
|
|
329
|
+
validationPolicyProfileRequired: "Tax policy profile is required",
|
|
330
|
+
validationPolicyRuleNameRequired: "Rule name is required",
|
|
331
|
+
validationPolicyRuleRegimeRequired: "Tax regime is required",
|
|
332
|
+
validationPolicyRulePriorityInvalid: "Priority must be a non-negative integer",
|
|
333
|
+
validationPolicyRuleConditionInvalid: "Condition must include at least one valid row. Country values must be two-letter ISO codes.",
|
|
334
|
+
savePolicyProfileFailed: "Failed to save tax policy profile",
|
|
335
|
+
savePolicyRuleFailed: "Failed to save tax policy rule",
|
|
336
|
+
};
|
|
337
|
+
export const recordBookingPaymentDialog = {
|
|
338
|
+
title: "Record payment",
|
|
339
|
+
editTitle: "Edit payment",
|
|
340
|
+
description: "Log a payment you've already received (bank transfer, cash, cheque, manual card charge, etc.). To send the customer a card or bank-transfer link, use {generateLink} instead.",
|
|
341
|
+
generateLinkLabel: "Generate payment link",
|
|
342
|
+
fields: {
|
|
343
|
+
invoice: "Invoice",
|
|
344
|
+
amountCents: "Amount",
|
|
345
|
+
currency: "Payment currency",
|
|
346
|
+
fxRate: "Rate (1 {invoiceCurrency} = ? {paymentCurrency})",
|
|
347
|
+
paymentDate: "Payment date",
|
|
348
|
+
paymentMethod: "Method",
|
|
349
|
+
status: "Status",
|
|
350
|
+
referenceNumber: "Reference",
|
|
351
|
+
notes: "Notes",
|
|
352
|
+
convertProformaAfter: "Convert proforma to invoice",
|
|
353
|
+
convertProformaAfterHint: "Issues a final invoice with the same totals and line items, linked back to this proforma.",
|
|
354
|
+
},
|
|
355
|
+
placeholders: {
|
|
356
|
+
invoice: "Select invoice",
|
|
357
|
+
currency: "Select currency...",
|
|
358
|
+
fxRate: "1 {invoiceCurrency} = ? {paymentCurrency}",
|
|
359
|
+
referenceNumber: "Bank reference, receipt number, etc.",
|
|
360
|
+
},
|
|
361
|
+
fx: {
|
|
362
|
+
title: "Cross-currency settlement",
|
|
363
|
+
help: "Enter the amount you received; the invoice-currency value is computed automatically.",
|
|
364
|
+
loadingRate: "Loading FX rate...",
|
|
365
|
+
summary: "{amount} {paymentCurrency} ≈ {baseAmount} {invoiceCurrency} · 1 {invoiceCurrency} = {rate} {paymentCurrency}",
|
|
366
|
+
commissionNote: "BNR rate {rawRate} + {commission}% FX commission",
|
|
367
|
+
source: "BNR rate",
|
|
368
|
+
rateUnavailable: "Rate for {invoiceCurrency}/{paymentCurrency} not available — enter it manually.",
|
|
369
|
+
override: "Override rate",
|
|
370
|
+
useAuto: "Use automatic rate",
|
|
371
|
+
},
|
|
372
|
+
invoiceOption: "{number} — {status} — {balance} {currency} due",
|
|
373
|
+
invoiceMeta: "Total {total} {currency} • paid {paid} {currency} • due {due} {currency}",
|
|
374
|
+
loadingInvoices: "Loading invoices…",
|
|
375
|
+
noInvoices: "No unpaid invoices on this booking.",
|
|
376
|
+
actions: {
|
|
377
|
+
record: "Record payment",
|
|
378
|
+
save: "Save changes",
|
|
379
|
+
},
|
|
380
|
+
validation: {
|
|
381
|
+
invoiceRequired: "Select an invoice to record this payment against.",
|
|
382
|
+
amountMinimum: "Amount must be greater than zero.",
|
|
383
|
+
baseAmountRequired: "Enter the amount to apply in the invoice currency.",
|
|
384
|
+
recordFailed: "Failed to record payment.",
|
|
385
|
+
},
|
|
386
|
+
};
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
export declare const profitability: {
|
|
2
|
+
title: string;
|
|
3
|
+
description: string;
|
|
4
|
+
loadFailed: string;
|
|
5
|
+
empty: string;
|
|
6
|
+
noDate: string;
|
|
7
|
+
noProduct: string;
|
|
8
|
+
exportCsv: string;
|
|
9
|
+
unconvertibleNote: string;
|
|
10
|
+
filters: {
|
|
11
|
+
currency: string;
|
|
12
|
+
from: string;
|
|
13
|
+
to: string;
|
|
14
|
+
baseCurrency: string;
|
|
15
|
+
product: string;
|
|
16
|
+
departure: string;
|
|
17
|
+
allProducts: string;
|
|
18
|
+
allDepartures: string;
|
|
19
|
+
};
|
|
20
|
+
kpis: {
|
|
21
|
+
revenue: string;
|
|
22
|
+
actualCost: string;
|
|
23
|
+
profit: string;
|
|
24
|
+
margin: string;
|
|
25
|
+
plannedCost: string;
|
|
26
|
+
variance: string;
|
|
27
|
+
unattributed: string;
|
|
28
|
+
};
|
|
29
|
+
charts: {
|
|
30
|
+
departurePnl: string;
|
|
31
|
+
costByServiceType: string;
|
|
32
|
+
revenue: string;
|
|
33
|
+
actualCost: string;
|
|
34
|
+
profit: string;
|
|
35
|
+
};
|
|
36
|
+
serviceTypeLabels: {
|
|
37
|
+
transport: string;
|
|
38
|
+
flight: string;
|
|
39
|
+
accommodation: string;
|
|
40
|
+
guide: string;
|
|
41
|
+
meal: string;
|
|
42
|
+
experience: string;
|
|
43
|
+
insurance: string;
|
|
44
|
+
other: string;
|
|
45
|
+
};
|
|
46
|
+
departures: {
|
|
47
|
+
title: string;
|
|
48
|
+
none: string;
|
|
49
|
+
columns: {
|
|
50
|
+
departure: string;
|
|
51
|
+
date: string;
|
|
52
|
+
product: string;
|
|
53
|
+
revenue: string;
|
|
54
|
+
actualCost: string;
|
|
55
|
+
plannedCost: string;
|
|
56
|
+
profit: string;
|
|
57
|
+
margin: string;
|
|
58
|
+
variance: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
products: {
|
|
62
|
+
title: string;
|
|
63
|
+
none: string;
|
|
64
|
+
columns: {
|
|
65
|
+
product: string;
|
|
66
|
+
departures: string;
|
|
67
|
+
revenue: string;
|
|
68
|
+
actualCost: string;
|
|
69
|
+
plannedCost: string;
|
|
70
|
+
profit: string;
|
|
71
|
+
margin: string;
|
|
72
|
+
variance: string;
|
|
73
|
+
};
|
|
74
|
+
};
|
|
75
|
+
travelers: {
|
|
76
|
+
title: string;
|
|
77
|
+
none: string;
|
|
78
|
+
loadFailed: string;
|
|
79
|
+
columns: {
|
|
80
|
+
traveler: string;
|
|
81
|
+
booking: string;
|
|
82
|
+
revenue: string;
|
|
83
|
+
actualCost: string;
|
|
84
|
+
plannedCost: string;
|
|
85
|
+
profit: string;
|
|
86
|
+
margin: string;
|
|
87
|
+
variance: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
share: {
|
|
91
|
+
button: string;
|
|
92
|
+
title: string;
|
|
93
|
+
description: string;
|
|
94
|
+
from: string;
|
|
95
|
+
to: string;
|
|
96
|
+
baseCurrency: string;
|
|
97
|
+
ttlDays: string;
|
|
98
|
+
create: string;
|
|
99
|
+
creating: string;
|
|
100
|
+
active: string;
|
|
101
|
+
none: string;
|
|
102
|
+
copy: string;
|
|
103
|
+
copied: string;
|
|
104
|
+
revoke: string;
|
|
105
|
+
allTime: string;
|
|
106
|
+
expires: string;
|
|
107
|
+
opened: string;
|
|
108
|
+
neverOpened: string;
|
|
109
|
+
};
|
|
110
|
+
portal: {
|
|
111
|
+
title: string;
|
|
112
|
+
subtitle: string;
|
|
113
|
+
language: string;
|
|
114
|
+
allTime: string;
|
|
115
|
+
loadFailed: string;
|
|
116
|
+
gone: string;
|
|
117
|
+
invoices: string;
|
|
118
|
+
invoicesNone: string;
|
|
119
|
+
download: string;
|
|
120
|
+
downloadAll: string;
|
|
121
|
+
noFile: string;
|
|
122
|
+
kindClient: string;
|
|
123
|
+
kindSupplier: string;
|
|
124
|
+
columns: {
|
|
125
|
+
type: string;
|
|
126
|
+
invoice: string;
|
|
127
|
+
status: string;
|
|
128
|
+
issueDate: string;
|
|
129
|
+
total: string;
|
|
130
|
+
balanceDue: string;
|
|
131
|
+
attachments: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
export declare const costCategories: {
|
|
136
|
+
title: string;
|
|
137
|
+
description: string;
|
|
138
|
+
add: string;
|
|
139
|
+
adding: string;
|
|
140
|
+
namePlaceholder: string;
|
|
141
|
+
empty: string;
|
|
142
|
+
archive: string;
|
|
143
|
+
restore: string;
|
|
144
|
+
archivedBadge: string;
|
|
145
|
+
showArchived: string;
|
|
146
|
+
};
|
|
147
|
+
//# sourceMappingURL=profitability.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"profitability.d.ts","sourceRoot":"","sources":["../../../src/i18n/en/profitability.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsIzB,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;;;;CAW1B,CAAA"}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
export const profitability = {
|
|
2
|
+
title: "Profitability",
|
|
3
|
+
description: "Revenue, cost and margin per departure and product.",
|
|
4
|
+
loadFailed: "Failed to load profitability.",
|
|
5
|
+
empty: "No profitability data for this period.",
|
|
6
|
+
noDate: "No date",
|
|
7
|
+
noProduct: "No product",
|
|
8
|
+
exportCsv: "Export CSV",
|
|
9
|
+
unconvertibleNote: "No FX rate for {currencies} — excluded from the rollup.",
|
|
10
|
+
filters: {
|
|
11
|
+
currency: "Currency",
|
|
12
|
+
from: "From",
|
|
13
|
+
to: "To",
|
|
14
|
+
baseCurrency: "Base currency",
|
|
15
|
+
product: "Product",
|
|
16
|
+
departure: "Departure",
|
|
17
|
+
allProducts: "All products",
|
|
18
|
+
allDepartures: "All departures",
|
|
19
|
+
},
|
|
20
|
+
kpis: {
|
|
21
|
+
revenue: "Revenue",
|
|
22
|
+
actualCost: "Actual cost",
|
|
23
|
+
profit: "Profit",
|
|
24
|
+
margin: "Margin",
|
|
25
|
+
plannedCost: "Planned cost",
|
|
26
|
+
variance: "Variance",
|
|
27
|
+
unattributed: "Unattributed cost",
|
|
28
|
+
},
|
|
29
|
+
charts: {
|
|
30
|
+
departurePnl: "Departure P&L",
|
|
31
|
+
costByServiceType: "Cost by category",
|
|
32
|
+
revenue: "Revenue",
|
|
33
|
+
actualCost: "Actual cost",
|
|
34
|
+
profit: "Profit",
|
|
35
|
+
},
|
|
36
|
+
serviceTypeLabels: {
|
|
37
|
+
transport: "Transport",
|
|
38
|
+
flight: "Flight",
|
|
39
|
+
accommodation: "Accommodation",
|
|
40
|
+
guide: "Guide",
|
|
41
|
+
meal: "Meal",
|
|
42
|
+
experience: "Experience",
|
|
43
|
+
insurance: "Insurance",
|
|
44
|
+
other: "Other",
|
|
45
|
+
},
|
|
46
|
+
departures: {
|
|
47
|
+
title: "Per departure",
|
|
48
|
+
none: "No departures with activity in this period.",
|
|
49
|
+
columns: {
|
|
50
|
+
departure: "Departure",
|
|
51
|
+
date: "Date",
|
|
52
|
+
product: "Product",
|
|
53
|
+
revenue: "Revenue",
|
|
54
|
+
actualCost: "Actual cost",
|
|
55
|
+
plannedCost: "Planned cost",
|
|
56
|
+
profit: "Profit",
|
|
57
|
+
margin: "Margin",
|
|
58
|
+
variance: "Variance",
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
products: {
|
|
62
|
+
title: "Per product",
|
|
63
|
+
none: "No products with activity in this period.",
|
|
64
|
+
columns: {
|
|
65
|
+
product: "Product",
|
|
66
|
+
departures: "Departures",
|
|
67
|
+
revenue: "Revenue",
|
|
68
|
+
actualCost: "Actual cost",
|
|
69
|
+
plannedCost: "Planned cost",
|
|
70
|
+
profit: "Profit",
|
|
71
|
+
margin: "Margin",
|
|
72
|
+
variance: "Variance",
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
travelers: {
|
|
76
|
+
title: "Travellers — {departure}",
|
|
77
|
+
none: "No travellers on this departure.",
|
|
78
|
+
loadFailed: "Failed to load travellers.",
|
|
79
|
+
columns: {
|
|
80
|
+
traveler: "Traveller",
|
|
81
|
+
booking: "Booking",
|
|
82
|
+
revenue: "Revenue",
|
|
83
|
+
actualCost: "Actual cost",
|
|
84
|
+
plannedCost: "Planned cost",
|
|
85
|
+
profit: "Profit",
|
|
86
|
+
margin: "Margin",
|
|
87
|
+
variance: "Variance",
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
share: {
|
|
91
|
+
button: "Share with accountant",
|
|
92
|
+
title: "Share with accountant",
|
|
93
|
+
description: "Create a read-only link to the financials for a period. The accountant opens it without a login; you can revoke it anytime.",
|
|
94
|
+
from: "From",
|
|
95
|
+
to: "To",
|
|
96
|
+
baseCurrency: "Base currency",
|
|
97
|
+
ttlDays: "Expires in (days)",
|
|
98
|
+
create: "Create link",
|
|
99
|
+
creating: "Creating…",
|
|
100
|
+
active: "Active links",
|
|
101
|
+
none: "No active links.",
|
|
102
|
+
copy: "Copy link",
|
|
103
|
+
copied: "Copied",
|
|
104
|
+
revoke: "Revoke",
|
|
105
|
+
allTime: "All time",
|
|
106
|
+
expires: "Expires {date}",
|
|
107
|
+
opened: "opened {count}×",
|
|
108
|
+
neverOpened: "not opened yet",
|
|
109
|
+
},
|
|
110
|
+
portal: {
|
|
111
|
+
title: "Financial summary",
|
|
112
|
+
subtitle: "Revenue, cost and margin per departure and product.",
|
|
113
|
+
language: "Language",
|
|
114
|
+
allTime: "All time",
|
|
115
|
+
loadFailed: "Failed to load the financial summary.",
|
|
116
|
+
gone: "This link has expired or been revoked.",
|
|
117
|
+
invoices: "Invoices",
|
|
118
|
+
invoicesNone: "No invoices in this period.",
|
|
119
|
+
download: "Download",
|
|
120
|
+
downloadAll: "Download all (ZIP)",
|
|
121
|
+
noFile: "No file",
|
|
122
|
+
kindClient: "Client",
|
|
123
|
+
kindSupplier: "Supplier",
|
|
124
|
+
columns: {
|
|
125
|
+
type: "Type",
|
|
126
|
+
invoice: "Invoice",
|
|
127
|
+
status: "Status",
|
|
128
|
+
issueDate: "Issue date",
|
|
129
|
+
total: "Total",
|
|
130
|
+
balanceDue: "Balance due",
|
|
131
|
+
attachments: "Documents",
|
|
132
|
+
},
|
|
133
|
+
},
|
|
134
|
+
};
|
|
135
|
+
export const costCategories = {
|
|
136
|
+
title: "Cost categories",
|
|
137
|
+
description: "Classify supplier costs. These drive the cost breakdown in profitability.",
|
|
138
|
+
add: "Add category",
|
|
139
|
+
adding: "Adding…",
|
|
140
|
+
namePlaceholder: "Category name",
|
|
141
|
+
empty: "No cost categories yet.",
|
|
142
|
+
archive: "Archive",
|
|
143
|
+
restore: "Restore",
|
|
144
|
+
archivedBadge: "Archived",
|
|
145
|
+
showArchived: "Show archived",
|
|
146
|
+
};
|