@ketvietlab/ketsuite 0.1.1 → 0.1.3
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 +1 -1
- package/README.md +15 -1
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +59 -0
- package/dist/cli.js.map +1 -0
- package/dist/deployment.d.ts +5 -0
- package/dist/deployment.d.ts.map +1 -0
- package/dist/deployment.js +152 -0
- package/dist/deployment.js.map +1 -0
- package/dist/development.d.ts +8 -0
- package/dist/development.d.ts.map +1 -0
- package/dist/development.js +40 -0
- package/dist/development.js.map +1 -0
- package/dist/index.d.ts +77 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +66 -6
- package/dist/index.js.map +1 -1
- package/dist/modules/account/analytics.d.ts +32 -0
- package/dist/modules/account/analytics.d.ts.map +1 -0
- package/dist/modules/account/analytics.js +457 -0
- package/dist/modules/account/analytics.js.map +1 -0
- package/dist/modules/account/assets-costing.d.ts +4 -0
- package/dist/modules/account/assets-costing.d.ts.map +1 -0
- package/dist/modules/account/assets-costing.js +1134 -0
- package/dist/modules/account/assets-costing.js.map +1 -0
- package/dist/modules/account/audit.d.ts +3 -0
- package/dist/modules/account/audit.d.ts.map +1 -0
- package/dist/modules/account/audit.js +14 -0
- package/dist/modules/account/audit.js.map +1 -0
- package/dist/modules/account/books.d.ts +4 -0
- package/dist/modules/account/books.d.ts.map +1 -0
- package/dist/modules/account/books.js +150 -0
- package/dist/modules/account/books.js.map +1 -0
- package/dist/modules/account/cash-receivables.d.ts +3 -0
- package/dist/modules/account/cash-receivables.d.ts.map +1 -0
- package/dist/modules/account/cash-receivables.js +1087 -0
- package/dist/modules/account/cash-receivables.js.map +1 -0
- package/dist/modules/account/close.d.ts +4 -0
- package/dist/modules/account/close.d.ts.map +1 -0
- package/dist/modules/account/close.js +343 -0
- package/dist/modules/account/close.js.map +1 -0
- package/dist/modules/account/date.d.ts +21 -0
- package/dist/modules/account/date.d.ts.map +1 -0
- package/dist/modules/account/date.js +70 -0
- package/dist/modules/account/date.js.map +1 -0
- package/dist/modules/account/functions.d.ts +131 -3
- package/dist/modules/account/functions.d.ts.map +1 -1
- package/dist/modules/account/functions.js +2570 -389
- package/dist/modules/account/functions.js.map +1 -1
- package/dist/modules/account/index.d.ts +1 -2
- package/dist/modules/account/index.d.ts.map +1 -1
- package/dist/modules/account/index.js +403 -8
- package/dist/modules/account/index.js.map +1 -1
- package/dist/modules/account/models.d.ts.map +1 -1
- package/dist/modules/account/models.js +748 -0
- package/dist/modules/account/models.js.map +1 -1
- package/dist/modules/account/money.d.ts +60 -0
- package/dist/modules/account/money.d.ts.map +1 -0
- package/dist/modules/account/money.js +237 -0
- package/dist/modules/account/money.js.map +1 -0
- package/dist/modules/account/open-items.d.ts +3 -0
- package/dist/modules/account/open-items.d.ts.map +1 -0
- package/dist/modules/account/open-items.js +390 -0
- package/dist/modules/account/open-items.js.map +1 -0
- package/dist/modules/account/opening.d.ts +3 -0
- package/dist/modules/account/opening.d.ts.map +1 -0
- package/dist/modules/account/opening.js +323 -0
- package/dist/modules/account/opening.js.map +1 -0
- package/dist/modules/account/period.d.ts +21 -0
- package/dist/modules/account/period.d.ts.map +1 -0
- package/dist/modules/account/period.js +155 -0
- package/dist/modules/account/period.js.map +1 -0
- package/dist/modules/account/relations.d.ts.map +1 -1
- package/dist/modules/account/relations.js +46 -0
- package/dist/modules/account/relations.js.map +1 -1
- package/dist/modules/account/reports.d.ts +4 -0
- package/dist/modules/account/reports.d.ts.map +1 -0
- package/dist/modules/account/reports.js +125 -0
- package/dist/modules/account/reports.js.map +1 -0
- package/dist/modules/account/setup.d.ts +3 -1
- package/dist/modules/account/setup.d.ts.map +1 -1
- package/dist/modules/account/setup.js +45 -160
- package/dist/modules/account/setup.js.map +1 -1
- package/dist/modules/account_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/account_activity_backend/index.js +0 -1
- package/dist/modules/account_activity_backend/index.js.map +1 -1
- package/dist/modules/account_backend/index.js +3339 -494
- package/dist/modules/account_backend/index.js.map +1 -1
- package/dist/modules/account_backend/overview.d.ts +92 -0
- package/dist/modules/account_backend/overview.d.ts.map +1 -0
- package/dist/modules/account_backend/overview.js +257 -0
- package/dist/modules/account_backend/overview.js.map +1 -0
- package/dist/modules/account_backend/relation-control.d.ts +48 -0
- package/dist/modules/account_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/account_backend/relation-control.js +67 -0
- package/dist/modules/account_backend/relation-control.js.map +1 -0
- package/dist/modules/account_backend/screens/account-defaults.d.ts +28 -0
- package/dist/modules/account_backend/screens/account-defaults.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/account-defaults.js +60 -0
- package/dist/modules/account_backend/screens/account-defaults.js.map +1 -0
- package/dist/modules/account_backend/screens/account-form.d.ts +16 -0
- package/dist/modules/account_backend/screens/account-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/account-form.js +53 -0
- package/dist/modules/account_backend/screens/account-form.js.map +1 -0
- package/dist/modules/account_backend/screens/accounting-books.d.ts +15 -0
- package/dist/modules/account_backend/screens/accounting-books.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/accounting-books.js +86 -0
- package/dist/modules/account_backend/screens/accounting-books.js.map +1 -0
- package/dist/modules/account_backend/screens/accounts-list.d.ts +50 -0
- package/dist/modules/account_backend/screens/accounts-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/accounts-list.js +66 -0
- package/dist/modules/account_backend/screens/accounts-list.js.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.d.ts +13 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.js +20 -0
- package/dist/modules/account_backend/screens/customer-invoice-form.js.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.d.ts +62 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.js +82 -0
- package/dist/modules/account_backend/screens/customer-invoices-list.js.map +1 -0
- package/dist/modules/account_backend/screens/general-ledger.d.ts +24 -0
- package/dist/modules/account_backend/screens/general-ledger.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/general-ledger.js +73 -0
- package/dist/modules/account_backend/screens/general-ledger.js.map +1 -0
- package/dist/modules/account_backend/screens/index.d.ts +27 -0
- package/dist/modules/account_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/index.js +27 -0
- package/dist/modules/account_backend/screens/index.js.map +1 -0
- package/dist/modules/account_backend/screens/journal-entries-list.d.ts +48 -0
- package/dist/modules/account_backend/screens/journal-entries-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journal-entries-list.js +58 -0
- package/dist/modules/account_backend/screens/journal-entries-list.js.map +1 -0
- package/dist/modules/account_backend/screens/journal-entry-create.d.ts +14 -0
- package/dist/modules/account_backend/screens/journal-entry-create.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journal-entry-create.js +41 -0
- package/dist/modules/account_backend/screens/journal-entry-create.js.map +1 -0
- package/dist/modules/account_backend/screens/journal-form.d.ts +15 -0
- package/dist/modules/account_backend/screens/journal-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journal-form.js +53 -0
- package/dist/modules/account_backend/screens/journal-form.js.map +1 -0
- package/dist/modules/account_backend/screens/journals-list.d.ts +51 -0
- package/dist/modules/account_backend/screens/journals-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/journals-list.js +70 -0
- package/dist/modules/account_backend/screens/journals-list.js.map +1 -0
- package/dist/modules/account_backend/screens/move-detail.d.ts +26 -0
- package/dist/modules/account_backend/screens/move-detail.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/move-detail.js +130 -0
- package/dist/modules/account_backend/screens/move-detail.js.map +1 -0
- package/dist/modules/account_backend/screens/opening-balances.d.ts +28 -0
- package/dist/modules/account_backend/screens/opening-balances.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/opening-balances.js +96 -0
- package/dist/modules/account_backend/screens/opening-balances.js.map +1 -0
- package/dist/modules/account_backend/screens/overview.d.ts +62 -0
- package/dist/modules/account_backend/screens/overview.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/overview.js +215 -0
- package/dist/modules/account_backend/screens/overview.js.map +1 -0
- package/dist/modules/account_backend/screens/partner-statement.d.ts +26 -0
- package/dist/modules/account_backend/screens/partner-statement.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/partner-statement.js +82 -0
- package/dist/modules/account_backend/screens/partner-statement.js.map +1 -0
- package/dist/modules/account_backend/screens/payment-form.d.ts +14 -0
- package/dist/modules/account_backend/screens/payment-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payment-form.js +21 -0
- package/dist/modules/account_backend/screens/payment-form.js.map +1 -0
- package/dist/modules/account_backend/screens/payment-term-form.d.ts +25 -0
- package/dist/modules/account_backend/screens/payment-term-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payment-term-form.js +96 -0
- package/dist/modules/account_backend/screens/payment-term-form.js.map +1 -0
- package/dist/modules/account_backend/screens/payment-terms-list.d.ts +23 -0
- package/dist/modules/account_backend/screens/payment-terms-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payment-terms-list.js +104 -0
- package/dist/modules/account_backend/screens/payment-terms-list.js.map +1 -0
- package/dist/modules/account_backend/screens/payments-list.d.ts +62 -0
- package/dist/modules/account_backend/screens/payments-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/payments-list.js +71 -0
- package/dist/modules/account_backend/screens/payments-list.js.map +1 -0
- package/dist/modules/account_backend/screens/period-closes.d.ts +21 -0
- package/dist/modules/account_backend/screens/period-closes.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/period-closes.js +123 -0
- package/dist/modules/account_backend/screens/period-closes.js.map +1 -0
- package/dist/modules/account_backend/screens/shared.d.ts +16 -0
- package/dist/modules/account_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/shared.js +15 -0
- package/dist/modules/account_backend/screens/shared.js.map +1 -0
- package/dist/modules/account_backend/screens/tax-form.d.ts +14 -0
- package/dist/modules/account_backend/screens/tax-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/tax-form.js +25 -0
- package/dist/modules/account_backend/screens/tax-form.js.map +1 -0
- package/dist/modules/account_backend/screens/taxes-list.d.ts +55 -0
- package/dist/modules/account_backend/screens/taxes-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/taxes-list.js +83 -0
- package/dist/modules/account_backend/screens/taxes-list.js.map +1 -0
- package/dist/modules/account_backend/screens/trial-balance.d.ts +19 -0
- package/dist/modules/account_backend/screens/trial-balance.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/trial-balance.js +75 -0
- package/dist/modules/account_backend/screens/trial-balance.js.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.d.ts +13 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.js +20 -0
- package/dist/modules/account_backend/screens/vendor-bill-form.js.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.d.ts +62 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.d.ts.map +1 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.js +84 -0
- package/dist/modules/account_backend/screens/vendor-bills-list.js.map +1 -0
- package/dist/modules/account_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/account_mail_backend/index.js +0 -1
- package/dist/modules/account_mail_backend/index.js.map +1 -1
- package/dist/modules/account_partner/index.js +0 -2
- package/dist/modules/account_partner/index.js.map +1 -1
- package/dist/modules/account_partner_backend/index.d.ts +1 -1
- package/dist/modules/account_partner_backend/index.d.ts.map +1 -1
- package/dist/modules/account_partner_backend/index.js +2 -3
- package/dist/modules/account_partner_backend/index.js.map +1 -1
- package/dist/modules/account_partner_backend/routes.d.ts.map +1 -1
- package/dist/modules/account_partner_backend/routes.js +19 -25
- package/dist/modules/account_partner_backend/routes.js.map +1 -1
- package/dist/modules/account_partner_backend/screens/accounting-terms.d.ts +20 -0
- package/dist/modules/account_partner_backend/screens/accounting-terms.d.ts.map +1 -0
- package/dist/modules/account_partner_backend/screens/accounting-terms.js +63 -0
- package/dist/modules/account_partner_backend/screens/accounting-terms.js.map +1 -0
- package/dist/modules/account_partner_backend/screens/index.d.ts +2 -0
- package/dist/modules/account_partner_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/account_partner_backend/screens/index.js +2 -0
- package/dist/modules/account_partner_backend/screens/index.js.map +1 -0
- package/dist/modules/account_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/account_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/channel-routes.js +787 -0
- package/dist/modules/account_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/account_staff_channel/functions.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/functions.js +143 -0
- package/dist/modules/account_staff_channel/functions.js.map +1 -0
- package/dist/modules/account_staff_channel/index.d.ts +5 -0
- package/dist/modules/account_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/index.js +42 -0
- package/dist/modules/account_staff_channel/index.js.map +1 -0
- package/dist/modules/account_staff_channel/models.d.ts.map +1 -0
- package/dist/modules/account_staff_channel/models.js +30 -0
- package/dist/modules/account_staff_channel/models.js.map +1 -0
- package/dist/modules/activity/index.d.ts.map +1 -1
- package/dist/modules/activity/index.js +0 -1
- package/dist/modules/activity/index.js.map +1 -1
- package/dist/modules/activity_backend/index.d.ts +1 -1
- package/dist/modules/activity_backend/index.d.ts.map +1 -1
- package/dist/modules/activity_backend/index.js +3 -12
- package/dist/modules/activity_backend/index.js.map +1 -1
- package/dist/modules/activity_backend/routes.d.ts.map +1 -1
- package/dist/modules/activity_backend/routes.js +36 -22
- package/dist/modules/activity_backend/routes.js.map +1 -1
- package/dist/modules/activity_backend/screens/activities-list.d.ts +15 -0
- package/dist/modules/activity_backend/screens/activities-list.d.ts.map +1 -0
- package/dist/modules/activity_backend/screens/activities-list.js +40 -0
- package/dist/modules/activity_backend/screens/activities-list.js.map +1 -0
- package/dist/modules/activity_backend/screens/index.d.ts +2 -0
- package/dist/modules/activity_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/activity_backend/screens/index.js +2 -0
- package/dist/modules/activity_backend/screens/index.js.map +1 -0
- package/dist/modules/address/data/VN/NOTICE.md +1 -1
- package/dist/modules/address/index.d.ts.map +1 -1
- package/dist/modules/address/index.js +0 -1
- package/dist/modules/address/index.js.map +1 -1
- package/dist/modules/address_backend/index.d.ts +1 -1
- package/dist/modules/address_backend/index.d.ts.map +1 -1
- package/dist/modules/address_backend/index.js +1 -3
- package/dist/modules/address_backend/index.js.map +1 -1
- package/dist/modules/address_backend/routes.d.ts.map +1 -1
- package/dist/modules/address_backend/routes.js +20 -27
- package/dist/modules/address_backend/routes.js.map +1 -1
- package/dist/modules/address_backend/screens/catalogs-list.d.ts +14 -0
- package/dist/modules/address_backend/screens/catalogs-list.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/catalogs-list.js +38 -0
- package/dist/modules/address_backend/screens/catalogs-list.js.map +1 -0
- package/dist/modules/address_backend/screens/country-browser.d.ts +12 -0
- package/dist/modules/address_backend/screens/country-browser.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/country-browser.js +74 -0
- package/dist/modules/address_backend/screens/country-browser.js.map +1 -0
- package/dist/modules/address_backend/screens/index.d.ts +4 -0
- package/dist/modules/address_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/index.js +3 -0
- package/dist/modules/address_backend/screens/index.js.map +1 -0
- package/dist/modules/address_backend/screens/types.d.ts +20 -0
- package/dist/modules/address_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/address_backend/screens/types.js.map +1 -0
- package/dist/modules/attendance/channel-routes.d.ts +2 -0
- package/dist/modules/attendance/channel-routes.d.ts.map +1 -0
- package/dist/modules/attendance/channel-routes.js +234 -0
- package/dist/modules/attendance/channel-routes.js.map +1 -0
- package/dist/modules/attendance/functions.d.ts.map +1 -1
- package/dist/modules/attendance/functions.js +171 -22
- package/dist/modules/attendance/functions.js.map +1 -1
- package/dist/modules/attendance/index.d.ts.map +1 -1
- package/dist/modules/attendance/index.js +4 -2
- package/dist/modules/attendance/index.js.map +1 -1
- package/dist/modules/attendance/messages.d.ts +6 -0
- package/dist/modules/attendance/messages.d.ts.map +1 -1
- package/dist/modules/attendance/messages.js +6 -0
- package/dist/modules/attendance/messages.js.map +1 -1
- package/dist/modules/attendance/models.d.ts.map +1 -1
- package/dist/modules/attendance/models.js +1 -0
- package/dist/modules/attendance/models.js.map +1 -1
- package/dist/modules/attendance_backend/index.d.ts +3 -1
- package/dist/modules/attendance_backend/index.d.ts.map +1 -1
- package/dist/modules/attendance_backend/index.js +65 -4
- package/dist/modules/attendance_backend/index.js.map +1 -1
- package/dist/modules/attendance_backend/routes.d.ts.map +1 -1
- package/dist/modules/attendance_backend/routes.js +240 -53
- package/dist/modules/attendance_backend/routes.js.map +1 -1
- package/dist/modules/attendance_backend/screens/credentials.d.ts +32 -0
- package/dist/modules/attendance_backend/screens/credentials.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/credentials.js +84 -0
- package/dist/modules/attendance_backend/screens/credentials.js.map +1 -0
- package/dist/modules/attendance_backend/screens/index.d.ts +4 -0
- package/dist/modules/attendance_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/index.js +4 -0
- package/dist/modules/attendance_backend/screens/index.js.map +1 -0
- package/dist/modules/attendance_backend/screens/my-work.d.ts +35 -0
- package/dist/modules/attendance_backend/screens/my-work.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/my-work.js +189 -0
- package/dist/modules/attendance_backend/screens/my-work.js.map +1 -0
- package/dist/modules/attendance_backend/screens/period.d.ts +22 -0
- package/dist/modules/attendance_backend/screens/period.d.ts.map +1 -0
- package/dist/modules/attendance_backend/screens/period.js +85 -0
- package/dist/modules/attendance_backend/screens/period.js.map +1 -0
- package/dist/modules/attendance_backend/screens.d.ts +0 -4
- package/dist/modules/attendance_backend/screens.d.ts.map +1 -1
- package/dist/modules/attendance_backend/screens.js +1 -209
- package/dist/modules/attendance_backend/screens.js.map +1 -1
- package/dist/modules/backend/catalogue.d.ts.map +1 -1
- package/dist/modules/backend/catalogue.js +53 -115
- package/dist/modules/backend/catalogue.js.map +1 -1
- package/dist/modules/backend/chart.d.ts +42 -0
- package/dist/modules/backend/chart.d.ts.map +1 -0
- package/dist/modules/backend/chart.js +39 -0
- package/dist/modules/backend/chart.js.map +1 -0
- package/dist/modules/backend/design/HANDOFF.md +118 -38
- package/dist/modules/backend/design/auth.css +463 -0
- package/dist/modules/backend/design/brand/logo-dark.png +0 -0
- package/dist/modules/backend/design/brand/logo-light.png +0 -0
- package/dist/modules/backend/design/charts.css +229 -0
- package/dist/modules/backend/design/client/chart.d.mts +31 -0
- package/dist/modules/backend/design/client/chart.d.mts.map +1 -0
- package/dist/modules/backend/design/client/chart.mjs +23 -0
- package/dist/modules/backend/design/client/chart.mjs.map +7 -0
- package/dist/modules/backend/design/client/relation-select.d.mts +6 -1
- package/dist/modules/backend/design/client/relation-select.d.mts.map +1 -1
- package/dist/modules/backend/design/client/relation-select.mjs +2 -7
- package/dist/modules/backend/design/client/relation-select.mjs.map +7 -1
- package/dist/modules/backend/design/client/table-selection.d.mts +7 -0
- package/dist/modules/backend/design/client/table-selection.d.mts.map +1 -0
- package/dist/modules/backend/design/client/table-selection.mjs +2 -0
- package/dist/modules/backend/design/client/table-selection.mjs.map +7 -0
- package/dist/modules/backend/design/content.css +766 -0
- package/dist/modules/backend/design/controls.css +451 -0
- package/dist/modules/backend/design/design-system.css +2 -0
- package/dist/modules/backend/design/forms.css +1134 -0
- package/dist/modules/backend/design/foundation.css +423 -0
- package/dist/modules/backend/design/lists.css +1462 -0
- package/dist/modules/backend/design/record.css +526 -0
- package/dist/modules/backend/design/responsive.css +331 -0
- package/dist/modules/backend/design/tokens.css +317 -92
- package/dist/modules/backend/index.d.ts +12 -5
- package/dist/modules/backend/index.d.ts.map +1 -1
- package/dist/modules/backend/index.js +32 -15
- package/dist/modules/backend/index.js.map +1 -1
- package/dist/modules/backend/islands.d.ts.map +1 -1
- package/dist/modules/backend/islands.js +22 -4
- package/dist/modules/backend/islands.js.map +1 -1
- package/dist/modules/backend/joints.d.ts +1 -1
- package/dist/modules/backend/joints.d.ts.map +1 -1
- package/dist/modules/backend/joints.js +14 -6
- package/dist/modules/backend/joints.js.map +1 -1
- package/dist/modules/backend/list-search.d.ts +33 -0
- package/dist/modules/backend/list-search.d.ts.map +1 -0
- package/dist/modules/backend/list-search.js +232 -0
- package/dist/modules/backend/list-search.js.map +1 -0
- package/dist/modules/backend/menus.d.ts.map +1 -1
- package/dist/modules/backend/menus.js +3 -12
- package/dist/modules/backend/menus.js.map +1 -1
- package/dist/modules/backend/messages.d.ts +1 -1
- package/dist/modules/backend/messages.d.ts.map +1 -1
- package/dist/modules/backend/messages.js +48 -35
- package/dist/modules/backend/messages.js.map +1 -1
- package/dist/modules/backend/paging.d.ts +1 -1
- package/dist/modules/backend/paging.d.ts.map +1 -1
- package/dist/modules/backend/paging.js +1 -1
- package/dist/modules/backend/paging.js.map +1 -1
- package/dist/modules/backend/relation-select.d.ts +2 -57
- package/dist/modules/backend/relation-select.d.ts.map +1 -1
- package/dist/modules/backend/relation-select.js +2 -0
- package/dist/modules/backend/relation-select.js.map +1 -1
- package/dist/modules/backend/routes.d.ts +1 -8
- package/dist/modules/backend/routes.d.ts.map +1 -1
- package/dist/modules/backend/routes.js +36 -111
- package/dist/modules/backend/routes.js.map +1 -1
- package/dist/modules/backend/screen.d.ts +130 -0
- package/dist/modules/backend/screen.d.ts.map +1 -0
- package/dist/modules/backend/screen.js +205 -0
- package/dist/modules/backend/screen.js.map +1 -0
- package/dist/modules/backend/screens.d.ts +11 -14
- package/dist/modules/backend/screens.d.ts.map +1 -1
- package/dist/modules/backend/screens.js +13 -70
- package/dist/modules/backend/screens.js.map +1 -1
- package/dist/modules/business_report_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/business_report_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/business_report_staff_channel/channel-routes.js +438 -0
- package/dist/modules/business_report_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/business_report_staff_channel/index.d.ts +5 -0
- package/dist/modules/business_report_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/business_report_staff_channel/index.js +18 -0
- package/dist/modules/business_report_staff_channel/index.js.map +1 -0
- package/dist/modules/calendar/index.d.ts.map +1 -1
- package/dist/modules/calendar/index.js +0 -1
- package/dist/modules/calendar/index.js.map +1 -1
- package/dist/modules/calendar/recurrence.d.ts.map +1 -1
- package/dist/modules/calendar/recurrence.js +3 -11
- package/dist/modules/calendar/recurrence.js.map +1 -1
- package/dist/modules/calendar_activity/index.d.ts.map +1 -1
- package/dist/modules/calendar_activity/index.js +0 -2
- package/dist/modules/calendar_activity/index.js.map +1 -1
- package/dist/modules/calendar_backend/index.d.ts +1 -1
- package/dist/modules/calendar_backend/index.d.ts.map +1 -1
- package/dist/modules/calendar_backend/index.js +1 -3
- package/dist/modules/calendar_backend/index.js.map +1 -1
- package/dist/modules/calendar_backend/routes.d.ts.map +1 -1
- package/dist/modules/calendar_backend/routes.js +10 -22
- package/dist/modules/calendar_backend/routes.js.map +1 -1
- package/dist/modules/calendar_backend/screens/calendar.d.ts +5 -0
- package/dist/modules/calendar_backend/screens/calendar.d.ts.map +1 -0
- package/dist/modules/calendar_backend/screens/calendar.js +10 -0
- package/dist/modules/calendar_backend/screens/calendar.js.map +1 -0
- package/dist/modules/calendar_backend/screens/index.d.ts +2 -0
- package/dist/modules/calendar_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/calendar_backend/screens/index.js +2 -0
- package/dist/modules/calendar_backend/screens/index.js.map +1 -0
- package/dist/modules/calendar_mail_transport/index.d.ts.map +1 -1
- package/dist/modules/calendar_mail_transport/index.js +0 -2
- package/dist/modules/calendar_mail_transport/index.js.map +1 -1
- package/dist/modules/channel_api/core.d.ts +253 -0
- package/dist/modules/channel_api/core.d.ts.map +1 -0
- package/dist/modules/channel_api/core.js +587 -0
- package/dist/modules/channel_api/core.js.map +1 -0
- package/dist/modules/channel_api/customer.d.ts +21 -0
- package/dist/modules/channel_api/customer.d.ts.map +1 -0
- package/dist/modules/channel_api/customer.js +368 -0
- package/dist/modules/channel_api/customer.js.map +1 -0
- package/dist/modules/channel_api/index.d.ts +6 -0
- package/dist/modules/channel_api/index.d.ts.map +1 -0
- package/dist/modules/channel_api/index.js +66 -0
- package/dist/modules/channel_api/index.js.map +1 -0
- package/dist/modules/channel_api/openapi.d.ts +17 -0
- package/dist/modules/channel_api/openapi.d.ts.map +1 -0
- package/dist/modules/channel_api/openapi.js +105 -0
- package/dist/modules/channel_api/openapi.js.map +1 -0
- package/dist/modules/channel_api/staff.d.ts +7 -0
- package/dist/modules/channel_api/staff.d.ts.map +1 -0
- package/dist/modules/channel_api/staff.js +209 -0
- package/dist/modules/channel_api/staff.js.map +1 -0
- package/dist/modules/company/functions.d.ts.map +1 -1
- package/dist/modules/company/functions.js +93 -12
- package/dist/modules/company/functions.js.map +1 -1
- package/dist/modules/company/index.js +3 -3
- package/dist/modules/company/index.js.map +1 -1
- package/dist/modules/company/messages.d.ts +8 -0
- package/dist/modules/company/messages.d.ts.map +1 -1
- package/dist/modules/company/messages.js +8 -0
- package/dist/modules/company/messages.js.map +1 -1
- package/dist/modules/company/models.d.ts +2 -2
- package/dist/modules/company/models.d.ts.map +1 -1
- package/dist/modules/company/models.js +12 -2
- package/dist/modules/company/models.js.map +1 -1
- package/dist/modules/company_backend/index.d.ts +2 -1
- package/dist/modules/company_backend/index.d.ts.map +1 -1
- package/dist/modules/company_backend/index.js +25 -4
- package/dist/modules/company_backend/index.js.map +1 -1
- package/dist/modules/company_backend/routes.d.ts.map +1 -1
- package/dist/modules/company_backend/routes.js +314 -96
- package/dist/modules/company_backend/routes.js.map +1 -1
- package/dist/modules/company_backend/screens/branch-form.d.ts +18 -0
- package/dist/modules/company_backend/screens/branch-form.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/branch-form.js +63 -0
- package/dist/modules/company_backend/screens/branch-form.js.map +1 -0
- package/dist/modules/company_backend/screens/companies-list.d.ts +18 -0
- package/dist/modules/company_backend/screens/companies-list.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/companies-list.js +49 -0
- package/dist/modules/company_backend/screens/companies-list.js.map +1 -0
- package/dist/modules/company_backend/screens/company-form.d.ts +25 -0
- package/dist/modules/company_backend/screens/company-form.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/company-form.js +159 -0
- package/dist/modules/company_backend/screens/company-form.js.map +1 -0
- package/dist/modules/company_backend/screens/context.d.ts +30 -0
- package/dist/modules/company_backend/screens/context.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/context.js +48 -0
- package/dist/modules/company_backend/screens/context.js.map +1 -0
- package/dist/modules/company_backend/screens/hierarchy.d.ts +16 -0
- package/dist/modules/company_backend/screens/hierarchy.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/hierarchy.js +41 -0
- package/dist/modules/company_backend/screens/hierarchy.js.map +1 -0
- package/dist/modules/company_backend/screens/index.d.ts +7 -0
- package/dist/modules/company_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/index.js +6 -0
- package/dist/modules/company_backend/screens/index.js.map +1 -0
- package/dist/modules/company_backend/screens/types.d.ts +22 -0
- package/dist/modules/company_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/company_backend/screens/types.js +2 -0
- package/dist/modules/company_backend/screens/types.js.map +1 -0
- package/dist/modules/crm/functions.d.ts +1 -1
- package/dist/modules/crm/functions.d.ts.map +1 -1
- package/dist/modules/crm/functions.js +534 -75
- package/dist/modules/crm/functions.js.map +1 -1
- package/dist/modules/crm/index.d.ts +2 -1
- package/dist/modules/crm/index.d.ts.map +1 -1
- package/dist/modules/crm/index.js +3 -4
- package/dist/modules/crm/index.js.map +1 -1
- package/dist/modules/crm/jobs.d.ts +10 -0
- package/dist/modules/crm/jobs.d.ts.map +1 -1
- package/dist/modules/crm/jobs.js +50 -1
- package/dist/modules/crm/jobs.js.map +1 -1
- package/dist/modules/crm/messages.d.ts +14 -1
- package/dist/modules/crm/messages.d.ts.map +1 -1
- package/dist/modules/crm/messages.js +26 -0
- package/dist/modules/crm/messages.js.map +1 -1
- package/dist/modules/crm/models.d.ts.map +1 -1
- package/dist/modules/crm/models.js +25 -0
- package/dist/modules/crm/models.js.map +1 -1
- package/dist/modules/crm/operations.d.ts +110 -1
- package/dist/modules/crm/operations.d.ts.map +1 -1
- package/dist/modules/crm/operations.js +612 -84
- package/dist/modules/crm/operations.js.map +1 -1
- package/dist/modules/crm_backend/client/crm-kanban-view.d.mts.map +1 -1
- package/dist/modules/crm_backend/client/crm-kanban-view.mjs +132 -32
- package/dist/modules/crm_backend/client/crm-kanban-view.mjs.map +1 -1
- package/dist/modules/crm_backend/client/crm.css +398 -63
- package/dist/modules/crm_backend/index.d.ts.map +1 -1
- package/dist/modules/crm_backend/index.js +12 -4
- package/dist/modules/crm_backend/index.js.map +1 -1
- package/dist/modules/crm_backend/messages.d.ts +212 -0
- package/dist/modules/crm_backend/messages.d.ts.map +1 -1
- package/dist/modules/crm_backend/messages.js +212 -0
- package/dist/modules/crm_backend/messages.js.map +1 -1
- package/dist/modules/crm_backend/relation-control.d.ts +51 -0
- package/dist/modules/crm_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/crm_backend/relation-control.js +107 -0
- package/dist/modules/crm_backend/relation-control.js.map +1 -0
- package/dist/modules/crm_backend/routes.d.ts.map +1 -1
- package/dist/modules/crm_backend/routes.js +1068 -260
- package/dist/modules/crm_backend/routes.js.map +1 -1
- package/dist/modules/crm_backend/screens/activity-planner.d.ts +22 -0
- package/dist/modules/crm_backend/screens/activity-planner.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/activity-planner.js +159 -0
- package/dist/modules/crm_backend/screens/activity-planner.js.map +1 -0
- package/dist/modules/crm_backend/screens/case-create.d.ts +15 -0
- package/dist/modules/crm_backend/screens/case-create.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/case-create.js +19 -0
- package/dist/modules/crm_backend/screens/case-create.js.map +1 -0
- package/dist/modules/crm_backend/screens/case-detail.d.ts +46 -0
- package/dist/modules/crm_backend/screens/case-detail.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/case-detail.js +506 -0
- package/dist/modules/crm_backend/screens/case-detail.js.map +1 -0
- package/dist/modules/crm_backend/screens/cases-list.d.ts +16 -0
- package/dist/modules/crm_backend/screens/cases-list.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/cases-list.js +86 -0
- package/dist/modules/crm_backend/screens/cases-list.js.map +1 -0
- package/dist/modules/crm_backend/screens/configuration.d.ts +28 -0
- package/dist/modules/crm_backend/screens/configuration.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/configuration.js +115 -0
- package/dist/modules/crm_backend/screens/configuration.js.map +1 -0
- package/dist/modules/crm_backend/screens/index.d.ts +14 -0
- package/dist/modules/crm_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/index.js +8 -0
- package/dist/modules/crm_backend/screens/index.js.map +1 -0
- package/dist/modules/crm_backend/screens/leaderboard.d.ts +12 -0
- package/dist/modules/crm_backend/screens/leaderboard.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/leaderboard.js +89 -0
- package/dist/modules/crm_backend/screens/leaderboard.js.map +1 -0
- package/dist/modules/crm_backend/screens/pipeline.d.ts +21 -0
- package/dist/modules/crm_backend/screens/pipeline.d.ts.map +1 -0
- package/dist/modules/crm_backend/screens/pipeline.js +22 -0
- package/dist/modules/crm_backend/screens/pipeline.js.map +1 -0
- package/dist/modules/crm_sale/index.d.ts.map +1 -1
- package/dist/modules/crm_sale/index.js +3 -4
- package/dist/modules/crm_sale/index.js.map +1 -1
- package/dist/modules/crm_sale/messages.d.ts +3 -1
- package/dist/modules/crm_sale/messages.d.ts.map +1 -1
- package/dist/modules/crm_sale/messages.js +4 -0
- package/dist/modules/crm_sale/messages.js.map +1 -1
- package/dist/modules/crm_sale/sale-functions.d.ts +8 -1
- package/dist/modules/crm_sale/sale-functions.d.ts.map +1 -1
- package/dist/modules/crm_sale/sale-functions.js +184 -55
- package/dist/modules/crm_sale/sale-functions.js.map +1 -1
- package/dist/modules/crm_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/crm_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/crm_staff_channel/channel-routes.js +788 -0
- package/dist/modules/crm_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/crm_staff_channel/index.d.ts +5 -0
- package/dist/modules/crm_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/crm_staff_channel/index.js +30 -0
- package/dist/modules/crm_staff_channel/index.js.map +1 -0
- package/dist/modules/crm_website/functions.d.ts.map +1 -1
- package/dist/modules/crm_website/functions.js +89 -10
- package/dist/modules/crm_website/functions.js.map +1 -1
- package/dist/modules/crm_website/index.js +1 -2
- package/dist/modules/crm_website/index.js.map +1 -1
- package/dist/modules/crm_website/messages.d.ts +4 -1
- package/dist/modules/crm_website/messages.d.ts.map +1 -1
- package/dist/modules/crm_website/messages.js +6 -0
- package/dist/modules/crm_website/messages.js.map +1 -1
- package/dist/modules/crm_website/models.d.ts.map +1 -1
- package/dist/modules/crm_website/models.js +18 -0
- package/dist/modules/crm_website/models.js.map +1 -1
- package/dist/modules/crm_website/routes.d.ts.map +1 -1
- package/dist/modules/crm_website/routes.js +44 -12
- package/dist/modules/crm_website/routes.js.map +1 -1
- package/dist/modules/crm_website/screens.d.ts +7 -1
- package/dist/modules/crm_website/screens.d.ts.map +1 -1
- package/dist/modules/crm_website/screens.js +13 -8
- package/dist/modules/crm_website/screens.js.map +1 -1
- package/dist/modules/flow/functions.d.ts +3 -0
- package/dist/modules/flow/functions.d.ts.map +1 -0
- package/dist/modules/flow/functions.js +1876 -0
- package/dist/modules/flow/functions.js.map +1 -0
- package/dist/modules/flow/index.d.ts +12 -0
- package/dist/modules/flow/index.d.ts.map +1 -0
- package/dist/modules/flow/index.js +30 -0
- package/dist/modules/flow/index.js.map +1 -0
- package/dist/modules/flow/jobs.d.ts +3 -0
- package/dist/modules/flow/jobs.d.ts.map +1 -0
- package/dist/modules/flow/jobs.js +136 -0
- package/dist/modules/flow/jobs.js.map +1 -0
- package/dist/modules/flow/membership.d.ts +72 -0
- package/dist/modules/flow/membership.d.ts.map +1 -0
- package/dist/modules/flow/membership.js +176 -0
- package/dist/modules/flow/membership.js.map +1 -0
- package/dist/modules/flow/messages.d.ts +79 -0
- package/dist/modules/flow/messages.d.ts.map +1 -0
- package/dist/modules/flow/messages.js +152 -0
- package/dist/modules/flow/messages.js.map +1 -0
- package/dist/modules/flow/models.d.ts +3 -0
- package/dist/modules/flow/models.d.ts.map +1 -0
- package/dist/modules/flow/models.js +453 -0
- package/dist/modules/flow/models.js.map +1 -0
- package/dist/modules/flow/operations.d.ts +408 -0
- package/dist/modules/flow/operations.d.ts.map +1 -0
- package/dist/modules/flow/operations.js +1665 -0
- package/dist/modules/flow/operations.js.map +1 -0
- package/dist/modules/flow/pages.d.ts +146 -0
- package/dist/modules/flow/pages.d.ts.map +1 -0
- package/dist/modules/flow/pages.js +394 -0
- package/dist/modules/flow/pages.js.map +1 -0
- package/dist/modules/flow/projects.d.ts +41 -0
- package/dist/modules/flow/projects.d.ts.map +1 -0
- package/dist/modules/flow/projects.js +74 -0
- package/dist/modules/flow/projects.js.map +1 -0
- package/dist/modules/flow/search.d.ts +57 -0
- package/dist/modules/flow/search.d.ts.map +1 -0
- package/dist/modules/flow/search.js +110 -0
- package/dist/modules/flow/search.js.map +1 -0
- package/dist/modules/flow/types.d.ts +17 -0
- package/dist/modules/flow/types.d.ts.map +1 -0
- package/dist/modules/flow/types.js +13 -0
- package/dist/modules/flow/types.js.map +1 -0
- package/dist/modules/flow_backend/functions.d.ts +3 -0
- package/dist/modules/flow_backend/functions.d.ts.map +1 -0
- package/dist/modules/flow_backend/functions.js +162 -0
- package/dist/modules/flow_backend/functions.js.map +1 -0
- package/dist/modules/flow_backend/index.d.ts +3 -0
- package/dist/modules/flow_backend/index.d.ts.map +1 -0
- package/dist/modules/flow_backend/index.js +96 -0
- package/dist/modules/flow_backend/index.js.map +1 -0
- package/dist/modules/flow_backend/islands.d.ts +3 -0
- package/dist/modules/flow_backend/islands.d.ts.map +1 -0
- package/dist/modules/flow_backend/islands.js +31 -0
- package/dist/modules/flow_backend/islands.js.map +1 -0
- package/dist/modules/flow_backend/messages.d.ts +248 -0
- package/dist/modules/flow_backend/messages.d.ts.map +1 -0
- package/dist/modules/flow_backend/messages.js +470 -0
- package/dist/modules/flow_backend/messages.js.map +1 -0
- package/dist/modules/flow_backend/relation-control.d.ts +53 -0
- package/dist/modules/flow_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/flow_backend/relation-control.js +106 -0
- package/dist/modules/flow_backend/relation-control.js.map +1 -0
- package/dist/modules/flow_backend/routes.d.ts +3 -0
- package/dist/modules/flow_backend/routes.d.ts.map +1 -0
- package/dist/modules/flow_backend/routes.js +2519 -0
- package/dist/modules/flow_backend/routes.js.map +1 -0
- package/dist/modules/flow_backend/screens/all-epics.d.ts +19 -0
- package/dist/modules/flow_backend/screens/all-epics.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/all-epics.js +59 -0
- package/dist/modules/flow_backend/screens/all-epics.js.map +1 -0
- package/dist/modules/flow_backend/screens/all-pages.d.ts +19 -0
- package/dist/modules/flow_backend/screens/all-pages.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/all-pages.js +65 -0
- package/dist/modules/flow_backend/screens/all-pages.js.map +1 -0
- package/dist/modules/flow_backend/screens/board.d.ts +5 -0
- package/dist/modules/flow_backend/screens/board.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/board.js +7 -0
- package/dist/modules/flow_backend/screens/board.js.map +1 -0
- package/dist/modules/flow_backend/screens/epic-detail.d.ts +22 -0
- package/dist/modules/flow_backend/screens/epic-detail.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/epic-detail.js +41 -0
- package/dist/modules/flow_backend/screens/epic-detail.js.map +1 -0
- package/dist/modules/flow_backend/screens/gantt.d.ts +21 -0
- package/dist/modules/flow_backend/screens/gantt.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/gantt.js +42 -0
- package/dist/modules/flow_backend/screens/gantt.js.map +1 -0
- package/dist/modules/flow_backend/screens/index.d.ts +29 -0
- package/dist/modules/flow_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/index.js +23 -0
- package/dist/modules/flow_backend/screens/index.js.map +1 -0
- package/dist/modules/flow_backend/screens/issue-detail.d.ts +38 -0
- package/dist/modules/flow_backend/screens/issue-detail.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/issue-detail.js +336 -0
- package/dist/modules/flow_backend/screens/issue-detail.js.map +1 -0
- package/dist/modules/flow_backend/screens/issues.d.ts +34 -0
- package/dist/modules/flow_backend/screens/issues.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/issues.js +118 -0
- package/dist/modules/flow_backend/screens/issues.js.map +1 -0
- package/dist/modules/flow_backend/screens/map.d.ts +13 -0
- package/dist/modules/flow_backend/screens/map.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/map.js +16 -0
- package/dist/modules/flow_backend/screens/map.js.map +1 -0
- package/dist/modules/flow_backend/screens/my-work.d.ts +42 -0
- package/dist/modules/flow_backend/screens/my-work.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/my-work.js +157 -0
- package/dist/modules/flow_backend/screens/my-work.js.map +1 -0
- package/dist/modules/flow_backend/screens/nav.d.ts +3 -0
- package/dist/modules/flow_backend/screens/nav.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/nav.js +79 -0
- package/dist/modules/flow_backend/screens/nav.js.map +1 -0
- package/dist/modules/flow_backend/screens/page-detail.d.ts +31 -0
- package/dist/modules/flow_backend/screens/page-detail.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/page-detail.js +113 -0
- package/dist/modules/flow_backend/screens/page-detail.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-create.d.ts +26 -0
- package/dist/modules/flow_backend/screens/project-create.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-create.js +56 -0
- package/dist/modules/flow_backend/screens/project-create.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-epics.d.ts +33 -0
- package/dist/modules/flow_backend/screens/project-epics.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-epics.js +90 -0
- package/dist/modules/flow_backend/screens/project-epics.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-pages.d.ts +34 -0
- package/dist/modules/flow_backend/screens/project-pages.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-pages.js +66 -0
- package/dist/modules/flow_backend/screens/project-pages.js.map +1 -0
- package/dist/modules/flow_backend/screens/project-settings.d.ts +69 -0
- package/dist/modules/flow_backend/screens/project-settings.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/project-settings.js +248 -0
- package/dist/modules/flow_backend/screens/project-settings.js.map +1 -0
- package/dist/modules/flow_backend/screens/projects-list.d.ts +30 -0
- package/dist/modules/flow_backend/screens/projects-list.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/projects-list.js +121 -0
- package/dist/modules/flow_backend/screens/projects-list.js.map +1 -0
- package/dist/modules/flow_backend/screens/shared.d.ts +28 -0
- package/dist/modules/flow_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/shared.js +46 -0
- package/dist/modules/flow_backend/screens/shared.js.map +1 -0
- package/dist/modules/flow_backend/screens/sprints.d.ts +33 -0
- package/dist/modules/flow_backend/screens/sprints.d.ts.map +1 -0
- package/dist/modules/flow_backend/screens/sprints.js +159 -0
- package/dist/modules/flow_backend/screens/sprints.js.map +1 -0
- package/dist/modules/flow_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/flow_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/flow_staff_channel/channel-routes.js +444 -0
- package/dist/modules/flow_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/flow_staff_channel/index.d.ts +5 -0
- package/dist/modules/flow_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/flow_staff_channel/index.js +30 -0
- package/dist/modules/flow_staff_channel/index.js.map +1 -0
- package/dist/modules/hospitality_billing/functions.d.ts +18 -0
- package/dist/modules/hospitality_billing/functions.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/functions.js +426 -0
- package/dist/modules/hospitality_billing/functions.js.map +1 -0
- package/dist/modules/hospitality_billing/index.d.ts +3 -0
- package/dist/modules/hospitality_billing/index.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/index.js +25 -0
- package/dist/modules/hospitality_billing/index.js.map +1 -0
- package/dist/modules/hospitality_billing/jobs.d.ts +17 -0
- package/dist/modules/hospitality_billing/jobs.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/jobs.js +83 -0
- package/dist/modules/hospitality_billing/jobs.js.map +1 -0
- package/dist/modules/hospitality_billing/menus.d.ts +9 -0
- package/dist/modules/hospitality_billing/menus.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/menus.js +25 -0
- package/dist/modules/hospitality_billing/menus.js.map +1 -0
- package/dist/modules/hospitality_billing/messages.d.ts +3 -0
- package/dist/modules/hospitality_billing/messages.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/messages.js +163 -0
- package/dist/modules/hospitality_billing/messages.js.map +1 -0
- package/dist/modules/hospitality_billing/models.d.ts +3 -0
- package/dist/modules/hospitality_billing/models.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/models.js +65 -0
- package/dist/modules/hospitality_billing/models.js.map +1 -0
- package/dist/modules/hospitality_billing/routes.d.ts +3 -0
- package/dist/modules/hospitality_billing/routes.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/routes.js +189 -0
- package/dist/modules/hospitality_billing/routes.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/billing.d.ts +3 -0
- package/dist/modules/hospitality_billing/screens/billing.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/billing.js +20 -0
- package/dist/modules/hospitality_billing/screens/billing.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.d.ts +12 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.js +86 -0
- package/dist/modules/hospitality_billing/screens/charge-rules.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/index.d.ts +4 -0
- package/dist/modules/hospitality_billing/screens/index.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/index.js +4 -0
- package/dist/modules/hospitality_billing/screens/index.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/page-frame.d.ts +14 -0
- package/dist/modules/hospitality_billing/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/page-frame.js +6 -0
- package/dist/modules/hospitality_billing/screens/page-frame.js.map +1 -0
- package/dist/modules/hospitality_billing/screens/shared.d.ts +64 -0
- package/dist/modules/hospitality_billing/screens/shared.d.ts.map +1 -0
- package/dist/modules/hospitality_billing/screens/shared.js +117 -0
- package/dist/modules/hospitality_billing/screens/shared.js.map +1 -0
- package/dist/modules/hospitality_core/calendar.d.ts.map +1 -1
- package/dist/modules/hospitality_core/calendar.js +2 -1
- package/dist/modules/hospitality_core/calendar.js.map +1 -1
- package/dist/modules/hospitality_core/catalog.d.ts +3 -0
- package/dist/modules/hospitality_core/catalog.d.ts.map +1 -0
- package/dist/modules/hospitality_core/catalog.js +284 -0
- package/dist/modules/hospitality_core/catalog.js.map +1 -0
- package/dist/modules/hospitality_core/functions.d.ts.map +1 -1
- package/dist/modules/hospitality_core/functions.js +131 -14
- package/dist/modules/hospitality_core/functions.js.map +1 -1
- package/dist/modules/hospitality_core/index.d.ts +2 -2
- package/dist/modules/hospitality_core/index.d.ts.map +1 -1
- package/dist/modules/hospitality_core/index.js +6 -3
- package/dist/modules/hospitality_core/index.js.map +1 -1
- package/dist/modules/hospitality_core/inventory.d.ts +53 -4
- package/dist/modules/hospitality_core/inventory.d.ts.map +1 -1
- package/dist/modules/hospitality_core/inventory.js +121 -14
- package/dist/modules/hospitality_core/inventory.js.map +1 -1
- package/dist/modules/hospitality_core/menus.d.ts.map +1 -1
- package/dist/modules/hospitality_core/menus.js +31 -0
- package/dist/modules/hospitality_core/menus.js.map +1 -1
- package/dist/modules/hospitality_core/messages.d.ts.map +1 -1
- package/dist/modules/hospitality_core/messages.js +393 -183
- package/dist/modules/hospitality_core/messages.js.map +1 -1
- package/dist/modules/hospitality_core/models.d.ts +1 -1
- package/dist/modules/hospitality_core/models.d.ts.map +1 -1
- package/dist/modules/hospitality_core/models.js +48 -2
- package/dist/modules/hospitality_core/models.js.map +1 -1
- package/dist/modules/hospitality_core/night-audit.d.ts +1 -0
- package/dist/modules/hospitality_core/night-audit.d.ts.map +1 -1
- package/dist/modules/hospitality_core/night-audit.js +39 -1
- package/dist/modules/hospitality_core/night-audit.js.map +1 -1
- package/dist/modules/hospitality_core/online-booking.d.ts +5 -0
- package/dist/modules/hospitality_core/online-booking.d.ts.map +1 -0
- package/dist/modules/hospitality_core/online-booking.js +775 -0
- package/dist/modules/hospitality_core/online-booking.js.map +1 -0
- package/dist/modules/hospitality_core/operations.d.ts +21 -1
- package/dist/modules/hospitality_core/operations.d.ts.map +1 -1
- package/dist/modules/hospitality_core/operations.js +432 -67
- package/dist/modules/hospitality_core/operations.js.map +1 -1
- package/dist/modules/hospitality_core/relations.d.ts.map +1 -1
- package/dist/modules/hospitality_core/relations.js +1 -0
- package/dist/modules/hospitality_core/relations.js.map +1 -1
- package/dist/modules/hospitality_core/routes.d.ts.map +1 -1
- package/dist/modules/hospitality_core/routes.js +514 -107
- package/dist/modules/hospitality_core/routes.js.map +1 -1
- package/dist/modules/hospitality_core/screens/amenities.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/amenities.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/amenities.js +65 -0
- package/dist/modules/hospitality_core/screens/amenities.js.map +1 -0
- package/dist/modules/hospitality_core/screens/building-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/building-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/building-detail.js +69 -0
- package/dist/modules/hospitality_core/screens/building-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.d.ts +7 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.js +109 -0
- package/dist/modules/hospitality_core/screens/cleaning-task-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.d.ts +20 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.js +139 -0
- package/dist/modules/hospitality_core/screens/cleaning-tasks.js.map +1 -0
- package/dist/modules/hospitality_core/screens/content.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/content.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/content.js +114 -0
- package/dist/modules/hospitality_core/screens/content.js.map +1 -0
- package/dist/modules/hospitality_core/screens/floor-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/floor-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/floor-detail.js +74 -0
- package/dist/modules/hospitality_core/screens/floor-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/folio-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/folio-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/folio-detail.js +142 -0
- package/dist/modules/hospitality_core/screens/folio-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/folios.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/folios.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/folios.js +7 -0
- package/dist/modules/hospitality_core/screens/folios.js.map +1 -0
- package/dist/modules/hospitality_core/screens/front-desk.d.ts +35 -0
- package/dist/modules/hospitality_core/screens/front-desk.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/front-desk.js +195 -0
- package/dist/modules/hospitality_core/screens/front-desk.js.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.js +121 -0
- package/dist/modules/hospitality_core/screens/housekeeping-room-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.d.ts +9 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.js +54 -0
- package/dist/modules/hospitality_core/screens/housekeeping-rooms.js.map +1 -0
- package/dist/modules/hospitality_core/screens/index.d.ts +33 -0
- package/dist/modules/hospitality_core/screens/index.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/index.js +33 -0
- package/dist/modules/hospitality_core/screens/index.js.map +1 -0
- package/dist/modules/hospitality_core/screens/inventory.d.ts +8 -0
- package/dist/modules/hospitality_core/screens/inventory.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/inventory.js +122 -0
- package/dist/modules/hospitality_core/screens/inventory.js.map +1 -0
- package/dist/modules/hospitality_core/screens/new-property.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/new-property.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/new-property.js +8 -0
- package/dist/modules/hospitality_core/screens/new-property.js.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room-type.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/new-room-type.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room-type.js +8 -0
- package/dist/modules/hospitality_core/screens/new-room-type.js.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/new-room.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/new-room.js +8 -0
- package/dist/modules/hospitality_core/screens/new-room.js.map +1 -0
- package/dist/modules/hospitality_core/screens/night-audit.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/night-audit.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/night-audit.js +67 -0
- package/dist/modules/hospitality_core/screens/night-audit.js.map +1 -0
- package/dist/modules/hospitality_core/screens/page-frame.d.ts +15 -0
- package/dist/modules/hospitality_core/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/page-frame.js +10 -0
- package/dist/modules/hospitality_core/screens/page-frame.js.map +1 -0
- package/dist/modules/hospitality_core/screens/policies.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/policies.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/policies.js +72 -0
- package/dist/modules/hospitality_core/screens/policies.js.map +1 -0
- package/dist/modules/hospitality_core/screens/properties.d.ts +7 -0
- package/dist/modules/hospitality_core/screens/properties.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/properties.js +45 -0
- package/dist/modules/hospitality_core/screens/properties.js.map +1 -0
- package/dist/modules/hospitality_core/screens/property-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/property-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/property-detail.js +92 -0
- package/dist/modules/hospitality_core/screens/property-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/rate-plans.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/rate-plans.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/rate-plans.js +123 -0
- package/dist/modules/hospitality_core/screens/rate-plans.js.map +1 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.d.ts +11 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.js +237 -0
- package/dist/modules/hospitality_core/screens/reservation-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/reservations.d.ts +17 -0
- package/dist/modules/hospitality_core/screens/reservations.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/reservations.js +166 -0
- package/dist/modules/hospitality_core/screens/reservations.js.map +1 -0
- package/dist/modules/hospitality_core/screens/room-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/room-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/room-detail.js +75 -0
- package/dist/modules/hospitality_core/screens/room-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.js +91 -0
- package/dist/modules/hospitality_core/screens/room-type-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/room-types.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/room-types.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/room-types.js +61 -0
- package/dist/modules/hospitality_core/screens/room-types.js.map +1 -0
- package/dist/modules/hospitality_core/screens/rooms.d.ts +10 -0
- package/dist/modules/hospitality_core/screens/rooms.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/rooms.js +150 -0
- package/dist/modules/hospitality_core/screens/rooms.js.map +1 -0
- package/dist/modules/hospitality_core/screens/services.d.ts +18 -0
- package/dist/modules/hospitality_core/screens/services.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/services.js +196 -0
- package/dist/modules/hospitality_core/screens/services.js.map +1 -0
- package/dist/modules/hospitality_core/screens/shared.d.ts +777 -0
- package/dist/modules/hospitality_core/screens/shared.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/shared.js +1586 -0
- package/dist/modules/hospitality_core/screens/shared.js.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-detail.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/stay-detail.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-detail.js +233 -0
- package/dist/modules/hospitality_core/screens/stay-detail.js.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-notices.d.ts +9 -0
- package/dist/modules/hospitality_core/screens/stay-notices.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/stay-notices.js +87 -0
- package/dist/modules/hospitality_core/screens/stay-notices.js.map +1 -0
- package/dist/modules/hospitality_core/screens/stays.d.ts +3 -0
- package/dist/modules/hospitality_core/screens/stays.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/stays.js +7 -0
- package/dist/modules/hospitality_core/screens/stays.js.map +1 -0
- package/dist/modules/hospitality_core/screens/tape-chart.d.ts +7 -0
- package/dist/modules/hospitality_core/screens/tape-chart.d.ts.map +1 -0
- package/dist/modules/hospitality_core/screens/tape-chart.js +99 -0
- package/dist/modules/hospitality_core/screens/tape-chart.js.map +1 -0
- package/dist/modules/hospitality_core/services.d.ts.map +1 -1
- package/dist/modules/hospitality_core/services.js +133 -30
- package/dist/modules/hospitality_core/services.js.map +1 -1
- package/dist/modules/hospitality_core/stay-notices.js +2 -2
- package/dist/modules/hospitality_core/stay-notices.js.map +1 -1
- package/dist/modules/hospitality_core/types.d.ts +26 -5
- package/dist/modules/hospitality_core/types.d.ts.map +1 -1
- package/dist/modules/hospitality_core/types.js +47 -5
- package/dist/modules/hospitality_core/types.js.map +1 -1
- package/dist/modules/hospitality_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/hospitality_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/hospitality_staff_channel/channel-routes.js +1227 -0
- package/dist/modules/hospitality_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/hospitality_staff_channel/index.d.ts +5 -0
- package/dist/modules/hospitality_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/hospitality_staff_channel/index.js +34 -0
- package/dist/modules/hospitality_staff_channel/index.js.map +1 -0
- package/dist/modules/hr/functions.d.ts.map +1 -1
- package/dist/modules/hr/functions.js +108 -44
- package/dist/modules/hr/functions.js.map +1 -1
- package/dist/modules/hr/index.d.ts.map +1 -1
- package/dist/modules/hr/index.js +0 -1
- package/dist/modules/hr/index.js.map +1 -1
- package/dist/modules/hr_backend/index.d.ts +2 -1
- package/dist/modules/hr_backend/index.d.ts.map +1 -1
- package/dist/modules/hr_backend/index.js +39 -7
- package/dist/modules/hr_backend/index.js.map +1 -1
- package/dist/modules/hr_backend/routes.d.ts.map +1 -1
- package/dist/modules/hr_backend/routes.js +279 -42
- package/dist/modules/hr_backend/routes.js.map +1 -1
- package/dist/modules/hr_backend/screens/employee-form.d.ts +28 -0
- package/dist/modules/hr_backend/screens/employee-form.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/employee-form.js +110 -0
- package/dist/modules/hr_backend/screens/employee-form.js.map +1 -0
- package/dist/modules/hr_backend/screens/employees-list.d.ts +22 -0
- package/dist/modules/hr_backend/screens/employees-list.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/employees-list.js +53 -0
- package/dist/modules/hr_backend/screens/employees-list.js.map +1 -0
- package/dist/modules/hr_backend/screens/index.d.ts +5 -0
- package/dist/modules/hr_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/index.js +5 -0
- package/dist/modules/hr_backend/screens/index.js.map +1 -0
- package/dist/modules/hr_backend/screens/leaves-list.d.ts +22 -0
- package/dist/modules/hr_backend/screens/leaves-list.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/leaves-list.js +78 -0
- package/dist/modules/hr_backend/screens/leaves-list.js.map +1 -0
- package/dist/modules/hr_backend/screens/roster.d.ts +19 -0
- package/dist/modules/hr_backend/screens/roster.d.ts.map +1 -0
- package/dist/modules/hr_backend/screens/roster.js +83 -0
- package/dist/modules/hr_backend/screens/roster.js.map +1 -0
- package/dist/modules/inventory_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/inventory_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/inventory_staff_channel/channel-routes.js +724 -0
- package/dist/modules/inventory_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/inventory_staff_channel/index.d.ts +5 -0
- package/dist/modules/inventory_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/inventory_staff_channel/index.js +38 -0
- package/dist/modules/inventory_staff_channel/index.js.map +1 -0
- package/dist/modules/livedoc/documents.d.ts +48 -0
- package/dist/modules/livedoc/documents.d.ts.map +1 -0
- package/dist/modules/livedoc/documents.js +99 -0
- package/dist/modules/livedoc/documents.js.map +1 -0
- package/dist/modules/livedoc/functions.d.ts +3 -0
- package/dist/modules/livedoc/functions.d.ts.map +1 -0
- package/dist/modules/livedoc/functions.js +47 -0
- package/dist/modules/livedoc/functions.js.map +1 -0
- package/dist/modules/livedoc/index.d.ts +22 -0
- package/dist/modules/livedoc/index.d.ts.map +1 -0
- package/dist/modules/livedoc/index.js +37 -0
- package/dist/modules/livedoc/index.js.map +1 -0
- package/dist/modules/livedoc/islands.d.ts +3 -0
- package/dist/modules/livedoc/islands.d.ts.map +1 -0
- package/dist/modules/livedoc/islands.js +22 -0
- package/dist/modules/livedoc/islands.js.map +1 -0
- package/dist/modules/livedoc/routes.d.ts +11 -0
- package/dist/modules/livedoc/routes.d.ts.map +1 -0
- package/dist/modules/livedoc/routes.js +232 -0
- package/dist/modules/livedoc/routes.js.map +1 -0
- package/dist/modules/livedoc/sync.d.ts +124 -0
- package/dist/modules/livedoc/sync.d.ts.map +1 -0
- package/dist/modules/livedoc/sync.js +218 -0
- package/dist/modules/livedoc/sync.js.map +1 -0
- package/dist/modules/loyalty/admin-functions.d.ts.map +1 -1
- package/dist/modules/loyalty/admin-functions.js +42 -6
- package/dist/modules/loyalty/admin-functions.js.map +1 -1
- package/dist/modules/loyalty/engine.d.ts +1 -0
- package/dist/modules/loyalty/engine.d.ts.map +1 -1
- package/dist/modules/loyalty/engine.js +88 -28
- package/dist/modules/loyalty/engine.js.map +1 -1
- package/dist/modules/loyalty/index.d.ts.map +1 -1
- package/dist/modules/loyalty/index.js +10 -2
- package/dist/modules/loyalty/index.js.map +1 -1
- package/dist/modules/loyalty/ledger.d.ts.map +1 -1
- package/dist/modules/loyalty/ledger.js +11 -0
- package/dist/modules/loyalty/ledger.js.map +1 -1
- package/dist/modules/loyalty/membership-functions.d.ts.map +1 -1
- package/dist/modules/loyalty/membership-functions.js +23 -7
- package/dist/modules/loyalty/membership-functions.js.map +1 -1
- package/dist/modules/loyalty/messages.d.ts +8 -0
- package/dist/modules/loyalty/messages.d.ts.map +1 -1
- package/dist/modules/loyalty/messages.js +8 -0
- package/dist/modules/loyalty/messages.js.map +1 -1
- package/dist/modules/loyalty/models.d.ts.map +1 -1
- package/dist/modules/loyalty/models.js +20 -0
- package/dist/modules/loyalty/models.js.map +1 -1
- package/dist/modules/loyalty/order-functions.d.ts +16 -1
- package/dist/modules/loyalty/order-functions.d.ts.map +1 -1
- package/dist/modules/loyalty/order-functions.js +513 -291
- package/dist/modules/loyalty/order-functions.js.map +1 -1
- package/dist/modules/loyalty/stats.d.ts +17 -0
- package/dist/modules/loyalty/stats.d.ts.map +1 -0
- package/dist/modules/loyalty/stats.js +178 -0
- package/dist/modules/loyalty/stats.js.map +1 -0
- package/dist/modules/loyalty/stored-value.d.ts +42 -0
- package/dist/modules/loyalty/stored-value.d.ts.map +1 -0
- package/dist/modules/loyalty/stored-value.js +368 -0
- package/dist/modules/loyalty/stored-value.js.map +1 -0
- package/dist/modules/loyalty/types.d.ts +6 -4
- package/dist/modules/loyalty/types.d.ts.map +1 -1
- package/dist/modules/loyalty/types.js +1 -1
- package/dist/modules/loyalty/types.js.map +1 -1
- package/dist/modules/loyalty_backend/index.js +443 -172
- package/dist/modules/loyalty_backend/index.js.map +1 -1
- package/dist/modules/loyalty_backend/messages.d.ts +58 -1
- package/dist/modules/loyalty_backend/messages.d.ts.map +1 -1
- package/dist/modules/loyalty_backend/messages.js +114 -0
- package/dist/modules/loyalty_backend/messages.js.map +1 -1
- package/dist/modules/loyalty_backend/screens/index.d.ts +90 -0
- package/dist/modules/loyalty_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/loyalty_backend/screens/index.js +912 -0
- package/dist/modules/loyalty_backend/screens/index.js.map +1 -0
- package/dist/modules/loyalty_backend/screens/page-frame.d.ts +14 -0
- package/dist/modules/loyalty_backend/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/loyalty_backend/screens/page-frame.js +13 -0
- package/dist/modules/loyalty_backend/screens/page-frame.js.map +1 -0
- package/dist/modules/loyalty_pos/channel.d.ts +2 -0
- package/dist/modules/loyalty_pos/channel.d.ts.map +1 -0
- package/dist/modules/loyalty_pos/channel.js +270 -0
- package/dist/modules/loyalty_pos/channel.js.map +1 -0
- package/dist/modules/loyalty_pos/functions.d.ts +11 -17
- package/dist/modules/loyalty_pos/functions.d.ts.map +1 -1
- package/dist/modules/loyalty_pos/functions.js +454 -94
- package/dist/modules/loyalty_pos/functions.js.map +1 -1
- package/dist/modules/loyalty_pos/index.js +6 -16
- package/dist/modules/loyalty_pos/index.js.map +1 -1
- package/dist/modules/loyalty_pos/jobs.d.ts +3 -0
- package/dist/modules/loyalty_pos/jobs.d.ts.map +1 -0
- package/dist/modules/loyalty_pos/jobs.js +30 -0
- package/dist/modules/loyalty_pos/jobs.js.map +1 -0
- package/dist/modules/loyalty_sale/functions.d.ts +2 -2
- package/dist/modules/loyalty_sale/functions.d.ts.map +1 -1
- package/dist/modules/loyalty_sale/functions.js +53 -34
- package/dist/modules/loyalty_sale/functions.js.map +1 -1
- package/dist/modules/loyalty_sale/index.js +0 -2
- package/dist/modules/loyalty_sale/index.js.map +1 -1
- package/dist/modules/mail/functions.d.ts.map +1 -1
- package/dist/modules/mail/functions.js +48 -6
- package/dist/modules/mail/functions.js.map +1 -1
- package/dist/modules/mail/index.d.ts.map +1 -1
- package/dist/modules/mail/index.js +0 -1
- package/dist/modules/mail/index.js.map +1 -1
- package/dist/modules/mail/operations.d.ts +19 -0
- package/dist/modules/mail/operations.d.ts.map +1 -1
- package/dist/modules/mail/operations.js +69 -0
- package/dist/modules/mail/operations.js.map +1 -1
- package/dist/modules/mail_backend/index.d.ts +1 -1
- package/dist/modules/mail_backend/index.d.ts.map +1 -1
- package/dist/modules/mail_backend/index.js +5 -14
- package/dist/modules/mail_backend/index.js.map +1 -1
- package/dist/modules/mail_backend/islands.js +2 -2
- package/dist/modules/mail_backend/islands.js.map +1 -1
- package/dist/modules/mail_backend/routes.d.ts.map +1 -1
- package/dist/modules/mail_backend/routes.js +25 -20
- package/dist/modules/mail_backend/routes.js.map +1 -1
- package/dist/modules/mail_backend/screens/inbox-list.d.ts +9 -0
- package/dist/modules/mail_backend/screens/inbox-list.d.ts.map +1 -0
- package/dist/modules/mail_backend/screens/inbox-list.js +13 -0
- package/dist/modules/mail_backend/screens/inbox-list.js.map +1 -0
- package/dist/modules/mail_backend/screens/index.d.ts +3 -0
- package/dist/modules/mail_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/mail_backend/screens/index.js +2 -0
- package/dist/modules/mail_backend/screens/index.js.map +1 -0
- package/dist/modules/mail_inbound/index.d.ts.map +1 -1
- package/dist/modules/mail_inbound/index.js +0 -1
- package/dist/modules/mail_inbound/index.js.map +1 -1
- package/dist/modules/mail_inbound_backend/index.d.ts +1 -1
- package/dist/modules/mail_inbound_backend/index.d.ts.map +1 -1
- package/dist/modules/mail_inbound_backend/index.js +3 -12
- package/dist/modules/mail_inbound_backend/index.js.map +1 -1
- package/dist/modules/mail_inbound_backend/routes.d.ts.map +1 -1
- package/dist/modules/mail_inbound_backend/routes.js +6 -21
- package/dist/modules/mail_inbound_backend/routes.js.map +1 -1
- package/dist/modules/mail_inbound_backend/screens/inbound-list.d.ts +8 -0
- package/dist/modules/mail_inbound_backend/screens/inbound-list.d.ts.map +1 -0
- package/dist/modules/mail_inbound_backend/screens/inbound-list.js +20 -0
- package/dist/modules/mail_inbound_backend/screens/inbound-list.js.map +1 -0
- package/dist/modules/mail_inbound_backend/screens/index.d.ts +3 -0
- package/dist/modules/mail_inbound_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/mail_inbound_backend/screens/index.js +2 -0
- package/dist/modules/mail_inbound_backend/screens/index.js.map +1 -0
- package/dist/modules/mail_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/mail_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/mail_staff_channel/channel-routes.js +183 -0
- package/dist/modules/mail_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/mail_staff_channel/index.d.ts +5 -0
- package/dist/modules/mail_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/mail_staff_channel/index.js +28 -0
- package/dist/modules/mail_staff_channel/index.js.map +1 -0
- package/dist/modules/mail_transport/index.d.ts.map +1 -1
- package/dist/modules/mail_transport/index.js +0 -1
- package/dist/modules/mail_transport/index.js.map +1 -1
- package/dist/modules/mail_transport_backend/index.d.ts +1 -1
- package/dist/modules/mail_transport_backend/index.d.ts.map +1 -1
- package/dist/modules/mail_transport_backend/index.js +3 -12
- package/dist/modules/mail_transport_backend/index.js.map +1 -1
- package/dist/modules/mail_transport_backend/routes.d.ts.map +1 -1
- package/dist/modules/mail_transport_backend/routes.js +23 -22
- package/dist/modules/mail_transport_backend/routes.js.map +1 -1
- package/dist/modules/mail_transport_backend/screens/index.d.ts +3 -0
- package/dist/modules/mail_transport_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/mail_transport_backend/screens/index.js +2 -0
- package/dist/modules/mail_transport_backend/screens/index.js.map +1 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.d.ts +9 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.d.ts.map +1 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.js +29 -0
- package/dist/modules/mail_transport_backend/screens/outbox-list.js.map +1 -0
- package/dist/modules/manufacturing/functions.d.ts +3 -0
- package/dist/modules/manufacturing/functions.d.ts.map +1 -0
- package/dist/modules/manufacturing/functions.js +912 -0
- package/dist/modules/manufacturing/functions.js.map +1 -0
- package/dist/modules/manufacturing/index.d.ts +6 -0
- package/dist/modules/manufacturing/index.d.ts.map +1 -0
- package/dist/modules/manufacturing/index.js +42 -0
- package/dist/modules/manufacturing/index.js.map +1 -0
- package/dist/modules/manufacturing/models.d.ts +8 -0
- package/dist/modules/manufacturing/models.d.ts.map +1 -0
- package/dist/modules/manufacturing/models.js +145 -0
- package/dist/modules/manufacturing/models.js.map +1 -0
- package/dist/modules/manufacturing/relations.d.ts.map +1 -0
- package/dist/modules/manufacturing/relations.js +37 -0
- package/dist/modules/manufacturing/relations.js.map +1 -0
- package/dist/modules/manufacturing/types.d.ts +7 -0
- package/dist/modules/manufacturing/types.d.ts.map +1 -0
- package/dist/modules/manufacturing/types.js +11 -0
- package/dist/modules/manufacturing/types.js.map +1 -0
- package/dist/modules/manufacturing_backend/index.d.ts +5 -0
- package/dist/modules/manufacturing_backend/index.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/index.js +146 -0
- package/dist/modules/manufacturing_backend/index.js.map +1 -0
- package/dist/modules/manufacturing_backend/routes.d.ts +3 -0
- package/dist/modules/manufacturing_backend/routes.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/routes.js +477 -0
- package/dist/modules/manufacturing_backend/routes.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.d.ts +15 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.js +39 -0
- package/dist/modules/manufacturing_backend/screens/bom-create.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.d.ts +18 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.js +36 -0
- package/dist/modules/manufacturing_backend/screens/boms-list.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/index.d.ts +8 -0
- package/dist/modules/manufacturing_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/index.js +8 -0
- package/dist/modules/manufacturing_backend/screens/index.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-create.d.ts +13 -0
- package/dist/modules/manufacturing_backend/screens/order-create.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-create.js +20 -0
- package/dist/modules/manufacturing_backend/screens/order-create.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.d.ts +7 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.js +129 -0
- package/dist/modules/manufacturing_backend/screens/order-execution.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.d.ts +21 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.js +49 -0
- package/dist/modules/manufacturing_backend/screens/orders-list.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.d.ts +24 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.js +80 -0
- package/dist/modules/manufacturing_backend/screens/work-center-form.js.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.d.ts +23 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.d.ts.map +1 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.js +61 -0
- package/dist/modules/manufacturing_backend/screens/work-centers-list.js.map +1 -0
- package/dist/modules/oauth/index.d.ts.map +1 -1
- package/dist/modules/oauth/index.js +0 -1
- package/dist/modules/oauth/index.js.map +1 -1
- package/dist/modules/oauth/models.d.ts.map +1 -1
- package/dist/modules/oauth/models.js +2 -1
- package/dist/modules/oauth/models.js.map +1 -1
- package/dist/modules/oauth_backend/index.d.ts +1 -1
- package/dist/modules/oauth_backend/index.d.ts.map +1 -1
- package/dist/modules/oauth_backend/index.js +3 -5
- package/dist/modules/oauth_backend/index.js.map +1 -1
- package/dist/modules/oauth_backend/messages.d.ts +4 -0
- package/dist/modules/oauth_backend/messages.d.ts.map +1 -1
- package/dist/modules/oauth_backend/messages.js +4 -0
- package/dist/modules/oauth_backend/messages.js.map +1 -1
- package/dist/modules/oauth_backend/routes.d.ts.map +1 -1
- package/dist/modules/oauth_backend/routes.js +28 -30
- package/dist/modules/oauth_backend/routes.js.map +1 -1
- package/dist/modules/oauth_backend/screens/index.d.ts +66 -0
- package/dist/modules/oauth_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/oauth_backend/screens/index.js +306 -0
- package/dist/modules/oauth_backend/screens/index.js.map +1 -0
- package/dist/modules/partner/functions.d.ts.map +1 -1
- package/dist/modules/partner/functions.js +74 -6
- package/dist/modules/partner/functions.js.map +1 -1
- package/dist/modules/partner/index.d.ts.map +1 -1
- package/dist/modules/partner/index.js +0 -1
- package/dist/modules/partner/index.js.map +1 -1
- package/dist/modules/partner/models.d.ts +4 -4
- package/dist/modules/partner/models.d.ts.map +1 -1
- package/dist/modules/partner/models.js +9 -7
- package/dist/modules/partner/models.js.map +1 -1
- package/dist/modules/partner/types.d.ts +2 -2
- package/dist/modules/partner/types.js +2 -2
- package/dist/modules/partner_backend/client/address-view.mjs +5 -5
- package/dist/modules/partner_backend/client/address-view.mjs.map +1 -1
- package/dist/modules/partner_backend/client/address.css +22 -10
- package/dist/modules/partner_backend/client/partner.css +116 -0
- package/dist/modules/partner_backend/index.d.ts +1 -1
- package/dist/modules/partner_backend/index.d.ts.map +1 -1
- package/dist/modules/partner_backend/index.js +34 -4
- package/dist/modules/partner_backend/index.js.map +1 -1
- package/dist/modules/partner_backend/menus.js +2 -2
- package/dist/modules/partner_backend/menus.js.map +1 -1
- package/dist/modules/partner_backend/routes.d.ts +3 -1
- package/dist/modules/partner_backend/routes.d.ts.map +1 -1
- package/dist/modules/partner_backend/routes.js +236 -91
- package/dist/modules/partner_backend/routes.js.map +1 -1
- package/dist/modules/partner_backend/screens/form.d.ts +21 -0
- package/dist/modules/partner_backend/screens/form.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/form.js +101 -0
- package/dist/modules/partner_backend/screens/form.js.map +1 -0
- package/dist/modules/partner_backend/screens/index.d.ts +5 -0
- package/dist/modules/partner_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/index.js +4 -0
- package/dist/modules/partner_backend/screens/index.js.map +1 -0
- package/dist/modules/partner_backend/screens/list.d.ts +6 -0
- package/dist/modules/partner_backend/screens/list.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/list.js +94 -0
- package/dist/modules/partner_backend/screens/list.js.map +1 -0
- package/dist/modules/partner_backend/screens/new.d.ts +5 -0
- package/dist/modules/partner_backend/screens/new.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/new.js +58 -0
- package/dist/modules/partner_backend/screens/new.js.map +1 -0
- package/dist/modules/partner_backend/screens/types.d.ts +44 -0
- package/dist/modules/partner_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/partner_backend/screens/types.js +2 -0
- package/dist/modules/partner_backend/screens/types.js.map +1 -0
- package/dist/modules/partner_mail_backend/index.d.ts +5 -0
- package/dist/modules/partner_mail_backend/index.d.ts.map +1 -0
- package/dist/modules/partner_mail_backend/index.js +29 -0
- package/dist/modules/partner_mail_backend/index.js.map +1 -0
- package/dist/modules/pos/functions.d.ts +18 -2
- package/dist/modules/pos/functions.d.ts.map +1 -1
- package/dist/modules/pos/functions.js +3279 -345
- package/dist/modules/pos/functions.js.map +1 -1
- package/dist/modules/pos/index.d.ts +2 -1
- package/dist/modules/pos/index.d.ts.map +1 -1
- package/dist/modules/pos/index.js +5 -5
- package/dist/modules/pos/index.js.map +1 -1
- package/dist/modules/pos/models.d.ts.map +1 -1
- package/dist/modules/pos/models.js +189 -1
- package/dist/modules/pos/models.js.map +1 -1
- package/dist/modules/pos/relations.d.ts.map +1 -1
- package/dist/modules/pos/relations.js +11 -0
- package/dist/modules/pos/relations.js.map +1 -1
- package/dist/modules/pos_backend/index.js +182 -154
- package/dist/modules/pos_backend/index.js.map +1 -1
- package/dist/modules/pos_backend/screens.d.ts +1 -0
- package/dist/modules/pos_backend/screens.d.ts.map +1 -1
- package/dist/modules/pos_backend/screens.js +28 -38
- package/dist/modules/pos_backend/screens.js.map +1 -1
- package/dist/modules/pos_channel/catalog.d.ts +27 -0
- package/dist/modules/pos_channel/catalog.d.ts.map +1 -0
- package/dist/modules/pos_channel/catalog.js +310 -0
- package/dist/modules/pos_channel/catalog.js.map +1 -0
- package/dist/modules/pos_channel/index.d.ts +7 -0
- package/dist/modules/pos_channel/index.d.ts.map +1 -0
- package/dist/modules/pos_channel/index.js +61 -0
- package/dist/modules/pos_channel/index.js.map +1 -0
- package/dist/modules/pos_channel/offline.d.ts +66 -0
- package/dist/modules/pos_channel/offline.d.ts.map +1 -0
- package/dist/modules/pos_channel/offline.js +16 -0
- package/dist/modules/pos_channel/offline.js.map +1 -0
- package/dist/modules/pos_channel/operations.d.ts +422 -0
- package/dist/modules/pos_channel/operations.d.ts.map +1 -0
- package/dist/modules/pos_channel/operations.js +1781 -0
- package/dist/modules/pos_channel/operations.js.map +1 -0
- package/dist/modules/pos_channel/sync.d.ts +6 -0
- package/dist/modules/pos_channel/sync.d.ts.map +1 -0
- package/dist/modules/pos_channel/sync.js +1161 -0
- package/dist/modules/pos_channel/sync.js.map +1 -0
- package/dist/modules/pricing/index.d.ts.map +1 -1
- package/dist/modules/pricing/index.js +3 -4
- package/dist/modules/pricing/index.js.map +1 -1
- package/dist/modules/pricing_backend/index.js +135 -78
- package/dist/modules/pricing_backend/index.js.map +1 -1
- package/dist/modules/pricing_backend/screens/index.d.ts +5 -0
- package/dist/modules/pricing_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/index.js +4 -0
- package/dist/modules/pricing_backend/screens/index.js.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.d.ts +10 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.js +30 -0
- package/dist/modules/pricing_backend/screens/pricelist-create.js.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.d.ts +15 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.js +164 -0
- package/dist/modules/pricing_backend/screens/pricelist-detail.js.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.d.ts +11 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.js +27 -0
- package/dist/modules/pricing_backend/screens/pricelists-list.js.map +1 -0
- package/dist/modules/pricing_backend/screens/shared.d.ts +21 -0
- package/dist/modules/pricing_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/pricing_backend/screens/shared.js +3 -0
- package/dist/modules/pricing_backend/screens/shared.js.map +1 -0
- package/dist/modules/product/functions.d.ts.map +1 -1
- package/dist/modules/product/functions.js +679 -50
- package/dist/modules/product/functions.js.map +1 -1
- package/dist/modules/product/index.d.ts +2 -0
- package/dist/modules/product/index.d.ts.map +1 -1
- package/dist/modules/product/index.js +2 -2
- package/dist/modules/product/index.js.map +1 -1
- package/dist/modules/product/models.d.ts +1 -1
- package/dist/modules/product/models.d.ts.map +1 -1
- package/dist/modules/product/models.js +27 -4
- package/dist/modules/product/models.js.map +1 -1
- package/dist/modules/product/relations.d.ts.map +1 -1
- package/dist/modules/product/relations.js +4 -0
- package/dist/modules/product/relations.js.map +1 -1
- package/dist/modules/product/sellable.d.ts +26 -0
- package/dist/modules/product/sellable.d.ts.map +1 -0
- package/dist/modules/product/sellable.js +56 -0
- package/dist/modules/product/sellable.js.map +1 -0
- package/dist/modules/product/types.d.ts +2 -2
- package/dist/modules/product/views.d.ts.map +1 -1
- package/dist/modules/product/views.js +5 -1
- package/dist/modules/product/views.js.map +1 -1
- package/dist/modules/product_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/product_activity_backend/index.js +2 -3
- package/dist/modules/product_activity_backend/index.js.map +1 -1
- package/dist/modules/product_backend/client/media-upload-view.d.mts +2 -0
- package/dist/modules/product_backend/client/media-upload-view.d.mts.map +1 -0
- package/dist/modules/product_backend/client/media-upload-view.mjs +27 -0
- package/dist/modules/product_backend/client/media-upload-view.mjs.map +1 -0
- package/dist/modules/product_backend/client/product.css +964 -0
- package/dist/modules/product_backend/client/product.d.mts +2 -0
- package/dist/modules/product_backend/client/product.d.mts.map +1 -1
- package/dist/modules/product_backend/client/product.mjs +3 -0
- package/dist/modules/product_backend/client/product.mjs.map +1 -1
- package/dist/modules/product_backend/index.d.ts +5 -6
- package/dist/modules/product_backend/index.d.ts.map +1 -1
- package/dist/modules/product_backend/index.js +205 -14
- package/dist/modules/product_backend/index.js.map +1 -1
- package/dist/modules/product_backend/islands.d.ts.map +1 -1
- package/dist/modules/product_backend/islands.js +8 -0
- package/dist/modules/product_backend/islands.js.map +1 -1
- package/dist/modules/product_backend/menus.js +2 -2
- package/dist/modules/product_backend/menus.js.map +1 -1
- package/dist/modules/product_backend/relation-control.d.ts +85 -0
- package/dist/modules/product_backend/relation-control.d.ts.map +1 -0
- package/dist/modules/product_backend/relation-control.js +129 -0
- package/dist/modules/product_backend/relation-control.js.map +1 -0
- package/dist/modules/product_backend/routes.d.ts.map +1 -1
- package/dist/modules/product_backend/routes.js +514 -194
- package/dist/modules/product_backend/routes.js.map +1 -1
- package/dist/modules/product_backend/screens/attributes.d.ts +7 -0
- package/dist/modules/product_backend/screens/attributes.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/attributes.js +66 -0
- package/dist/modules/product_backend/screens/attributes.js.map +1 -0
- package/dist/modules/product_backend/screens/create.d.ts +16 -0
- package/dist/modules/product_backend/screens/create.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/create.js +86 -0
- package/dist/modules/product_backend/screens/create.js.map +1 -0
- package/dist/modules/product_backend/screens/detail.d.ts +87 -0
- package/dist/modules/product_backend/screens/detail.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/detail.js +381 -0
- package/dist/modules/product_backend/screens/detail.js.map +1 -0
- package/dist/modules/product_backend/screens/favorite.d.ts +6 -0
- package/dist/modules/product_backend/screens/favorite.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/favorite.js +43 -0
- package/dist/modules/product_backend/screens/favorite.js.map +1 -0
- package/dist/modules/product_backend/screens/index.d.ts +10 -0
- package/dist/modules/product_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/index.js +7 -0
- package/dist/modules/product_backend/screens/index.js.map +1 -0
- package/dist/modules/product_backend/screens/list.d.ts +54 -0
- package/dist/modules/product_backend/screens/list.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/list.js +124 -0
- package/dist/modules/product_backend/screens/list.js.map +1 -0
- package/dist/modules/product_backend/screens/variant.d.ts +9 -0
- package/dist/modules/product_backend/screens/variant.d.ts.map +1 -0
- package/dist/modules/product_backend/screens/variant.js +113 -0
- package/dist/modules/product_backend/screens/variant.js.map +1 -0
- package/dist/modules/product_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/product_mail_backend/index.js +2 -3
- package/dist/modules/product_mail_backend/index.js.map +1 -1
- package/dist/modules/product_media/functions.d.ts.map +1 -1
- package/dist/modules/product_media/functions.js +59 -6
- package/dist/modules/product_media/functions.js.map +1 -1
- package/dist/modules/product_media/index.js +0 -1
- package/dist/modules/product_media/index.js.map +1 -1
- package/dist/modules/product_variant_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/product_variant_activity_backend/index.js +2 -3
- package/dist/modules/product_variant_activity_backend/index.js.map +1 -1
- package/dist/modules/product_variant_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/product_variant_mail_backend/index.js +2 -3
- package/dist/modules/product_variant_mail_backend/index.js.map +1 -1
- package/dist/modules/purchase/functions.d.ts.map +1 -1
- package/dist/modules/purchase/functions.js +852 -225
- package/dist/modules/purchase/functions.js.map +1 -1
- package/dist/modules/purchase/index.d.ts.map +1 -1
- package/dist/modules/purchase/index.js +30 -5
- package/dist/modules/purchase/index.js.map +1 -1
- package/dist/modules/purchase/models.d.ts.map +1 -1
- package/dist/modules/purchase/models.js +1 -0
- package/dist/modules/purchase/models.js.map +1 -1
- package/dist/modules/purchase/reports.d.ts +4 -0
- package/dist/modules/purchase/reports.d.ts.map +1 -0
- package/dist/modules/purchase/reports.js +86 -0
- package/dist/modules/purchase/reports.js.map +1 -0
- package/dist/modules/purchase_backend/index.js +513 -112
- package/dist/modules/purchase_backend/index.js.map +1 -1
- package/dist/modules/purchase_backend/screens/index.d.ts +10 -0
- package/dist/modules/purchase_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/index.js +10 -0
- package/dist/modules/purchase_backend/screens/index.js.map +1 -0
- package/dist/modules/purchase_backend/screens/order-detail.d.ts +31 -0
- package/dist/modules/purchase_backend/screens/order-detail.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/order-detail.js +204 -0
- package/dist/modules/purchase_backend/screens/order-detail.js.map +1 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.d.ts +7 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.js +58 -0
- package/dist/modules/purchase_backend/screens/order-list-shared.js.map +1 -0
- package/dist/modules/purchase_backend/screens/overview.d.ts +19 -0
- package/dist/modules/purchase_backend/screens/overview.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/overview.js +52 -0
- package/dist/modules/purchase_backend/screens/overview.js.map +1 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.d.ts +14 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.js +26 -0
- package/dist/modules/purchase_backend/screens/purchase-orders-list.js.map +1 -0
- package/dist/modules/purchase_backend/screens/rfq-create.d.ts +16 -0
- package/dist/modules/purchase_backend/screens/rfq-create.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/rfq-create.js +24 -0
- package/dist/modules/purchase_backend/screens/rfq-create.js.map +1 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.d.ts +18 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.js +28 -0
- package/dist/modules/purchase_backend/screens/rfqs-list.js.map +1 -0
- package/dist/modules/purchase_backend/screens/shared.d.ts +18 -0
- package/dist/modules/purchase_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/shared.js +30 -0
- package/dist/modules/purchase_backend/screens/shared.js.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.d.ts +20 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.js +25 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelist-create.js.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.d.ts +33 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.d.ts.map +1 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.js +73 -0
- package/dist/modules/purchase_backend/screens/vendor-pricelists-list.js.map +1 -0
- package/dist/modules/purchase_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/channel-routes.js +119 -0
- package/dist/modules/purchase_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/purchase_staff_channel/index.d.ts +8 -0
- package/dist/modules/purchase_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/index.js +45 -0
- package/dist/modules/purchase_staff_channel/index.js.map +1 -0
- package/dist/modules/purchase_staff_channel/order-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/order-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/order-routes.js +754 -0
- package/dist/modules/purchase_staff_channel/order-routes.js.map +1 -0
- package/dist/modules/purchase_staff_channel/product-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/product-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/product-routes.js +183 -0
- package/dist/modules/purchase_staff_channel/product-routes.js.map +1 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.d.ts +2 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.d.ts.map +1 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.js +189 -0
- package/dist/modules/purchase_staff_channel/vendor-bill-routes.js.map +1 -0
- package/dist/modules/quality/functions.d.ts +3 -0
- package/dist/modules/quality/functions.d.ts.map +1 -0
- package/dist/modules/quality/functions.js +381 -0
- package/dist/modules/quality/functions.js.map +1 -0
- package/dist/modules/quality/index.d.ts +5 -0
- package/dist/modules/quality/index.d.ts.map +1 -0
- package/dist/modules/quality/index.js +19 -0
- package/dist/modules/quality/index.js.map +1 -0
- package/dist/modules/quality/models.d.ts +3 -0
- package/dist/modules/quality/models.d.ts.map +1 -0
- package/dist/modules/quality/models.js +91 -0
- package/dist/modules/quality/models.js.map +1 -0
- package/dist/modules/quality_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/quality_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/quality_staff_channel/channel-routes.js +495 -0
- package/dist/modules/quality_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/quality_staff_channel/index.d.ts +5 -0
- package/dist/modules/quality_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/quality_staff_channel/index.js +30 -0
- package/dist/modules/quality_staff_channel/index.js.map +1 -0
- package/dist/modules/report/functions.d.ts +3 -0
- package/dist/modules/report/functions.d.ts.map +1 -0
- package/dist/modules/report/functions.js +197 -0
- package/dist/modules/report/functions.js.map +1 -0
- package/dist/modules/report/index.d.ts +3 -0
- package/dist/modules/report/index.d.ts.map +1 -0
- package/dist/modules/report/index.js +21 -0
- package/dist/modules/report/index.js.map +1 -0
- package/dist/modules/report/jobs.d.ts +3 -0
- package/dist/modules/report/jobs.d.ts.map +1 -0
- package/dist/modules/report/jobs.js +18 -0
- package/dist/modules/report/jobs.js.map +1 -0
- package/dist/modules/report/models.d.ts +3 -0
- package/dist/modules/report/models.d.ts.map +1 -0
- package/dist/modules/report/models.js +45 -0
- package/dist/modules/report/models.js.map +1 -0
- package/dist/modules/report/routes.d.ts +19 -0
- package/dist/modules/report/routes.d.ts.map +1 -0
- package/dist/modules/report/routes.js +138 -0
- package/dist/modules/report/routes.js.map +1 -0
- package/dist/modules/report_backend/index.d.ts +3 -0
- package/dist/modules/report_backend/index.d.ts.map +1 -0
- package/dist/modules/report_backend/index.js +67 -0
- package/dist/modules/report_backend/index.js.map +1 -0
- package/dist/modules/report_backend/routes.d.ts +10 -0
- package/dist/modules/report_backend/routes.d.ts.map +1 -0
- package/dist/modules/report_backend/routes.js +87 -0
- package/dist/modules/report_backend/routes.js.map +1 -0
- package/dist/modules/report_backend/screens/index.d.ts +13 -0
- package/dist/modules/report_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/report_backend/screens/index.js +91 -0
- package/dist/modules/report_backend/screens/index.js.map +1 -0
- package/dist/modules/sale/functions.d.ts.map +1 -1
- package/dist/modules/sale/functions.js +796 -238
- package/dist/modules/sale/functions.js.map +1 -1
- package/dist/modules/sale/index.d.ts.map +1 -1
- package/dist/modules/sale/index.js +44 -5
- package/dist/modules/sale/index.js.map +1 -1
- package/dist/modules/sale/models.d.ts.map +1 -1
- package/dist/modules/sale/models.js +47 -1
- package/dist/modules/sale/models.js.map +1 -1
- package/dist/modules/sale/relations.d.ts.map +1 -1
- package/dist/modules/sale/relations.js +6 -0
- package/dist/modules/sale/relations.js.map +1 -1
- package/dist/modules/sale/reports.d.ts +4 -0
- package/dist/modules/sale/reports.d.ts.map +1 -0
- package/dist/modules/sale/reports.js +132 -0
- package/dist/modules/sale/reports.js.map +1 -0
- package/dist/modules/sale/scope.d.ts +31 -0
- package/dist/modules/sale/scope.d.ts.map +1 -0
- package/dist/modules/sale/scope.js +34 -0
- package/dist/modules/sale/scope.js.map +1 -0
- package/dist/modules/sale_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/sale_activity_backend/index.js +0 -1
- package/dist/modules/sale_activity_backend/index.js.map +1 -1
- package/dist/modules/sale_backend/index.js +338 -121
- package/dist/modules/sale_backend/index.js.map +1 -1
- package/dist/modules/sale_backend/screens/index.d.ts +9 -0
- package/dist/modules/sale_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/index.js +9 -0
- package/dist/modules/sale_backend/screens/index.js.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.d.ts +14 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.js +48 -0
- package/dist/modules/sale_backend/screens/invoicing-policies-list.js.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.d.ts +14 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.js +38 -0
- package/dist/modules/sale_backend/screens/invoicing-policy-create.js.map +1 -0
- package/dist/modules/sale_backend/screens/order-detail.d.ts +43 -0
- package/dist/modules/sale_backend/screens/order-detail.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/order-detail.js +226 -0
- package/dist/modules/sale_backend/screens/order-detail.js.map +1 -0
- package/dist/modules/sale_backend/screens/overview.d.ts +31 -0
- package/dist/modules/sale_backend/screens/overview.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/overview.js +73 -0
- package/dist/modules/sale_backend/screens/overview.js.map +1 -0
- package/dist/modules/sale_backend/screens/quotation-create.d.ts +13 -0
- package/dist/modules/sale_backend/screens/quotation-create.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/quotation-create.js +19 -0
- package/dist/modules/sale_backend/screens/quotation-create.js.map +1 -0
- package/dist/modules/sale_backend/screens/quotations-list.d.ts +25 -0
- package/dist/modules/sale_backend/screens/quotations-list.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/quotations-list.js +96 -0
- package/dist/modules/sale_backend/screens/quotations-list.js.map +1 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.d.ts +25 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.js +100 -0
- package/dist/modules/sale_backend/screens/sales-orders-list.js.map +1 -0
- package/dist/modules/sale_backend/screens/shared.d.ts +4 -0
- package/dist/modules/sale_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/sale_backend/screens/shared.js +4 -0
- package/dist/modules/sale_backend/screens/shared.js.map +1 -0
- package/dist/modules/sale_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/sale_mail_backend/index.js +0 -1
- package/dist/modules/sale_mail_backend/index.js.map +1 -1
- package/dist/modules/sale_staff_channel/channel-routes.d.ts +2 -0
- package/dist/modules/sale_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/channel-routes.js +296 -0
- package/dist/modules/sale_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/sale_staff_channel/index.d.ts +7 -0
- package/dist/modules/sale_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/index.js +44 -0
- package/dist/modules/sale_staff_channel/index.js.map +1 -0
- package/dist/modules/sale_staff_channel/order-routes.d.ts +2 -0
- package/dist/modules/sale_staff_channel/order-routes.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/order-routes.js +658 -0
- package/dist/modules/sale_staff_channel/order-routes.js.map +1 -0
- package/dist/modules/sale_staff_channel/product-routes.d.ts +2 -0
- package/dist/modules/sale_staff_channel/product-routes.d.ts.map +1 -0
- package/dist/modules/sale_staff_channel/product-routes.js +183 -0
- package/dist/modules/sale_staff_channel/product-routes.js.map +1 -0
- package/dist/modules/stock/functions.d.ts.map +1 -1
- package/dist/modules/stock/functions.js +1239 -332
- package/dist/modules/stock/functions.js.map +1 -1
- package/dist/modules/stock/index.d.ts +2 -0
- package/dist/modules/stock/index.d.ts.map +1 -1
- package/dist/modules/stock/index.js +29 -6
- package/dist/modules/stock/index.js.map +1 -1
- package/dist/modules/stock/models.d.ts.map +1 -1
- package/dist/modules/stock/models.js +1 -0
- package/dist/modules/stock/models.js.map +1 -1
- package/dist/modules/stock/reports.d.ts +4 -0
- package/dist/modules/stock/reports.d.ts.map +1 -0
- package/dist/modules/stock/reports.js +100 -0
- package/dist/modules/stock/reports.js.map +1 -0
- package/dist/modules/stock/routing.d.ts +1 -1
- package/dist/modules/stock/routing.d.ts.map +1 -1
- package/dist/modules/stock/routing.js +35 -30
- package/dist/modules/stock/routing.js.map +1 -1
- package/dist/modules/stock/scope.d.ts +23 -0
- package/dist/modules/stock/scope.d.ts.map +1 -0
- package/dist/modules/stock/scope.js +26 -0
- package/dist/modules/stock/scope.js.map +1 -0
- package/dist/modules/stock/units.d.ts +14 -0
- package/dist/modules/stock/units.d.ts.map +1 -0
- package/dist/modules/stock/units.js +50 -0
- package/dist/modules/stock/units.js.map +1 -0
- package/dist/modules/stock_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_activity_backend/index.js +0 -1
- package/dist/modules/stock_activity_backend/index.js.map +1 -1
- package/dist/modules/stock_backend/client/editor-view.d.mts.map +1 -1
- package/dist/modules/stock_backend/client/editor-view.mjs +12 -10
- package/dist/modules/stock_backend/client/editor-view.mjs.map +1 -1
- package/dist/modules/stock_backend/index.js +27 -20
- package/dist/modules/stock_backend/index.js.map +1 -1
- package/dist/modules/stock_backend/routes.d.ts.map +1 -1
- package/dist/modules/stock_backend/routes.js +485 -232
- package/dist/modules/stock_backend/routes.js.map +1 -1
- package/dist/modules/stock_backend/screens/forecast.d.ts +28 -0
- package/dist/modules/stock_backend/screens/forecast.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/forecast.js +108 -0
- package/dist/modules/stock_backend/screens/forecast.js.map +1 -0
- package/dist/modules/stock_backend/screens/index.d.ts +22 -0
- package/dist/modules/stock_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/index.js +22 -0
- package/dist/modules/stock_backend/screens/index.js.map +1 -0
- package/dist/modules/stock_backend/screens/inventory.d.ts +27 -0
- package/dist/modules/stock_backend/screens/inventory.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/inventory.js +128 -0
- package/dist/modules/stock_backend/screens/inventory.js.map +1 -0
- package/dist/modules/stock_backend/screens/location-create.d.ts +15 -0
- package/dist/modules/stock_backend/screens/location-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/location-create.js +75 -0
- package/dist/modules/stock_backend/screens/location-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/locations-list.d.ts +21 -0
- package/dist/modules/stock_backend/screens/locations-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/locations-list.js +62 -0
- package/dist/modules/stock_backend/screens/locations-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/lot-create.d.ts +14 -0
- package/dist/modules/stock_backend/screens/lot-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/lot-create.js +60 -0
- package/dist/modules/stock_backend/screens/lot-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/lot-detail.d.ts +30 -0
- package/dist/modules/stock_backend/screens/lot-detail.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/lot-detail.js +84 -0
- package/dist/modules/stock_backend/screens/lot-detail.js.map +1 -0
- package/dist/modules/stock_backend/screens/lots-list.d.ts +25 -0
- package/dist/modules/stock_backend/screens/lots-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/lots-list.js +54 -0
- package/dist/modules/stock_backend/screens/lots-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/picking-type-create.d.ts +15 -0
- package/dist/modules/stock_backend/screens/picking-type-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/picking-type-create.js +89 -0
- package/dist/modules/stock_backend/screens/picking-type-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/picking-types-list.d.ts +22 -0
- package/dist/modules/stock_backend/screens/picking-types-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/picking-types-list.js +80 -0
- package/dist/modules/stock_backend/screens/picking-types-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-create.d.ts +17 -0
- package/dist/modules/stock_backend/screens/replenishment-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-create.js +74 -0
- package/dist/modules/stock_backend/screens/replenishment-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-list.d.ts +29 -0
- package/dist/modules/stock_backend/screens/replenishment-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/replenishment-list.js +84 -0
- package/dist/modules/stock_backend/screens/replenishment-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/shared.d.ts +12 -0
- package/dist/modules/stock_backend/screens/shared.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/shared.js +29 -0
- package/dist/modules/stock_backend/screens/shared.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-create.d.ts +13 -0
- package/dist/modules/stock_backend/screens/stock-route-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-create.js +52 -0
- package/dist/modules/stock_backend/screens/stock-route-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.d.ts +30 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.js +131 -0
- package/dist/modules/stock_backend/screens/stock-route-detail.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.d.ts +22 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.js +51 -0
- package/dist/modules/stock_backend/screens/stock-routes-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/stock.d.ts +7 -0
- package/dist/modules/stock_backend/screens/stock.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/stock.js +13 -0
- package/dist/modules/stock_backend/screens/stock.js.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-create.d.ts +13 -0
- package/dist/modules/stock_backend/screens/transfer-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-create.js +38 -0
- package/dist/modules/stock_backend/screens/transfer-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-detail.d.ts +27 -0
- package/dist/modules/stock_backend/screens/transfer-detail.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/transfer-detail.js +91 -0
- package/dist/modules/stock_backend/screens/transfer-detail.js.map +1 -0
- package/dist/modules/stock_backend/screens/transfers-list.d.ts +25 -0
- package/dist/modules/stock_backend/screens/transfers-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/transfers-list.js +81 -0
- package/dist/modules/stock_backend/screens/transfers-list.js.map +1 -0
- package/dist/modules/stock_backend/screens/warehouse-create.d.ts +13 -0
- package/dist/modules/stock_backend/screens/warehouse-create.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/warehouse-create.js +79 -0
- package/dist/modules/stock_backend/screens/warehouse-create.js.map +1 -0
- package/dist/modules/stock_backend/screens/warehouses-list.d.ts +21 -0
- package/dist/modules/stock_backend/screens/warehouses-list.d.ts.map +1 -0
- package/dist/modules/stock_backend/screens/warehouses-list.js +60 -0
- package/dist/modules/stock_backend/screens/warehouses-list.js.map +1 -0
- package/dist/modules/stock_lot_activity_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_lot_activity_backend/index.js +0 -1
- package/dist/modules/stock_lot_activity_backend/index.js.map +1 -1
- package/dist/modules/stock_lot_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_lot_mail_backend/index.js +0 -1
- package/dist/modules/stock_lot_mail_backend/index.js.map +1 -1
- package/dist/modules/stock_mail_backend/index.d.ts.map +1 -1
- package/dist/modules/stock_mail_backend/index.js +0 -1
- package/dist/modules/stock_mail_backend/index.js.map +1 -1
- package/dist/modules/stock_mail_inbound/index.d.ts.map +1 -1
- package/dist/modules/stock_mail_inbound/index.js +0 -2
- package/dist/modules/stock_mail_inbound/index.js.map +1 -1
- package/dist/modules/stock_staff_channel/channel-routes.d.ts +656 -0
- package/dist/modules/stock_staff_channel/channel-routes.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/channel-routes.js +445 -0
- package/dist/modules/stock_staff_channel/channel-routes.js.map +1 -0
- package/dist/modules/stock_staff_channel/functions.d.ts +3 -0
- package/dist/modules/stock_staff_channel/functions.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/functions.js +954 -0
- package/dist/modules/stock_staff_channel/functions.js.map +1 -0
- package/dist/modules/stock_staff_channel/index.d.ts +8 -0
- package/dist/modules/stock_staff_channel/index.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/index.js +37 -0
- package/dist/modules/stock_staff_channel/index.js.map +1 -0
- package/dist/modules/stock_staff_channel/models.d.ts +4 -0
- package/dist/modules/stock_staff_channel/models.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/models.js +119 -0
- package/dist/modules/stock_staff_channel/models.js.map +1 -0
- package/dist/modules/stock_staff_channel/operation-routes.d.ts +2 -0
- package/dist/modules/stock_staff_channel/operation-routes.d.ts.map +1 -0
- package/dist/modules/stock_staff_channel/operation-routes.js +1269 -0
- package/dist/modules/stock_staff_channel/operation-routes.js.map +1 -0
- package/dist/modules/storage/functions.d.ts.map +1 -1
- package/dist/modules/storage/functions.js +18 -5
- package/dist/modules/storage/functions.js.map +1 -1
- package/dist/modules/storage/index.js +0 -1
- package/dist/modules/storage/index.js.map +1 -1
- package/dist/modules/storage/jobs.d.ts +21 -1
- package/dist/modules/storage/jobs.d.ts.map +1 -1
- package/dist/modules/storage/jobs.js +142 -2
- package/dist/modules/storage/jobs.js.map +1 -1
- package/dist/modules/storage/models.d.ts.map +1 -1
- package/dist/modules/storage/models.js +2 -0
- package/dist/modules/storage/models.js.map +1 -1
- package/dist/modules/storage/policy.d.ts +5 -0
- package/dist/modules/storage/policy.d.ts.map +1 -0
- package/dist/modules/storage/policy.js +13 -0
- package/dist/modules/storage/policy.js.map +1 -0
- package/dist/modules/storage/routes.d.ts +1 -0
- package/dist/modules/storage/routes.d.ts.map +1 -1
- package/dist/modules/storage/routes.js +19 -15
- package/dist/modules/storage/routes.js.map +1 -1
- package/dist/modules/uom/convert.d.ts +1 -1
- package/dist/modules/uom/convert.js +2 -2
- package/dist/modules/uom/convert.js.map +1 -1
- package/dist/modules/uom/functions.d.ts.map +1 -1
- package/dist/modules/uom/functions.js +39 -4
- package/dist/modules/uom/functions.js.map +1 -1
- package/dist/modules/uom/index.d.ts.map +1 -1
- package/dist/modules/uom/index.js +1 -2
- package/dist/modules/uom/index.js.map +1 -1
- package/dist/modules/uom/messages.js +2 -2
- package/dist/modules/uom/messages.js.map +1 -1
- package/dist/modules/uom/models.d.ts +1 -1
- package/dist/modules/uom/models.d.ts.map +1 -1
- package/dist/modules/uom/models.js +1 -1
- package/dist/modules/uom/models.js.map +1 -1
- package/dist/modules/user/authorization.d.ts +80 -0
- package/dist/modules/user/authorization.d.ts.map +1 -0
- package/dist/modules/user/authorization.js +1039 -0
- package/dist/modules/user/authorization.js.map +1 -0
- package/dist/modules/user/functions.d.ts.map +1 -1
- package/dist/modules/user/functions.js +188 -32
- package/dist/modules/user/functions.js.map +1 -1
- package/dist/modules/user/index.d.ts +4 -1
- package/dist/modules/user/index.d.ts.map +1 -1
- package/dist/modules/user/index.js +2 -3
- package/dist/modules/user/index.js.map +1 -1
- package/dist/modules/user/login.d.ts +1 -27
- package/dist/modules/user/login.d.ts.map +1 -1
- package/dist/modules/user/login.js +5 -45
- package/dist/modules/user/login.js.map +1 -1
- package/dist/modules/user/messages.d.ts +6 -0
- package/dist/modules/user/messages.d.ts.map +1 -1
- package/dist/modules/user/messages.js +6 -0
- package/dist/modules/user/messages.js.map +1 -1
- package/dist/modules/user/models.d.ts +1 -1
- package/dist/modules/user/models.d.ts.map +1 -1
- package/dist/modules/user/models.js +73 -9
- package/dist/modules/user/models.js.map +1 -1
- package/dist/modules/user/relations.d.ts.map +1 -1
- package/dist/modules/user/relations.js +6 -0
- package/dist/modules/user/relations.js.map +1 -1
- package/dist/modules/user/roles.d.ts +11 -1
- package/dist/modules/user/roles.d.ts.map +1 -1
- package/dist/modules/user/roles.js +402 -117
- package/dist/modules/user/roles.js.map +1 -1
- package/dist/modules/user/routes.js +1 -1
- package/dist/modules/user/routes.js.map +1 -1
- package/dist/modules/user_backend/index.d.ts +1 -1
- package/dist/modules/user_backend/index.d.ts.map +1 -1
- package/dist/modules/user_backend/index.js +1 -3
- package/dist/modules/user_backend/index.js.map +1 -1
- package/dist/modules/user_backend/messages.d.ts +60 -0
- package/dist/modules/user_backend/messages.d.ts.map +1 -1
- package/dist/modules/user_backend/messages.js +60 -0
- package/dist/modules/user_backend/messages.js.map +1 -1
- package/dist/modules/user_backend/routes.d.ts.map +1 -1
- package/dist/modules/user_backend/routes.js +352 -69
- package/dist/modules/user_backend/routes.js.map +1 -1
- package/dist/modules/user_backend/screens/index.d.ts +11 -0
- package/dist/modules/user_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/index.js +8 -0
- package/dist/modules/user_backend/screens/index.js.map +1 -0
- package/dist/modules/user_backend/screens/presets-form.d.ts +16 -0
- package/dist/modules/user_backend/screens/presets-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/presets-form.js +37 -0
- package/dist/modules/user_backend/screens/presets-form.js.map +1 -0
- package/dist/modules/user_backend/screens/profile-form.d.ts +14 -0
- package/dist/modules/user_backend/screens/profile-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/profile-form.js +37 -0
- package/dist/modules/user_backend/screens/profile-form.js.map +1 -0
- package/dist/modules/user_backend/screens/role-form.d.ts +21 -0
- package/dist/modules/user_backend/screens/role-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/role-form.js +93 -0
- package/dist/modules/user_backend/screens/role-form.js.map +1 -0
- package/dist/modules/user_backend/screens/roles-list.d.ts +15 -0
- package/dist/modules/user_backend/screens/roles-list.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/roles-list.js +48 -0
- package/dist/modules/user_backend/screens/roles-list.js.map +1 -0
- package/dist/modules/user_backend/screens/sessions.d.ts +5 -0
- package/dist/modules/user_backend/screens/sessions.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/sessions.js +35 -0
- package/dist/modules/user_backend/screens/sessions.js.map +1 -0
- package/dist/modules/user_backend/screens/types.d.ts +68 -0
- package/dist/modules/user_backend/screens/types.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/types.js +2 -0
- package/dist/modules/user_backend/screens/types.js.map +1 -0
- package/dist/modules/user_backend/screens/user-form.d.ts +55 -0
- package/dist/modules/user_backend/screens/user-form.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/user-form.js +174 -0
- package/dist/modules/user_backend/screens/user-form.js.map +1 -0
- package/dist/modules/user_backend/screens/users-list.d.ts +17 -0
- package/dist/modules/user_backend/screens/users-list.d.ts.map +1 -0
- package/dist/modules/user_backend/screens/users-list.js +56 -0
- package/dist/modules/user_backend/screens/users-list.js.map +1 -0
- package/dist/modules/website/cms.d.ts +18 -1
- package/dist/modules/website/cms.d.ts.map +1 -1
- package/dist/modules/website/cms.js +373 -38
- package/dist/modules/website/cms.js.map +1 -1
- package/dist/modules/website/customer.d.ts.map +1 -1
- package/dist/modules/website/customer.js +249 -1
- package/dist/modules/website/customer.js.map +1 -1
- package/dist/modules/website/index.d.ts.map +1 -1
- package/dist/modules/website/index.js +26 -4
- package/dist/modules/website/index.js.map +1 -1
- package/dist/modules/website/models.d.ts.map +1 -1
- package/dist/modules/website/models.js +101 -0
- package/dist/modules/website/models.js.map +1 -1
- package/dist/modules/website/paths.d.ts +31 -0
- package/dist/modules/website/paths.d.ts.map +1 -0
- package/dist/modules/website/paths.js +48 -0
- package/dist/modules/website/paths.js.map +1 -0
- package/dist/modules/website/publication.d.ts +3 -0
- package/dist/modules/website/publication.d.ts.map +1 -0
- package/dist/modules/website/publication.js +366 -0
- package/dist/modules/website/publication.js.map +1 -0
- package/dist/modules/website/renderable.d.ts +32 -0
- package/dist/modules/website/renderable.d.ts.map +1 -0
- package/dist/modules/website/renderable.js +59 -0
- package/dist/modules/website/renderable.js.map +1 -0
- package/dist/modules/website/sections.d.ts.map +1 -1
- package/dist/modules/website/sections.js +13 -0
- package/dist/modules/website/sections.js.map +1 -1
- package/dist/modules/website_backend/csv.d.ts +23 -0
- package/dist/modules/website_backend/csv.d.ts.map +1 -0
- package/dist/modules/website_backend/csv.js +31 -0
- package/dist/modules/website_backend/csv.js.map +1 -0
- package/dist/modules/website_backend/index.js +260 -2
- package/dist/modules/website_backend/index.js.map +1 -1
- package/dist/modules/website_backend/menus.d.ts.map +1 -1
- package/dist/modules/website_backend/menus.js +28 -6
- package/dist/modules/website_backend/menus.js.map +1 -1
- package/dist/modules/website_backend/routes.d.ts.map +1 -1
- package/dist/modules/website_backend/routes.js +684 -126
- package/dist/modules/website_backend/routes.js.map +1 -1
- package/dist/modules/website_backend/screens/index.d.ts +333 -0
- package/dist/modules/website_backend/screens/index.d.ts.map +1 -0
- package/dist/modules/website_backend/screens/index.js +1332 -0
- package/dist/modules/website_backend/screens/index.js.map +1 -0
- package/dist/modules/website_backend/screens/page-frame.d.ts +14 -0
- package/dist/modules/website_backend/screens/page-frame.d.ts.map +1 -0
- package/dist/modules/website_backend/screens/page-frame.js +13 -0
- package/dist/modules/website_backend/screens/page-frame.js.map +1 -0
- package/dist/modules/website_form/audit.d.ts +27 -0
- package/dist/modules/website_form/audit.d.ts.map +1 -0
- package/dist/modules/website_form/audit.js +30 -0
- package/dist/modules/website_form/audit.js.map +1 -0
- package/dist/modules/website_form/functions.d.ts.map +1 -1
- package/dist/modules/website_form/functions.js +416 -12
- package/dist/modules/website_form/functions.js.map +1 -1
- package/dist/modules/website_form/index.js +24 -2
- package/dist/modules/website_form/index.js.map +1 -1
- package/dist/modules/website_form/jobs.d.ts +11 -0
- package/dist/modules/website_form/jobs.d.ts.map +1 -0
- package/dist/modules/website_form/jobs.js +80 -0
- package/dist/modules/website_form/jobs.js.map +1 -0
- package/dist/modules/website_form/models.d.ts.map +1 -1
- package/dist/modules/website_form/models.js +89 -0
- package/dist/modules/website_form/models.js.map +1 -1
- package/dist/modules/website_form/purge.d.ts +22 -0
- package/dist/modules/website_form/purge.d.ts.map +1 -0
- package/dist/modules/website_form/purge.js +59 -0
- package/dist/modules/website_form/purge.js.map +1 -0
- package/dist/modules/website_form/retention.d.ts +70 -0
- package/dist/modules/website_form/retention.d.ts.map +1 -0
- package/dist/modules/website_form/retention.js +145 -0
- package/dist/modules/website_form/retention.js.map +1 -0
- package/dist/modules/website_form/routes.d.ts.map +1 -1
- package/dist/modules/website_form/routes.js +37 -3
- package/dist/modules/website_form/routes.js.map +1 -1
- package/dist/modules/website_form_mail/index.d.ts +36 -0
- package/dist/modules/website_form_mail/index.d.ts.map +1 -0
- package/dist/modules/website_form_mail/index.js +137 -0
- package/dist/modules/website_form_mail/index.js.map +1 -0
- package/dist/modules/website_hospitality/channel-routes.d.ts +2 -0
- package/dist/modules/website_hospitality/channel-routes.d.ts.map +1 -0
- package/dist/modules/website_hospitality/channel-routes.js +355 -0
- package/dist/modules/website_hospitality/channel-routes.js.map +1 -0
- package/dist/modules/website_hospitality/functions.d.ts.map +1 -1
- package/dist/modules/website_hospitality/functions.js +27 -2
- package/dist/modules/website_hospitality/functions.js.map +1 -1
- package/dist/modules/website_hospitality/index.js +4 -3
- package/dist/modules/website_hospitality/index.js.map +1 -1
- package/dist/modules/website_hospitality/models.d.ts.map +1 -1
- package/dist/modules/website_hospitality/models.js +2 -0
- package/dist/modules/website_hospitality/models.js.map +1 -1
- package/dist/modules/website_menu/functions.d.ts.map +1 -1
- package/dist/modules/website_menu/functions.js +184 -9
- package/dist/modules/website_menu/functions.js.map +1 -1
- package/dist/modules/website_menu/index.js +6 -1
- package/dist/modules/website_menu/index.js.map +1 -1
- package/dist/modules/website_retail/channel-routes.d.ts +2 -0
- package/dist/modules/website_retail/channel-routes.d.ts.map +1 -0
- package/dist/modules/website_retail/channel-routes.js +305 -0
- package/dist/modules/website_retail/channel-routes.js.map +1 -0
- package/dist/modules/website_retail/functions.d.ts +14 -1
- package/dist/modules/website_retail/functions.d.ts.map +1 -1
- package/dist/modules/website_retail/functions.js +6 -6
- package/dist/modules/website_retail/functions.js.map +1 -1
- package/dist/modules/website_retail/index.js +24 -3
- package/dist/modules/website_retail/index.js.map +1 -1
- package/dist/modules/website_retail/models.d.ts.map +1 -1
- package/dist/modules/website_retail/models.js +30 -0
- package/dist/modules/website_retail/models.js.map +1 -1
- package/dist/modules/website_retail/online.d.ts +3 -0
- package/dist/modules/website_retail/online.d.ts.map +1 -0
- package/dist/modules/website_retail/online.js +710 -0
- package/dist/modules/website_retail/online.js.map +1 -0
- package/dist/modules/website_search/client/search.d.mts +16 -2
- package/dist/modules/website_search/client/search.d.mts.map +1 -1
- package/dist/modules/website_search/client/search.mjs +112 -6
- package/dist/modules/website_search/client/search.mjs.map +1 -1
- package/dist/modules/website_search/functions.d.ts +3 -0
- package/dist/modules/website_search/functions.d.ts.map +1 -0
- package/dist/modules/website_search/functions.js +239 -0
- package/dist/modules/website_search/functions.js.map +1 -0
- package/dist/modules/website_search/index.js +4 -1
- package/dist/modules/website_search/index.js.map +1 -1
- package/dist/modules/website_search/islands.d.ts +6 -0
- package/dist/modules/website_search/islands.d.ts.map +1 -1
- package/dist/modules/website_search/islands.js +8 -2
- package/dist/modules/website_search/islands.js.map +1 -1
- package/dist/modules/website_search/models.d.ts +15 -0
- package/dist/modules/website_search/models.d.ts.map +1 -0
- package/dist/modules/website_search/models.js +58 -0
- package/dist/modules/website_search/models.js.map +1 -0
- package/dist/modules/website_seo/functions.d.ts +3 -0
- package/dist/modules/website_seo/functions.d.ts.map +1 -0
- package/dist/modules/website_seo/functions.js +164 -0
- package/dist/modules/website_seo/functions.js.map +1 -0
- package/dist/modules/website_seo/index.js +15 -5
- package/dist/modules/website_seo/index.js.map +1 -1
- package/dist/modules/website_seo/projection.d.ts +52 -0
- package/dist/modules/website_seo/projection.d.ts.map +1 -0
- package/dist/modules/website_seo/projection.js +129 -0
- package/dist/modules/website_seo/projection.js.map +1 -0
- package/dist/modules/website_seo/routes.d.ts +3 -0
- package/dist/modules/website_seo/routes.d.ts.map +1 -0
- package/dist/modules/website_seo/routes.js +56 -0
- package/dist/modules/website_seo/routes.js.map +1 -0
- package/dist/permission-catalogue.d.ts +5 -0
- package/dist/permission-catalogue.d.ts.map +1 -0
- package/dist/permission-catalogue.js +1505 -0
- package/dist/permission-catalogue.js.map +1 -0
- package/dist/scaffold/index.d.ts +2 -0
- package/dist/scaffold/index.d.ts.map +1 -0
- package/dist/scaffold/index.js +31 -0
- package/dist/scaffold/index.js.map +1 -0
- package/dist/scaffold/templates/README.md.tmpl +17 -0
- package/dist/scaffold/templates/gitignore.tmpl +2 -0
- package/dist/scaffold/templates/ket.workspace.mjs.tmpl +1 -0
- package/dist/scaffold/templates/package.json.tmpl +15 -0
- package/dist/themes/hospitality/templates/website.columns.ktl +4 -0
- package/dist/themes/paper/templates/website.columns.ktl +4 -0
- package/dist/ui/actions.d.ts +4 -0
- package/dist/ui/actions.d.ts.map +1 -1
- package/dist/ui/actions.js +1 -1
- package/dist/ui/actions.js.map +1 -1
- package/dist/ui/activity.d.ts +1 -1
- package/dist/ui/activity.d.ts.map +1 -1
- package/dist/ui/activity.js +3 -5
- package/dist/ui/activity.js.map +1 -1
- package/dist/ui/attachments.js +1 -1
- package/dist/ui/attachments.js.map +1 -1
- package/dist/ui/auth.d.ts +36 -0
- package/dist/ui/auth.d.ts.map +1 -1
- package/dist/ui/auth.js +55 -0
- package/dist/ui/auth.js.map +1 -1
- package/dist/ui/board-page.d.ts +6 -0
- package/dist/ui/board-page.d.ts.map +1 -0
- package/dist/ui/board-page.js +4 -0
- package/dist/ui/board-page.js.map +1 -0
- package/dist/ui/charts.d.ts +83 -0
- package/dist/ui/charts.d.ts.map +1 -0
- package/dist/ui/charts.js +105 -0
- package/dist/ui/charts.js.map +1 -0
- package/dist/ui/chrome.d.ts +37 -2
- package/dist/ui/chrome.d.ts.map +1 -1
- package/dist/ui/chrome.js +39 -5
- package/dist/ui/chrome.js.map +1 -1
- package/dist/ui/client/activity-view.mjs +7 -7
- package/dist/ui/client/activity-view.mjs.map +1 -1
- package/dist/ui/client/activity.css +6 -34
- package/dist/ui/client/calendar-view.d.mts.map +1 -1
- package/dist/ui/client/calendar-view.mjs +7 -6
- package/dist/ui/client/calendar-view.mjs.map +1 -1
- package/dist/ui/client/calendar.css +4 -14
- package/dist/ui/client/chart-view.d.ts +51 -0
- package/dist/ui/client/chart-view.d.ts.map +1 -0
- package/dist/ui/client/chart-view.js +192 -0
- package/dist/ui/client/chart-view.js.map +1 -0
- package/dist/ui/client/flow-app.css +387 -0
- package/dist/ui/client/flow-board-view.d.mts +8 -0
- package/dist/ui/client/flow-board-view.d.mts.map +1 -0
- package/dist/ui/client/flow-board-view.mjs +161 -0
- package/dist/ui/client/flow-board-view.mjs.map +1 -0
- package/dist/ui/client/flow-board.d.mts +3 -0
- package/dist/ui/client/flow-board.d.mts.map +1 -0
- package/dist/ui/client/flow-board.mjs +7 -0
- package/dist/ui/client/flow-board.mjs.map +1 -0
- package/dist/ui/client/flow-map-view.d.mts +2 -0
- package/dist/ui/client/flow-map-view.d.mts.map +1 -0
- package/dist/ui/client/flow-map-view.mjs +235 -0
- package/dist/ui/client/flow-map-view.mjs.map +1 -0
- package/dist/ui/client/flow-map.d.mts +3 -0
- package/dist/ui/client/flow-map.d.mts.map +1 -0
- package/dist/ui/client/flow-map.mjs +7 -0
- package/dist/ui/client/flow-map.mjs.map +1 -0
- package/dist/ui/client/live-doc-blocks.d.ts +19 -0
- package/dist/ui/client/live-doc-blocks.d.ts.map +1 -0
- package/dist/ui/client/live-doc-blocks.js +23 -0
- package/dist/ui/client/live-doc-blocks.js.map +1 -0
- package/dist/ui/client/live-doc-markdown.d.ts +18 -0
- package/dist/ui/client/live-doc-markdown.d.ts.map +1 -0
- package/dist/ui/client/live-doc-markdown.js +175 -0
- package/dist/ui/client/live-doc-markdown.js.map +1 -0
- package/dist/ui/client/live-doc-shell.d.ts +101 -0
- package/dist/ui/client/live-doc-shell.d.ts.map +1 -0
- package/dist/ui/client/live-doc-shell.js +251 -0
- package/dist/ui/client/live-doc-shell.js.map +1 -0
- package/dist/ui/client/live-doc-view.d.ts +33 -0
- package/dist/ui/client/live-doc-view.d.ts.map +1 -0
- package/dist/ui/client/live-doc-view.js +1237 -0
- package/dist/ui/client/live-doc-view.js.map +1 -0
- package/dist/ui/client/live-doc.css +243 -0
- package/dist/ui/client/live-doc.d.mts +12 -0
- package/dist/ui/client/live-doc.d.mts.map +1 -0
- package/dist/ui/client/live-doc.mjs +11 -0
- package/dist/ui/client/live-doc.mjs.map +7 -0
- package/dist/ui/client/mail-bundle.d.mts +9 -0
- package/dist/ui/client/mail-bundle.d.mts.map +1 -0
- package/dist/ui/client/mail-bundle.mjs +50 -0
- package/dist/ui/client/mail-bundle.mjs.map +7 -0
- package/dist/ui/client/mail-entry.d.mts +11 -0
- package/dist/ui/client/mail-entry.d.mts.map +1 -0
- package/dist/ui/client/mail-entry.mjs +9 -0
- package/dist/ui/client/mail-entry.mjs.map +1 -0
- package/dist/ui/client/mail-view.d.mts.map +1 -1
- package/dist/ui/client/mail-view.mjs +5 -3
- package/dist/ui/client/mail-view.mjs.map +1 -1
- package/dist/ui/client/mail.css +3 -3
- package/dist/ui/client/relation-select-view.d.ts +77 -0
- package/dist/ui/client/relation-select-view.d.ts.map +1 -0
- package/dist/ui/client/relation-select-view.js +216 -0
- package/dist/ui/client/relation-select-view.js.map +1 -0
- package/dist/ui/client/table-selection-view.d.ts +4 -0
- package/dist/ui/client/table-selection-view.d.ts.map +1 -0
- package/dist/ui/client/table-selection-view.js +283 -0
- package/dist/ui/client/table-selection-view.js.map +1 -0
- package/dist/ui/dashboard-page.d.ts +6 -0
- package/dist/ui/dashboard-page.d.ts.map +1 -0
- package/dist/ui/dashboard-page.js +4 -0
- package/dist/ui/dashboard-page.js.map +1 -0
- package/dist/ui/data.d.ts +51 -1
- package/dist/ui/data.d.ts.map +1 -1
- package/dist/ui/data.js +87 -1
- package/dist/ui/data.js.map +1 -1
- package/dist/ui/date-picker.d.ts.map +1 -1
- package/dist/ui/date-picker.js +2 -2
- package/dist/ui/date-picker.js.map +1 -1
- package/dist/ui/form-page.d.ts +6 -0
- package/dist/ui/form-page.d.ts.map +1 -0
- package/dist/ui/form-page.js +5 -0
- package/dist/ui/form-page.js.map +1 -0
- package/dist/ui/form.d.ts +4 -1
- package/dist/ui/form.d.ts.map +1 -1
- package/dist/ui/form.js +7 -5
- package/dist/ui/form.js.map +1 -1
- package/dist/ui/format.d.ts +13 -2
- package/dist/ui/format.d.ts.map +1 -1
- package/dist/ui/format.js +28 -7
- package/dist/ui/format.js.map +1 -1
- package/dist/ui/gantt.d.ts +52 -0
- package/dist/ui/gantt.d.ts.map +1 -0
- package/dist/ui/gantt.js +92 -0
- package/dist/ui/gantt.js.map +1 -0
- package/dist/ui/hooks.d.ts.map +1 -1
- package/dist/ui/hooks.js +14 -0
- package/dist/ui/hooks.js.map +1 -1
- package/dist/ui/icons.d.ts.map +1 -1
- package/dist/ui/icons.js +6 -1
- package/dist/ui/icons.js.map +1 -1
- package/dist/ui/index.d.ts +95 -14
- package/dist/ui/index.d.ts.map +1 -1
- package/dist/ui/index.js +78 -13
- package/dist/ui/index.js.map +1 -1
- package/dist/ui/layout.d.ts +43 -38
- package/dist/ui/layout.d.ts.map +1 -1
- package/dist/ui/layout.js +29 -37
- package/dist/ui/layout.js.map +1 -1
- package/dist/ui/list-page.d.ts +19 -0
- package/dist/ui/list-page.d.ts.map +1 -0
- package/dist/ui/list-page.js +21 -0
- package/dist/ui/list-page.js.map +1 -0
- package/dist/ui/media.d.ts +2 -0
- package/dist/ui/media.d.ts.map +1 -1
- package/dist/ui/media.js +1 -1
- package/dist/ui/media.js.map +1 -1
- package/dist/ui/modal.d.ts +26 -1
- package/dist/ui/modal.d.ts.map +1 -1
- package/dist/ui/modal.js +18 -2
- package/dist/ui/modal.js.map +1 -1
- package/dist/ui/nav.d.ts +21 -1
- package/dist/ui/nav.d.ts.map +1 -1
- package/dist/ui/nav.js +43 -8
- package/dist/ui/nav.js.map +1 -1
- package/dist/ui/navigation.d.ts +36 -2
- package/dist/ui/navigation.d.ts.map +1 -1
- package/dist/ui/navigation.js +60 -5
- package/dist/ui/navigation.js.map +1 -1
- package/dist/ui/partner.d.ts +18 -0
- package/dist/ui/partner.d.ts.map +1 -0
- package/dist/ui/partner.js +11 -0
- package/dist/ui/partner.js.map +1 -0
- package/dist/ui/primitives.d.ts +28 -10
- package/dist/ui/primitives.d.ts.map +1 -1
- package/dist/ui/primitives.js +21 -7
- package/dist/ui/primitives.js.map +1 -1
- package/dist/ui/product-media.d.ts +47 -0
- package/dist/ui/product-media.d.ts.map +1 -0
- package/dist/ui/product-media.js +67 -0
- package/dist/ui/product-media.js.map +1 -0
- package/dist/ui/product-variants.d.ts +68 -0
- package/dist/ui/product-variants.d.ts.map +1 -0
- package/dist/ui/product-variants.js +81 -0
- package/dist/ui/product-variants.js.map +1 -0
- package/dist/ui/record-detail.d.ts +70 -0
- package/dist/ui/record-detail.d.ts.map +1 -0
- package/dist/ui/record-detail.js +35 -0
- package/dist/ui/record-detail.js.map +1 -0
- package/dist/ui/record-page.d.ts +16 -0
- package/dist/ui/record-page.d.ts.map +1 -0
- package/dist/ui/record-page.js +13 -0
- package/dist/ui/record-page.js.map +1 -0
- package/dist/ui/record.d.ts +15 -3
- package/dist/ui/record.d.ts.map +1 -1
- package/dist/ui/record.js +6 -5
- package/dist/ui/record.js.map +1 -1
- package/dist/ui/surfaces.d.ts +30 -2
- package/dist/ui/surfaces.d.ts.map +1 -1
- package/dist/ui/surfaces.js +39 -2
- package/dist/ui/surfaces.js.map +1 -1
- package/dist/ui/table.d.ts +25 -2
- package/dist/ui/table.d.ts.map +1 -1
- package/dist/ui/table.js +10 -6
- package/dist/ui/table.js.map +1 -1
- package/dist/ui/timeframe.d.ts +39 -0
- package/dist/ui/timeframe.d.ts.map +1 -0
- package/dist/ui/timeframe.js +36 -0
- package/dist/ui/timeframe.js.map +1 -0
- package/dist/ui/workspace-page.d.ts +16 -0
- package/dist/ui/workspace-page.d.ts.map +1 -0
- package/dist/ui/workspace-page.js +15 -0
- package/dist/ui/workspace-page.js.map +1 -0
- package/package.json +16 -3
- package/dist/modules/account/tt99.d.ts +0 -30
- package/dist/modules/account/tt99.d.ts.map +0 -1
- package/dist/modules/account/tt99.js +0 -1661
- package/dist/modules/account/tt99.js.map +0 -1
- package/dist/modules/account_backend/accounting-overview-screen.d.ts +0 -18
- package/dist/modules/account_backend/accounting-overview-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/accounting-overview-screen.js +0 -104
- package/dist/modules/account_backend/accounting-overview-screen.js.map +0 -1
- package/dist/modules/account_backend/accounts-screen.d.ts +0 -13
- package/dist/modules/account_backend/accounts-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/accounts-screen.js +0 -49
- package/dist/modules/account_backend/accounts-screen.js.map +0 -1
- package/dist/modules/account_backend/customer-invoices-screen.d.ts +0 -14
- package/dist/modules/account_backend/customer-invoices-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/customer-invoices-screen.js +0 -63
- package/dist/modules/account_backend/customer-invoices-screen.js.map +0 -1
- package/dist/modules/account_backend/general-ledger-screen.d.ts +0 -13
- package/dist/modules/account_backend/general-ledger-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/general-ledger-screen.js +0 -56
- package/dist/modules/account_backend/general-ledger-screen.js.map +0 -1
- package/dist/modules/account_backend/journal-entries-screen.d.ts +0 -14
- package/dist/modules/account_backend/journal-entries-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/journal-entries-screen.js +0 -45
- package/dist/modules/account_backend/journal-entries-screen.js.map +0 -1
- package/dist/modules/account_backend/journals-screen.d.ts +0 -14
- package/dist/modules/account_backend/journals-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/journals-screen.js +0 -53
- package/dist/modules/account_backend/journals-screen.js.map +0 -1
- package/dist/modules/account_backend/move-detail-screen.d.ts +0 -10
- package/dist/modules/account_backend/move-detail-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/move-detail-screen.js +0 -100
- package/dist/modules/account_backend/move-detail-screen.js.map +0 -1
- package/dist/modules/account_backend/partner-ledger-screen.d.ts +0 -14
- package/dist/modules/account_backend/partner-ledger-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/partner-ledger-screen.js +0 -69
- package/dist/modules/account_backend/partner-ledger-screen.js.map +0 -1
- package/dist/modules/account_backend/payment-terms-screen.d.ts +0 -14
- package/dist/modules/account_backend/payment-terms-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/payment-terms-screen.js +0 -40
- package/dist/modules/account_backend/payment-terms-screen.js.map +0 -1
- package/dist/modules/account_backend/payments-screen.d.ts +0 -14
- package/dist/modules/account_backend/payments-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/payments-screen.js +0 -54
- package/dist/modules/account_backend/payments-screen.js.map +0 -1
- package/dist/modules/account_backend/screens.d.ts +0 -7
- package/dist/modules/account_backend/screens.d.ts.map +0 -1
- package/dist/modules/account_backend/screens.js +0 -7
- package/dist/modules/account_backend/screens.js.map +0 -1
- package/dist/modules/account_backend/taxes-screen.d.ts +0 -15
- package/dist/modules/account_backend/taxes-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/taxes-screen.js +0 -73
- package/dist/modules/account_backend/taxes-screen.js.map +0 -1
- package/dist/modules/account_backend/trial-balance-screen.d.ts +0 -13
- package/dist/modules/account_backend/trial-balance-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/trial-balance-screen.js +0 -62
- package/dist/modules/account_backend/trial-balance-screen.js.map +0 -1
- package/dist/modules/account_backend/vendor-bills-screen.d.ts +0 -14
- package/dist/modules/account_backend/vendor-bills-screen.d.ts.map +0 -1
- package/dist/modules/account_backend/vendor-bills-screen.js +0 -59
- package/dist/modules/account_backend/vendor-bills-screen.js.map +0 -1
- package/dist/modules/account_partner_backend/screens.d.ts +0 -16
- package/dist/modules/account_partner_backend/screens.d.ts.map +0 -1
- package/dist/modules/account_partner_backend/screens.js +0 -26
- package/dist/modules/account_partner_backend/screens.js.map +0 -1
- package/dist/modules/activity_backend/screens.d.ts +0 -5
- package/dist/modules/activity_backend/screens.d.ts.map +0 -1
- package/dist/modules/activity_backend/screens.js +0 -52
- package/dist/modules/activity_backend/screens.js.map +0 -1
- package/dist/modules/address_backend/screens.d.ts +0 -31
- package/dist/modules/address_backend/screens.d.ts.map +0 -1
- package/dist/modules/address_backend/screens.js +0 -147
- package/dist/modules/address_backend/screens.js.map +0 -1
- package/dist/modules/backend/design/admin.css +0 -4229
- package/dist/modules/backend/design/client/relation-select-view.d.mts +0 -5
- package/dist/modules/backend/design/client/relation-select-view.d.mts.map +0 -1
- package/dist/modules/backend/design/client/relation-select-view.mjs +0 -335
- package/dist/modules/backend/design/client/relation-select-view.mjs.map +0 -1
- package/dist/modules/calendar_backend/screens.d.ts +0 -5
- package/dist/modules/calendar_backend/screens.d.ts.map +0 -1
- package/dist/modules/calendar_backend/screens.js +0 -4
- package/dist/modules/calendar_backend/screens.js.map +0 -1
- package/dist/modules/company_backend/screens.d.ts +0 -62
- package/dist/modules/company_backend/screens.d.ts.map +0 -1
- package/dist/modules/company_backend/screens.js +0 -268
- package/dist/modules/company_backend/screens.js.map +0 -1
- package/dist/modules/crm_backend/list-search.d.ts +0 -21
- package/dist/modules/crm_backend/list-search.d.ts.map +0 -1
- package/dist/modules/crm_backend/list-search.js +0 -220
- package/dist/modules/crm_backend/list-search.js.map +0 -1
- package/dist/modules/crm_backend/screens.d.ts +0 -32
- package/dist/modules/crm_backend/screens.d.ts.map +0 -1
- package/dist/modules/crm_backend/screens.js +0 -405
- package/dist/modules/crm_backend/screens.js.map +0 -1
- package/dist/modules/hospitality_core/screens.d.ts +0 -763
- package/dist/modules/hospitality_core/screens.d.ts.map +0 -1
- package/dist/modules/hospitality_core/screens.js +0 -4138
- package/dist/modules/hospitality_core/screens.js.map +0 -1
- package/dist/modules/hr_backend/screens.d.ts +0 -9
- package/dist/modules/hr_backend/screens.d.ts.map +0 -1
- package/dist/modules/hr_backend/screens.js +0 -144
- package/dist/modules/hr_backend/screens.js.map +0 -1
- package/dist/modules/loyalty_backend/screens.d.ts +0 -33
- package/dist/modules/loyalty_backend/screens.d.ts.map +0 -1
- package/dist/modules/loyalty_backend/screens.js +0 -562
- package/dist/modules/loyalty_backend/screens.js.map +0 -1
- package/dist/modules/mail_backend/screens.d.ts +0 -5
- package/dist/modules/mail_backend/screens.d.ts.map +0 -1
- package/dist/modules/mail_backend/screens.js +0 -11
- package/dist/modules/mail_backend/screens.js.map +0 -1
- package/dist/modules/mail_inbound_backend/screens.d.ts +0 -5
- package/dist/modules/mail_inbound_backend/screens.d.ts.map +0 -1
- package/dist/modules/mail_inbound_backend/screens.js +0 -25
- package/dist/modules/mail_inbound_backend/screens.js.map +0 -1
- package/dist/modules/mail_transport_backend/screens.d.ts +0 -5
- package/dist/modules/mail_transport_backend/screens.d.ts.map +0 -1
- package/dist/modules/mail_transport_backend/screens.js +0 -35
- package/dist/modules/mail_transport_backend/screens.js.map +0 -1
- package/dist/modules/oauth_backend/screens.d.ts +0 -66
- package/dist/modules/oauth_backend/screens.d.ts.map +0 -1
- package/dist/modules/oauth_backend/screens.js +0 -323
- package/dist/modules/oauth_backend/screens.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/functions.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/functions.js +0 -128
- package/dist/modules/odoo_collaboration_import/functions.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/index.d.ts +0 -6
- package/dist/modules/odoo_collaboration_import/index.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/index.js +0 -31
- package/dist/modules/odoo_collaboration_import/index.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/models.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/models.js +0 -76
- package/dist/modules/odoo_collaboration_import/models.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/operations.d.ts +0 -14
- package/dist/modules/odoo_collaboration_import/operations.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/operations.js +0 -1139
- package/dist/modules/odoo_collaboration_import/operations.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/relations.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/relations.js +0 -19
- package/dist/modules/odoo_collaboration_import/relations.js.map +0 -1
- package/dist/modules/odoo_collaboration_import/types.d.ts +0 -58
- package/dist/modules/odoo_collaboration_import/types.d.ts.map +0 -1
- package/dist/modules/odoo_collaboration_import/types.js.map +0 -1
- package/dist/modules/partner_backend/screens.d.ts +0 -53
- package/dist/modules/partner_backend/screens.d.ts.map +0 -1
- package/dist/modules/partner_backend/screens.js +0 -169
- package/dist/modules/partner_backend/screens.js.map +0 -1
- package/dist/modules/pricing_backend/screens.d.ts +0 -13
- package/dist/modules/pricing_backend/screens.d.ts.map +0 -1
- package/dist/modules/pricing_backend/screens.js +0 -182
- package/dist/modules/pricing_backend/screens.js.map +0 -1
- package/dist/modules/product_backend/attributes-screen.d.ts +0 -7
- package/dist/modules/product_backend/attributes-screen.d.ts.map +0 -1
- package/dist/modules/product_backend/attributes-screen.js +0 -76
- package/dist/modules/product_backend/attributes-screen.js.map +0 -1
- package/dist/modules/product_backend/create-screen.d.ts +0 -12
- package/dist/modules/product_backend/create-screen.d.ts.map +0 -1
- package/dist/modules/product_backend/create-screen.js +0 -83
- package/dist/modules/product_backend/create-screen.js.map +0 -1
- package/dist/modules/product_backend/screens.d.ts +0 -68
- package/dist/modules/product_backend/screens.d.ts.map +0 -1
- package/dist/modules/product_backend/screens.js +0 -388
- package/dist/modules/product_backend/screens.js.map +0 -1
- package/dist/modules/purchase_backend/screens.d.ts +0 -29
- package/dist/modules/purchase_backend/screens.d.ts.map +0 -1
- package/dist/modules/purchase_backend/screens.js +0 -324
- package/dist/modules/purchase_backend/screens.js.map +0 -1
- package/dist/modules/sale_backend/invoicing-policies-screen.d.ts +0 -14
- package/dist/modules/sale_backend/invoicing-policies-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/invoicing-policies-screen.js +0 -36
- package/dist/modules/sale_backend/invoicing-policies-screen.js.map +0 -1
- package/dist/modules/sale_backend/order-detail-screen.d.ts +0 -18
- package/dist/modules/sale_backend/order-detail-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/order-detail-screen.js +0 -217
- package/dist/modules/sale_backend/order-detail-screen.js.map +0 -1
- package/dist/modules/sale_backend/quotations-screen.d.ts +0 -15
- package/dist/modules/sale_backend/quotations-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/quotations-screen.js +0 -64
- package/dist/modules/sale_backend/quotations-screen.js.map +0 -1
- package/dist/modules/sale_backend/sales-orders-screen.d.ts +0 -12
- package/dist/modules/sale_backend/sales-orders-screen.d.ts.map +0 -1
- package/dist/modules/sale_backend/sales-orders-screen.js +0 -65
- package/dist/modules/sale_backend/sales-orders-screen.js.map +0 -1
- package/dist/modules/sale_backend/screens.d.ts +0 -23
- package/dist/modules/sale_backend/screens.d.ts.map +0 -1
- package/dist/modules/sale_backend/screens.js +0 -275
- package/dist/modules/sale_backend/screens.js.map +0 -1
- package/dist/modules/stock_backend/forecast-screen.d.ts +0 -28
- package/dist/modules/stock_backend/forecast-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/forecast-screen.js +0 -108
- package/dist/modules/stock_backend/forecast-screen.js.map +0 -1
- package/dist/modules/stock_backend/inventory-screen.d.ts +0 -27
- package/dist/modules/stock_backend/inventory-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/inventory-screen.js +0 -141
- package/dist/modules/stock_backend/inventory-screen.js.map +0 -1
- package/dist/modules/stock_backend/locations-screen.d.ts +0 -18
- package/dist/modules/stock_backend/locations-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/locations-screen.js +0 -92
- package/dist/modules/stock_backend/locations-screen.js.map +0 -1
- package/dist/modules/stock_backend/lot-screen.d.ts +0 -30
- package/dist/modules/stock_backend/lot-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/lot-screen.js +0 -86
- package/dist/modules/stock_backend/lot-screen.js.map +0 -1
- package/dist/modules/stock_backend/lots-screen.d.ts +0 -21
- package/dist/modules/stock_backend/lots-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/lots-screen.js +0 -79
- package/dist/modules/stock_backend/lots-screen.js.map +0 -1
- package/dist/modules/stock_backend/picking-types-screen.d.ts +0 -21
- package/dist/modules/stock_backend/picking-types-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/picking-types-screen.js +0 -110
- package/dist/modules/stock_backend/picking-types-screen.js.map +0 -1
- package/dist/modules/stock_backend/replenishment-screen.d.ts +0 -29
- package/dist/modules/stock_backend/replenishment-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/replenishment-screen.js +0 -131
- package/dist/modules/stock_backend/replenishment-screen.js.map +0 -1
- package/dist/modules/stock_backend/screens.d.ts +0 -14
- package/dist/modules/stock_backend/screens.d.ts.map +0 -1
- package/dist/modules/stock_backend/screens.js +0 -40
- package/dist/modules/stock_backend/screens.js.map +0 -1
- package/dist/modules/stock_backend/stock-route-screen.d.ts +0 -30
- package/dist/modules/stock_backend/stock-route-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/stock-route-screen.js +0 -129
- package/dist/modules/stock_backend/stock-route-screen.js.map +0 -1
- package/dist/modules/stock_backend/stock-routes-screen.d.ts +0 -17
- package/dist/modules/stock_backend/stock-routes-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/stock-routes-screen.js +0 -60
- package/dist/modules/stock_backend/stock-routes-screen.js.map +0 -1
- package/dist/modules/stock_backend/transfer-screen.d.ts +0 -26
- package/dist/modules/stock_backend/transfer-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/transfer-screen.js +0 -95
- package/dist/modules/stock_backend/transfer-screen.js.map +0 -1
- package/dist/modules/stock_backend/transfers-screen.d.ts +0 -21
- package/dist/modules/stock_backend/transfers-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/transfers-screen.js +0 -88
- package/dist/modules/stock_backend/transfers-screen.js.map +0 -1
- package/dist/modules/stock_backend/warehouses-screen.d.ts +0 -17
- package/dist/modules/stock_backend/warehouses-screen.d.ts.map +0 -1
- package/dist/modules/stock_backend/warehouses-screen.js +0 -96
- package/dist/modules/stock_backend/warehouses-screen.js.map +0 -1
- package/dist/modules/user_backend/screens.d.ts +0 -70
- package/dist/modules/user_backend/screens.d.ts.map +0 -1
- package/dist/modules/user_backend/screens.js +0 -308
- package/dist/modules/user_backend/screens.js.map +0 -1
- package/dist/modules/website/customer-routes.d.ts +0 -3
- package/dist/modules/website/customer-routes.d.ts.map +0 -1
- package/dist/modules/website/customer-routes.js +0 -322
- package/dist/modules/website/customer-routes.js.map +0 -1
- package/dist/modules/website_backend/screens.d.ts +0 -114
- package/dist/modules/website_backend/screens.d.ts.map +0 -1
- package/dist/modules/website_backend/screens.js +0 -625
- package/dist/modules/website_backend/screens.js.map +0 -1
- package/dist/ui/client/mail.d.mts +0 -11
- package/dist/ui/client/mail.d.mts.map +0 -1
- package/dist/ui/client/mail.mjs +0 -10
- package/dist/ui/client/mail.mjs.map +0 -1
- /package/dist/modules/{odoo_collaboration_import → account_staff_channel}/functions.d.ts +0 -0
- /package/dist/modules/{odoo_collaboration_import → account_staff_channel}/models.d.ts +0 -0
- /package/dist/modules/{odoo_collaboration_import → address_backend/screens}/types.js +0 -0
- /package/dist/modules/{odoo_collaboration_import → manufacturing}/relations.d.ts +0 -0
|
@@ -6,12 +6,12 @@ export const messages = {
|
|
|
6
6
|
'menu.app': 'Khách sạn',
|
|
7
7
|
'menu.operations': 'Vận hành',
|
|
8
8
|
'menu.properties': 'Cơ sở lưu trú',
|
|
9
|
-
'menu.rooms': '
|
|
9
|
+
'menu.rooms': 'Danh mục phòng',
|
|
10
10
|
'menu.frontDesk': 'Bàn lễ tân',
|
|
11
11
|
'menu.reservations': 'Đặt phòng',
|
|
12
|
-
'menu.stays': '
|
|
12
|
+
'menu.stays': 'Khách đang lưu trú',
|
|
13
13
|
'menu.tapeChart': 'Lịch phòng',
|
|
14
|
-
'menu.folios': '
|
|
14
|
+
'menu.folios': 'Phiếu chi phí',
|
|
15
15
|
'menu.housekeeping': 'Buồng phòng',
|
|
16
16
|
'menu.cleaningTasks': 'Việc dọn phòng',
|
|
17
17
|
'menu.housekeepingRooms': 'Trạng thái phòng',
|
|
@@ -20,22 +20,25 @@ export const messages = {
|
|
|
20
20
|
'menu.content': 'Nội dung & hình ảnh',
|
|
21
21
|
'menu.amenities': 'Tiện nghi',
|
|
22
22
|
'menu.policies': 'Chính sách hủy',
|
|
23
|
-
'menu.inventory': 'Tồn
|
|
24
|
-
'menu.ratePlans': '
|
|
23
|
+
'menu.inventory': 'Tồn phòng',
|
|
24
|
+
'menu.ratePlans': 'Bảng giá',
|
|
25
25
|
'menu.services': 'Dịch vụ & phụ phí',
|
|
26
26
|
'menu.nightAudit': 'Chốt ngày vận hành',
|
|
27
27
|
'menu.compliance': 'Tuân thủ',
|
|
28
|
+
'menu.payments': 'Thanh toán',
|
|
29
|
+
'menu.controls': 'Kiểm soát',
|
|
30
|
+
'menu.setup': 'Thiết lập',
|
|
28
31
|
'menu.stayNotices': 'Thông báo lưu trú',
|
|
29
32
|
'screen.properties.title': 'Cơ sở lưu trú',
|
|
30
33
|
'screen.properties.empty': 'Chưa có cơ sở lưu trú.',
|
|
31
34
|
'screen.properties.emptyHint': 'Tạo cơ sở đầu tiên để bắt đầu cấu hình loại phòng và vận hành.',
|
|
32
35
|
'property.create.title': 'Tạo cơ sở lưu trú',
|
|
33
|
-
'property.create.hint': '
|
|
36
|
+
'property.create.hint': 'Nhập thông tin cơ bản, địa chỉ và giờ hoạt động của cơ sở.',
|
|
34
37
|
'property.detail.kicker': 'Hồ sơ cơ sở lưu trú',
|
|
35
38
|
'property.section.information': 'Thông tin vận hành',
|
|
36
39
|
'property.section.informationHint': 'Địa chỉ, múi giờ, giờ nhận trả phòng và chính sách mặc định đang áp dụng.',
|
|
37
40
|
'property.section.settings': 'Thiết lập cơ sở',
|
|
38
|
-
'property.section.settingsHint': '
|
|
41
|
+
'property.section.settingsHint': 'Các thay đổi sẽ được gửi tới từng kênh bán đã kết nối.',
|
|
39
42
|
'property.section.next': 'Cấu hình liên quan',
|
|
40
43
|
'property.section.nextHint': 'Tiếp tục với loại phòng, phòng vật lý, tồn kho và nội dung bán.',
|
|
41
44
|
'property.action.create': 'Tạo cơ sở',
|
|
@@ -43,6 +46,8 @@ export const messages = {
|
|
|
43
46
|
'property.action.back': 'Quay lại danh sách cơ sở',
|
|
44
47
|
'property.field.code': 'Mã cơ sở',
|
|
45
48
|
'property.field.name': 'Tên nội bộ',
|
|
49
|
+
'property.field.branch': 'Chi nhánh vận hành',
|
|
50
|
+
'property.field.branchHint': 'Không bắt buộc. Chi nhánh phải thuộc cùng công ty và đang hoạt động.',
|
|
46
51
|
'property.field.publicName': 'Tên hiển thị',
|
|
47
52
|
'property.field.publicNameHint': 'Tên khách nhìn thấy trên website và kênh bán.',
|
|
48
53
|
'property.field.accommodationType': 'Loại hình lưu trú',
|
|
@@ -52,21 +57,33 @@ export const messages = {
|
|
|
52
57
|
'property.field.defaultCheckIn': 'Giờ nhận phòng mặc định',
|
|
53
58
|
'property.field.defaultCheckOut': 'Giờ trả phòng mặc định',
|
|
54
59
|
'property.field.enforceTimes': 'Áp dụng giới hạn giờ nhận / trả phòng',
|
|
55
|
-
'property.field.enforceTimesHint': '
|
|
60
|
+
'property.field.enforceTimesHint': 'Nhân viên có quyền phù hợp vẫn có thể xử lý trường hợp ngoại lệ.',
|
|
61
|
+
'property.field.allowHourly': 'Bán theo giờ',
|
|
62
|
+
'property.field.allowHourlyHint': 'Cho phép cơ sở nhận đặt phòng theo giờ.',
|
|
63
|
+
'property.field.allowWeekly': 'Bán theo tuần',
|
|
64
|
+
'property.field.allowWeeklyHint': 'Lưu trú dài ngày tính chu kỳ tuần, chỉ nhận qua kênh trực tiếp.',
|
|
65
|
+
'property.field.allowMonthly': 'Bán theo tháng',
|
|
66
|
+
'property.field.allowMonthlyHint': 'Lưu trú dài ngày tính chu kỳ tháng, chỉ nhận qua kênh trực tiếp.',
|
|
67
|
+
'roomType.field.allowHourly': 'Bán theo giờ',
|
|
68
|
+
'roomType.field.allowHourlyHint': 'Hạng phòng này có nhận khách theo giờ hay không.',
|
|
69
|
+
'roomType.field.minHourlyHours': 'Số giờ tối thiểu',
|
|
70
|
+
'roomType.field.allowWeekly': 'Bán theo tuần',
|
|
71
|
+
'roomType.field.allowMonthly': 'Bán theo tháng',
|
|
56
72
|
'property.field.longStayBillOnCheckIn': 'Ghi kỳ đầu khi nhận phòng dài hạn',
|
|
57
|
-
'property.field.longStayBillOnCheckInHint': 'Chỉ
|
|
73
|
+
'property.field.longStayBillOnCheckInHint': 'Chỉ ghi chi phí vào phiếu của khách; chưa tạo hóa đơn hoặc bút toán kế toán.',
|
|
58
74
|
'property.field.childrenStayFree': 'Trẻ em được lưu trú miễn phí',
|
|
59
75
|
'property.field.minimumGuestAge': 'Tuổi tối thiểu của khách chính',
|
|
60
76
|
'property.field.defaultCancellationPolicy': 'Chính sách hủy mặc định',
|
|
61
|
-
'property.
|
|
77
|
+
'property.value.noBranch': 'Không gắn chi nhánh',
|
|
78
|
+
'property.field.address': 'Địa chỉ',
|
|
62
79
|
'property.field.description': 'Mô tả công khai',
|
|
63
80
|
'property.field.houseRules': 'Nội quy lưu trú',
|
|
64
81
|
'property.value.noDefaultPolicy': 'Chưa chọn chính sách mặc định',
|
|
65
82
|
'property.metric.buildings': 'Tòa nhà',
|
|
66
83
|
'property.feedback.created': 'Đã tạo cơ sở lưu trú',
|
|
67
84
|
'property.feedback.saved': 'Đã lưu thiết lập cơ sở',
|
|
68
|
-
'property.feedback.savedHint': '
|
|
69
|
-
'screen.rooms.title': '
|
|
85
|
+
'property.feedback.savedHint': 'Thông tin cơ sở đã được lưu và sẵn sàng cho các kênh bán.',
|
|
86
|
+
'screen.rooms.title': 'Danh mục phòng',
|
|
70
87
|
'screen.rooms.empty': 'Cơ sở này chưa có phòng.',
|
|
71
88
|
'screen.rooms.emptyHint': 'Tạo loại phòng, tòa và tầng trước khi thêm phòng.',
|
|
72
89
|
'room.create.title': 'Tạo phòng vật lý',
|
|
@@ -109,9 +126,9 @@ export const messages = {
|
|
|
109
126
|
'room.section.information': 'Thông tin vận hành',
|
|
110
127
|
'room.section.informationHint': 'Loại phòng, vị trí và trạng thái đang áp dụng cho tài sản vật lý này.',
|
|
111
128
|
'room.section.settings': 'Cấu hình phòng',
|
|
112
|
-
'room.section.settingsHint': '
|
|
113
|
-
'room.section.lifecycle': 'Trạng thái
|
|
114
|
-
'room.section.lifecycleHint': '
|
|
129
|
+
'room.section.settingsHint': 'Chỉnh thông tin phòng tại đây. Để đổi trạng thái, hãy dùng mục Trạng thái phòng.',
|
|
130
|
+
'room.section.lifecycle': 'Trạng thái phòng',
|
|
131
|
+
'room.section.lifecycleHint': 'Trạng thái được cập nhật khi khách nhận/trả phòng hoặc nhân viên buồng phòng bắt đầu/hoàn tất công việc.',
|
|
115
132
|
'room.empty.prerequisite': 'Chưa thể tạo phòng',
|
|
116
133
|
'room.empty.prerequisiteHint': 'Hãy tạo một cơ sở và ít nhất một loại phòng trước.',
|
|
117
134
|
'room.empty.buildings': 'Cơ sở này chưa có tòa nhà.',
|
|
@@ -126,7 +143,7 @@ export const messages = {
|
|
|
126
143
|
'room.feedback.archivedHint': 'Phòng đã rời khỏi lựa chọn lễ tân và buồng phòng nhưng toàn bộ lịch sử vẫn được giữ lại.',
|
|
127
144
|
'room.feedback.restored': 'Đã khôi phục phòng',
|
|
128
145
|
'room.feedback.restoredHint': 'Phòng đã trở lại trạng thái sẵn sàng để vận hành.',
|
|
129
|
-
'room.feedback.savedHint': '
|
|
146
|
+
'room.feedback.savedHint': 'Thông tin phòng đã được lưu; số phòng mở bán không thay đổi.',
|
|
130
147
|
'building.detail.kicker': 'Hồ sơ tòa nhà',
|
|
131
148
|
'building.action.save': 'Lưu tòa nhà',
|
|
132
149
|
'building.action.back': 'Quay lại sơ đồ phòng',
|
|
@@ -142,7 +159,7 @@ export const messages = {
|
|
|
142
159
|
'building.section.settingsHint': 'Tên, mã và thứ tự được dùng trên sơ đồ phòng và tác vụ vận hành.',
|
|
143
160
|
'building.section.floors': 'Các tầng thuộc tòa nhà',
|
|
144
161
|
'building.section.floorsHint': 'Tầng đã tạo không thể chuyển sang tòa nhà khác.',
|
|
145
|
-
'building.section.lifecycle': '
|
|
162
|
+
'building.section.lifecycle': 'Trạng thái tòa nhà',
|
|
146
163
|
'building.section.lifecycleHint': 'Chỉ có thể lưu trữ sau khi mọi tầng đã lưu trữ và không còn phòng hoạt động gắn với tòa nhà.',
|
|
147
164
|
'building.empty.floors': 'Tòa nhà này chưa có tầng.',
|
|
148
165
|
'building.empty.floorsHint': 'Thêm tầng từ sơ đồ phòng của cơ sở lưu trú.',
|
|
@@ -168,7 +185,7 @@ export const messages = {
|
|
|
168
185
|
'floor.section.settingsHint': 'Tên, mã và thứ tự được dùng trên sơ đồ phòng và tác vụ vận hành.',
|
|
169
186
|
'floor.section.rooms': 'Phòng thuộc tầng',
|
|
170
187
|
'floor.section.roomsHint': 'Các phòng vật lý đang gắn trực tiếp với tầng này.',
|
|
171
|
-
'floor.section.lifecycle': '
|
|
188
|
+
'floor.section.lifecycle': 'Trạng thái tầng',
|
|
172
189
|
'floor.section.lifecycleHint': 'Chỉ có thể lưu trữ khi không còn phòng hoạt động; khôi phục yêu cầu tòa nhà đang hoạt động.',
|
|
173
190
|
'floor.empty.rooms': 'Tầng này chưa có phòng.',
|
|
174
191
|
'floor.empty.roomsHint': 'Tạo hoặc chuyển phòng từ sơ đồ phòng của cơ sở lưu trú.',
|
|
@@ -187,7 +204,7 @@ export const messages = {
|
|
|
187
204
|
'roomType.section.information': 'Thông tin bán',
|
|
188
205
|
'roomType.section.informationHint': 'Cơ sở, sức chứa, giá dự phòng và chính sách hủy đang áp dụng cho loại phòng.',
|
|
189
206
|
'roomType.section.settings': 'Thiết lập loại phòng',
|
|
190
|
-
'roomType.section.settingsHint': '
|
|
207
|
+
'roomType.section.settingsHint': 'Các thay đổi sẽ được gửi tới từng kênh bán đã kết nối.',
|
|
191
208
|
'roomType.section.next': 'Cấu hình liên quan',
|
|
192
209
|
'roomType.section.nextHint': 'Tiếp tục với phòng vật lý, giá bán, tồn kho và nội dung marketing.',
|
|
193
210
|
'roomType.action.create': 'Tạo loại phòng',
|
|
@@ -232,7 +249,7 @@ export const messages = {
|
|
|
232
249
|
'roomType.empty.noPropertyHint': 'Tạo cơ sở trước khi khai báo loại phòng.',
|
|
233
250
|
'roomType.feedback.created': 'Đã tạo loại phòng',
|
|
234
251
|
'roomType.feedback.saved': 'Đã lưu loại phòng',
|
|
235
|
-
'roomType.feedback.savedHint': '
|
|
252
|
+
'roomType.feedback.savedHint': 'Thông tin bán đã được lưu và sẵn sàng cho các kênh bán.',
|
|
236
253
|
'screen.content.title': 'Nội dung & hình ảnh',
|
|
237
254
|
'screen.content.selection': 'Phạm vi nội dung',
|
|
238
255
|
'screen.content.selectionHint': 'Chọn cơ sở hoặc loại phòng để quản lý thư viện marketing.',
|
|
@@ -242,30 +259,59 @@ export const messages = {
|
|
|
242
259
|
'screen.content.noPropertyHint': 'Tạo cơ sở lưu trú trước khi thêm hình ảnh marketing.',
|
|
243
260
|
'screen.amenities.title': 'Danh mục tiện nghi',
|
|
244
261
|
'screen.amenities.empty': 'Chưa có tiện nghi.',
|
|
262
|
+
'screen.amenities.create': 'Thêm tiện nghi',
|
|
263
|
+
'screen.amenities.createHint': 'Tiện nghi dùng chung cho cơ sở và hạng phòng; mã phải duy nhất trong công ty.',
|
|
264
|
+
'screen.policies.create': 'Thêm chính sách hủy',
|
|
265
|
+
'screen.policies.createHint': 'Chính sách quyết định khách được hủy miễn phí đến khi nào và phí phạt sau đó.',
|
|
266
|
+
'action.saveAmenity': 'Lưu tiện nghi',
|
|
267
|
+
'action.savePolicy': 'Lưu chính sách',
|
|
268
|
+
'col.category': 'Nhóm',
|
|
269
|
+
'col.policyType': 'Loại chính sách',
|
|
270
|
+
'field.sequence': 'Thứ tự',
|
|
271
|
+
'field.description': 'Mô tả',
|
|
272
|
+
'field.freeCancellationHint': 'Số giờ trước khi nhận phòng mà khách còn được hủy miễn phí.',
|
|
273
|
+
'field.penaltyHint': 'Phần trăm giá trị đặt phòng sẽ tính khi hủy ngoài cửa sổ miễn phí.',
|
|
245
274
|
'screen.amenities.emptyHint': 'Tạo tiện nghi dùng cho cơ sở hoặc loại phòng.',
|
|
246
275
|
'screen.policies.title': 'Chính sách hủy',
|
|
247
276
|
'screen.policies.empty': 'Chưa có chính sách hủy.',
|
|
248
277
|
'screen.policies.emptyHint': 'Tạo chính sách trước khi gán cho cơ sở hoặc loại phòng.',
|
|
249
278
|
'screen.frontDesk.title': 'Bàn lễ tân',
|
|
279
|
+
'screen.frontDesk.setup': 'Chưa có cơ sở lưu trú nào.',
|
|
280
|
+
'screen.frontDesk.setupHint': 'Tạo cơ sở đầu tiên, sau đó là hạng phòng và phòng, rồi lễ tân mới nhận khách được.',
|
|
250
281
|
'screen.frontDesk.empty': 'Hôm nay chưa có lượt khách cần xử lý.',
|
|
251
282
|
'screen.frontDesk.emptyHint': 'Các lượt đến, đang lưu trú và rời đi sẽ xuất hiện tại đây.',
|
|
283
|
+
'screen.frontDesk.arrivals': 'Khách đến hôm nay',
|
|
284
|
+
'screen.frontDesk.arrivalsEmpty': 'Hôm nay không có khách đến.',
|
|
285
|
+
'screen.frontDesk.arrivalsEmptyHint': 'Khách đặt phòng cho hôm nay sẽ hiện ở đây trước khi nhận phòng.',
|
|
286
|
+
'screen.frontDesk.unassigned': 'Chưa phân phòng',
|
|
287
|
+
'screen.frontDesk.departures': 'Khách rời hôm nay',
|
|
288
|
+
'screen.frontDesk.departuresEmpty': 'Hôm nay không có khách rời.',
|
|
289
|
+
'screen.frontDesk.departuresEmptyHint': 'Khách đến hạn trả phòng hôm nay sẽ hiện ở đây.',
|
|
290
|
+
'screen.frontDesk.guestCount': '{count} khách',
|
|
291
|
+
'screen.frontDesk.overdueDetail': 'Cần gia hạn hoặc trả phòng',
|
|
292
|
+
'screen.frontDesk.overdueClear': 'Không có lượt nào quá giờ',
|
|
252
293
|
'screen.frontDesk.overdue': 'Lưu trú quá giờ trả phòng',
|
|
253
294
|
'screen.frontDesk.overdueHint': '{count} lượt vẫn đang nhận phòng sau giờ trả dự kiến. Lễ tân cần gia hạn hoặc trả phòng để tồn phòng phản ánh đúng.',
|
|
254
295
|
'screen.reservations.title': 'Đặt phòng',
|
|
255
296
|
'screen.reservations.empty': 'Chưa có đặt phòng.',
|
|
256
297
|
'screen.reservations.emptyHint': 'Đặt phòng trực tiếp và từ các kênh OTA sẽ được tổng hợp tại đây.',
|
|
257
|
-
'screen.stays.title': '
|
|
298
|
+
'screen.stays.title': 'Khách đang lưu trú',
|
|
258
299
|
'screen.stays.empty': 'Chưa có hồ sơ lưu trú.',
|
|
259
300
|
'screen.stays.emptyHint': 'Hồ sơ lưu trú được tạo cùng đặt phòng và theo khách đến nhận phòng.',
|
|
260
|
-
'screen.folios.title': '
|
|
261
|
-
'screen.folios.empty': 'Chưa có
|
|
262
|
-
'screen.folios.emptyHint': 'Tiền phòng và dịch vụ
|
|
301
|
+
'screen.folios.title': 'Phiếu chi phí',
|
|
302
|
+
'screen.folios.empty': 'Chưa có phiếu chi phí.',
|
|
303
|
+
'screen.folios.emptyHint': 'Tiền phòng và dịch vụ của khách được tổng hợp tại đây.',
|
|
263
304
|
'screen.tapeChart.title': 'Lịch phòng',
|
|
264
305
|
'screen.tapeChart.empty': 'Cơ sở này chưa có phòng để lập lịch.',
|
|
265
306
|
'screen.tapeChart.emptyHint': 'Tạo phòng trước khi xếp khách vào lịch vận hành.',
|
|
266
307
|
'screen.tapeChart.corner': 'Phòng / ngày',
|
|
267
308
|
'screen.tapeChart.unassigned': 'Chưa xếp phòng',
|
|
268
309
|
'screen.tapeChart.unassignedHint': 'Đặt phòng đã xác nhận nhưng chưa gán phòng cụ thể',
|
|
310
|
+
'screen.tapeChart.previous': 'Tuần trước',
|
|
311
|
+
'screen.tapeChart.next': 'Tuần sau',
|
|
312
|
+
'screen.tapeChart.availability': 'Xem phòng trống',
|
|
313
|
+
'screen.tapeChart.legend': 'Chú giải',
|
|
314
|
+
'screen.tapeChart.legendHint': 'Màu trên lịch là trạng thái của lượt lưu trú. Mở một lượt để nhận, chuyển hoặc trả phòng; kéo thả trên lịch không đổi phòng.',
|
|
269
315
|
'screen.cleaningTasks.title': 'Việc dọn phòng',
|
|
270
316
|
'screen.cleaningTasks.empty': 'Không có việc dọn phòng cần xử lý.',
|
|
271
317
|
'screen.cleaningTasks.emptyHint': 'Trả phòng sẽ tự tạo một việc dọn phòng ưu tiên cao.',
|
|
@@ -273,12 +319,12 @@ export const messages = {
|
|
|
273
319
|
'housekeeping.detail.kicker': 'Hồ sơ công việc buồng phòng',
|
|
274
320
|
'housekeeping.section.create': 'Tạo việc buồng phòng',
|
|
275
321
|
'housekeeping.section.createHint': 'Dùng cho dọn phòng hằng ngày, kiểm tra hoặc bảo trì ngoài công việc tự tạo khi trả phòng.',
|
|
276
|
-
'housekeeping.section.queue': '
|
|
277
|
-
'housekeeping.section.queueHint': '
|
|
322
|
+
'housekeeping.section.queue': 'Danh sách việc cần làm',
|
|
323
|
+
'housekeeping.section.queueHint': 'Trạng thái phòng sẽ tự cập nhật khi công việc bắt đầu hoặc hoàn tất.',
|
|
278
324
|
'housekeeping.section.information': 'Thông tin công việc',
|
|
279
325
|
'housekeeping.section.informationHint': 'Phòng, thời điểm, người phụ trách và ghi chú được giữ làm bằng chứng vận hành.',
|
|
280
326
|
'housekeeping.action.create': 'Tạo công việc',
|
|
281
|
-
'housekeeping.action.back': 'Quay lại
|
|
327
|
+
'housekeeping.action.back': 'Quay lại danh sách việc',
|
|
282
328
|
'housekeeping.action.start': 'Bắt đầu thực hiện',
|
|
283
329
|
'housekeeping.action.startHint': 'Nhận việc và chuyển phòng trống hoặc phòng bẩn sang trạng thái đang vệ sinh.',
|
|
284
330
|
'housekeeping.action.complete': 'Hoàn thành công việc',
|
|
@@ -290,7 +336,7 @@ export const messages = {
|
|
|
290
336
|
'housekeeping.field.startedAt': 'Bắt đầu lúc',
|
|
291
337
|
'housekeeping.field.doneAt': 'Hoàn thành lúc',
|
|
292
338
|
'housekeeping.feedback.created': 'Đã tạo công việc buồng phòng',
|
|
293
|
-
'housekeeping.feedback.createdHint': 'Công việc mới đã
|
|
339
|
+
'housekeeping.feedback.createdHint': 'Công việc mới đã xuất hiện trong danh sách của cơ sở.',
|
|
294
340
|
'housekeeping.feedback.started': 'Đã bắt đầu công việc',
|
|
295
341
|
'housekeeping.feedback.startedHint': 'Người phụ trách và thời điểm bắt đầu đã được ghi nhận.',
|
|
296
342
|
'housekeeping.feedback.completed': 'Đã hoàn thành công việc',
|
|
@@ -301,11 +347,11 @@ export const messages = {
|
|
|
301
347
|
'housekeeping.empty.rooms': 'Chưa có phòng để giao việc.',
|
|
302
348
|
'housekeeping.empty.roomsHint': 'Tạo phòng trong cơ sở trước khi thêm công việc buồng phòng.',
|
|
303
349
|
'housekeeping.rooms.detail.title': 'Phòng {code}',
|
|
304
|
-
'housekeeping.rooms.detail.kicker': '
|
|
305
|
-
'housekeeping.rooms.section.board': '
|
|
306
|
-
'housekeeping.rooms.section.boardHint': '
|
|
350
|
+
'housekeeping.rooms.detail.kicker': 'Chi tiết phòng',
|
|
351
|
+
'housekeeping.rooms.section.board': 'Trạng thái hiện tại',
|
|
352
|
+
'housekeeping.rooms.section.boardHint': 'Trạng thái dọn phòng và bảo trì được theo dõi riêng với số phòng còn bán. Bảng hiển thị tối đa 500 phòng theo bộ lọc.',
|
|
307
353
|
'housekeeping.rooms.section.information': 'Thông tin phòng',
|
|
308
|
-
'housekeeping.rooms.section.informationHint': '
|
|
354
|
+
'housekeeping.rooms.section.informationHint': 'Hiển thị vị trí, loại phòng, khách đang ở và ghi chú mới nhất.',
|
|
309
355
|
'housekeeping.rooms.section.tasks': 'Lịch sử công việc',
|
|
310
356
|
'housekeeping.rooms.section.tasksHint': 'Hiển thị tối đa 20 công việc buồng phòng gần nhất của phòng này.',
|
|
311
357
|
'housekeeping.rooms.metric.openTasks': 'Việc đang mở',
|
|
@@ -326,7 +372,7 @@ export const messages = {
|
|
|
326
372
|
'screen.housekeepingRooms.title': 'Bảng trạng thái phòng',
|
|
327
373
|
'screen.housekeepingRooms.empty': 'Cơ sở này chưa có phòng.',
|
|
328
374
|
'screen.housekeepingRooms.emptyHint': 'Phòng sẽ xuất hiện tại đây sau khi được cấu hình.',
|
|
329
|
-
'screen.ratePlans.title': '
|
|
375
|
+
'screen.ratePlans.title': 'Bảng giá',
|
|
330
376
|
'screen.ratePlans.create': 'Tạo kế hoạch giá',
|
|
331
377
|
'screen.ratePlans.createHint': 'Tách giá bán khỏi nội dung loại phòng và chọn một giá mặc định cho mỗi chu kỳ.',
|
|
332
378
|
'screen.ratePlans.noRoomTypes': 'Chưa có loại phòng để định giá.',
|
|
@@ -334,8 +380,8 @@ export const messages = {
|
|
|
334
380
|
'screen.ratePlans.list': 'Các kế hoạch giá',
|
|
335
381
|
'screen.ratePlans.empty': 'Chưa có kế hoạch giá.',
|
|
336
382
|
'screen.ratePlans.emptyHint': 'Giá cơ sở của loại phòng vẫn được dùng cho tới khi có kế hoạch mặc định.',
|
|
337
|
-
'screen.inventory.title': '
|
|
338
|
-
'screen.inventory.filters': 'Chọn lịch
|
|
383
|
+
'screen.inventory.title': 'Phòng trống và điều kiện bán',
|
|
384
|
+
'screen.inventory.filters': 'Chọn lịch phòng trống',
|
|
339
385
|
'screen.inventory.dateRange': 'Khoảng ngày hiển thị',
|
|
340
386
|
'screen.inventory.allotment': 'Phân bổ phòng bán',
|
|
341
387
|
'screen.inventory.allotmentHint': 'Tổng phòng không được thấp hơn số đã bán cộng số đang khóa.',
|
|
@@ -350,12 +396,12 @@ export const messages = {
|
|
|
350
396
|
'screen.stayNotices.title': 'Thông báo lưu trú',
|
|
351
397
|
'nightAudit.section.selection': 'Cơ sở và ngày vận hành',
|
|
352
398
|
'nightAudit.section.run': 'Thực hiện chốt ngày',
|
|
353
|
-
'nightAudit.section.runHint': '
|
|
399
|
+
'nightAudit.section.runHint': 'Hệ thống sẽ ghi các dịch vụ theo đêm và tiền phòng đến hạn mà không tạo khoản trùng.',
|
|
354
400
|
'nightAudit.section.history': 'Lịch sử chốt ngày',
|
|
355
|
-
'nightAudit.section.historyHint': 'Mỗi
|
|
401
|
+
'nightAudit.section.historyHint': 'Mỗi ngày chỉ được chốt một lần; chạy lại chỉ bổ sung khoản còn thiếu.',
|
|
356
402
|
'nightAudit.field.auditDate': 'Ngày vận hành',
|
|
357
403
|
'nightAudit.action.preview': 'Xem trước',
|
|
358
|
-
'nightAudit.action.run': '
|
|
404
|
+
'nightAudit.action.run': 'Bắt đầu chốt ngày',
|
|
359
405
|
'nightAudit.metric.inHouse': 'Khách đang lưu trú',
|
|
360
406
|
'nightAudit.metric.servicesDue': 'Dịch vụ đến hạn',
|
|
361
407
|
'nightAudit.metric.rentDue': 'Kỳ tiền phòng đến hạn',
|
|
@@ -368,15 +414,15 @@ export const messages = {
|
|
|
368
414
|
'nightAudit.state.running': 'Đang chạy',
|
|
369
415
|
'nightAudit.state.completed': 'Hoàn tất',
|
|
370
416
|
'nightAudit.state.failed': 'Lỗi',
|
|
371
|
-
'nightAudit.feedback.queued': 'Đã
|
|
372
|
-
'nightAudit.feedback.queuedHint': '
|
|
417
|
+
'nightAudit.feedback.queued': 'Đã bắt đầu chốt ngày',
|
|
418
|
+
'nightAudit.feedback.queuedHint': 'Hệ thống đang xử lý; có thể tải lại trang để xem kết quả.',
|
|
373
419
|
'nightAudit.feedback.invalidHint': 'Kiểm tra cơ sở và ngày vận hành rồi thử lại.',
|
|
374
420
|
'nightAudit.empty.property': 'Chưa có cơ sở để chốt ngày.',
|
|
375
421
|
'nightAudit.empty.propertyHint': 'Tạo cơ sở lưu trú trước khi chạy nghiệp vụ cuối ngày.',
|
|
376
422
|
'nightAudit.empty.runs': 'Chưa có lần chốt ngày nào.',
|
|
377
|
-
'nightAudit.empty.runsHint': 'Xem trước số liệu rồi
|
|
423
|
+
'nightAudit.empty.runsHint': 'Xem trước số liệu rồi bắt đầu chốt ngày.',
|
|
378
424
|
'stayNotice.privacy.title': 'Không lưu bản kê khai chứa thông tin giấy tờ',
|
|
379
|
-
'stayNotice.privacy.hint': 'Két chỉ hiển thị loại giấy tờ và 4 số cuối.
|
|
425
|
+
'stayNotice.privacy.hint': 'Két chỉ hiển thị loại giấy tờ và 4 số cuối. Nhân viên lập thông báo trên kênh chính thức; hệ thống chỉ lưu thời gian, người thao tác và mã dùng để đối chiếu.',
|
|
380
426
|
'stayNotice.section.queue': 'Danh sách cần xử lý',
|
|
381
427
|
'stayNotice.section.queueHint': 'Hồ sơ được chuẩn bị sau khi nhận phòng. Hạn thông báo là 23:00 cùng ngày, hoặc 08:00 ngày kế tiếp nếu khách đến sau 23:00.',
|
|
382
428
|
'stayNotice.section.selected': 'Chi tiết hồ sơ đang chọn',
|
|
@@ -418,7 +464,7 @@ export const messages = {
|
|
|
418
464
|
'stayNotice.value.complete': 'Đủ dữ liệu bắt buộc',
|
|
419
465
|
'stayNotice.value.missing': 'Chưa có',
|
|
420
466
|
'stayNotice.feedback.refreshed': 'Đã yêu cầu kiểm tra lại',
|
|
421
|
-
'stayNotice.feedback.refreshedHint': '
|
|
467
|
+
'stayNotice.feedback.refreshedHint': 'Hệ thống sẽ chuẩn bị lại hồ sơ từ dữ liệu hiện tại.',
|
|
422
468
|
'stayNotice.feedback.submitted': 'Đã ghi nhận việc gửi',
|
|
423
469
|
'stayNotice.feedback.submittedHint': 'Dấu thời gian, người thao tác và mã bằng chứng đã được lưu.',
|
|
424
470
|
'stayNotice.feedback.confirmed': 'Đã xác nhận hoàn tất',
|
|
@@ -427,19 +473,19 @@ export const messages = {
|
|
|
427
473
|
'stayNotice.empty.property': 'Chưa có cơ sở để quản lý thông báo lưu trú.',
|
|
428
474
|
'stayNotice.empty.propertyHint': 'Tạo cơ sở lưu trú trước khi tiếp nhận khách.',
|
|
429
475
|
'stayNotice.empty.rows': 'Không có hồ sơ ở bộ lọc này.',
|
|
430
|
-
'stayNotice.empty.rowsHint': 'Hồ sơ sẽ xuất hiện sau khi nhận phòng và
|
|
431
|
-
'services.metric.fees': 'Phụ phí
|
|
476
|
+
'stayNotice.empty.rowsHint': 'Hồ sơ sẽ xuất hiện sau khi khách nhận phòng và hệ thống hoàn tất chuẩn bị.',
|
|
477
|
+
'services.metric.fees': 'Phụ phí đã thiết lập',
|
|
432
478
|
'services.metric.extras': 'Dịch vụ dự kiến',
|
|
433
479
|
'services.metric.posted': 'Khoản đã ghi nhận',
|
|
434
480
|
'services.metric.postedValue': 'Giá trị đã ghi nhận',
|
|
435
481
|
'services.section.fees': 'Phụ phí của cơ sở',
|
|
436
|
-
'services.section.feesHint': 'Khai báo
|
|
482
|
+
'services.section.feesHint': 'Khai báo một lần để cùng mức phí được dùng tại khách sạn và trên các kênh OTA.',
|
|
437
483
|
'services.section.intentions': 'Dịch vụ dự kiến',
|
|
438
|
-
'services.section.intentionsHint': '
|
|
484
|
+
'services.section.intentionsHint': 'Chọn dịch vụ cho đặt phòng hoặc lượt lưu trú trước khi khách sử dụng.',
|
|
439
485
|
'services.section.post': 'Ghi nhận phát sinh',
|
|
440
|
-
'services.section.postHint': 'Mỗi lần
|
|
441
|
-
'services.section.ledger': '
|
|
442
|
-
'services.section.ledgerHint': '
|
|
486
|
+
'services.section.postHint': 'Mỗi lần phát sinh chỉ được ghi một lần và không thể sửa sau khi xác nhận.',
|
|
487
|
+
'services.section.ledger': 'Dịch vụ đã phát sinh',
|
|
488
|
+
'services.section.ledgerHint': 'Các khoản này đang nằm trên phiếu chi phí của khách; hóa đơn và chứng từ kế toán được xử lý riêng.',
|
|
443
489
|
'services.form.fee': 'Khai báo phụ phí',
|
|
444
490
|
'services.form.intention': 'Thêm dịch vụ dự kiến',
|
|
445
491
|
'services.action.saveFee': 'Lưu phụ phí',
|
|
@@ -450,7 +496,7 @@ export const messages = {
|
|
|
450
496
|
'services.col.recurrence': 'Chu kỳ',
|
|
451
497
|
'services.col.unitPrice': 'Đơn giá',
|
|
452
498
|
'services.col.materialized': 'Đã ghi nhận',
|
|
453
|
-
'services.col.folio': '
|
|
499
|
+
'services.col.folio': 'Phiếu chi phí',
|
|
454
500
|
'services.field.target': 'Đặt phòng / lưu trú',
|
|
455
501
|
'services.field.product': 'Sản phẩm dịch vụ',
|
|
456
502
|
'services.field.description': 'Diễn giải',
|
|
@@ -465,7 +511,7 @@ export const messages = {
|
|
|
465
511
|
'services.value.pending': 'Chưa phát sinh',
|
|
466
512
|
'services.value.posted': '{count} lần · {amount}',
|
|
467
513
|
'services.empty.fees': 'Chưa khai báo phụ phí.',
|
|
468
|
-
'services.empty.feesHint': 'Phụ phí
|
|
514
|
+
'services.empty.feesHint': 'Phụ phí đang dùng sẽ được gửi tới các kênh OTA đã kết nối.',
|
|
469
515
|
'services.empty.catalogue': 'Chưa đủ dữ liệu để thêm dịch vụ.',
|
|
470
516
|
'services.empty.catalogueHint': 'Cần ít nhất một sản phẩm bán được và một đặt phòng đang hoạt động.',
|
|
471
517
|
'services.empty.intentions': 'Chưa có dịch vụ dự kiến.',
|
|
@@ -473,7 +519,7 @@ export const messages = {
|
|
|
473
519
|
'services.empty.post': 'Không có dịch vụ đang hoạt động để ghi nhận.',
|
|
474
520
|
'services.empty.postHint': 'Tạo dịch vụ dự kiến trước khi ghi nhận phát sinh.',
|
|
475
521
|
'services.empty.ledger': 'Chưa có dịch vụ phát sinh.',
|
|
476
|
-
'services.empty.ledgerHint': 'Các khoản đã ghi
|
|
522
|
+
'services.empty.ledgerHint': 'Các khoản đã ghi vào phiếu chi phí sẽ xuất hiện tại đây.',
|
|
477
523
|
'metric.properties': 'Cơ sở đang hoạt động',
|
|
478
524
|
'metric.rooms': 'Tổng số phòng',
|
|
479
525
|
'metric.available': 'Phòng sẵn sàng',
|
|
@@ -483,7 +529,7 @@ export const messages = {
|
|
|
483
529
|
'metric.inHouse': 'Đang lưu trú',
|
|
484
530
|
'metric.departures': 'Khách rời hôm nay',
|
|
485
531
|
'metric.overdue': 'Quá giờ trả phòng',
|
|
486
|
-
'metric.openFolios': '
|
|
532
|
+
'metric.openFolios': 'Phiếu chi phí đang mở',
|
|
487
533
|
'metric.inventoryDays': 'Số ngày',
|
|
488
534
|
'metric.minimumAvailable': 'Ít phòng trống nhất',
|
|
489
535
|
'metric.sold': 'Đêm phòng đã bán',
|
|
@@ -517,7 +563,7 @@ export const messages = {
|
|
|
517
563
|
'content.metadata.group': 'Thông tin mô tả hình ảnh',
|
|
518
564
|
'content.action.saveMetadata': 'Lưu mô tả',
|
|
519
565
|
'content.feedback.saved': 'Đã cập nhật nội dung',
|
|
520
|
-
'content.feedback.savedHint': 'Thay đổi đã
|
|
566
|
+
'content.feedback.savedHint': 'Thay đổi đã được lưu và sẽ gửi tới từng kênh OTA đã kết nối.',
|
|
521
567
|
'content.feedback.invalid': 'Không thể cập nhật nội dung',
|
|
522
568
|
'content.feedback.invalidHint': 'Kiểm tra lại nhóm ảnh và phần mô tả.',
|
|
523
569
|
'col.code': 'Mã',
|
|
@@ -526,6 +572,7 @@ export const messages = {
|
|
|
526
572
|
'col.location': 'Địa điểm',
|
|
527
573
|
'col.stars': 'Hạng sao',
|
|
528
574
|
'col.roomType': 'Loại phòng',
|
|
575
|
+
'col.stayDates': 'Ngày ở',
|
|
529
576
|
'col.capacity': 'Sức chứa',
|
|
530
577
|
'col.status': 'Trạng thái',
|
|
531
578
|
'col.rooms': 'Số phòng',
|
|
@@ -539,10 +586,13 @@ export const messages = {
|
|
|
539
586
|
'col.provider': 'Nguồn',
|
|
540
587
|
'col.checkIn': 'Nhận phòng',
|
|
541
588
|
'col.checkOut': 'Trả phòng',
|
|
589
|
+
'col.arrivalTime': 'Giờ đến',
|
|
590
|
+
'col.departureTime': 'Giờ trả',
|
|
542
591
|
'col.amount': 'Thành tiền',
|
|
543
592
|
'col.room': 'Phòng',
|
|
593
|
+
'col.action': 'Thao tác',
|
|
544
594
|
'col.guests': 'Số khách',
|
|
545
|
-
'col.folio': '
|
|
595
|
+
'col.folio': 'Phiếu chi phí',
|
|
546
596
|
'col.stays': 'Lượt lưu trú',
|
|
547
597
|
'col.assignee': 'Người dọn',
|
|
548
598
|
'col.requestedAt': 'Yêu cầu lúc',
|
|
@@ -617,14 +667,18 @@ export const messages = {
|
|
|
617
667
|
'extraRecurrence.per_unit': 'Theo số lượng',
|
|
618
668
|
'chargeState.active': 'Đã ghi nhận',
|
|
619
669
|
'chargeState.void': 'Đã hủy',
|
|
670
|
+
'duration.nightly': '{count} đêm',
|
|
671
|
+
'duration.hourly': '{count} giờ',
|
|
672
|
+
'duration.weekly': '{count} tuần',
|
|
673
|
+
'duration.monthly': '{count} tháng',
|
|
620
674
|
'bookingType.nightly': 'Theo đêm',
|
|
621
675
|
'bookingType.hourly': 'Theo giờ',
|
|
622
676
|
'bookingType.weekly': 'Theo tuần',
|
|
623
677
|
'bookingType.monthly': 'Theo tháng',
|
|
624
678
|
'reservation.feedback.saved': 'Đã xác nhận đặt phòng',
|
|
625
|
-
'reservation.feedback.savedHint': 'Đặt phòng,
|
|
679
|
+
'reservation.feedback.savedHint': 'Đặt phòng, lưu trú, phiếu chi phí và số phòng trống đã được cập nhật.',
|
|
626
680
|
'reservation.feedback.quoted': 'Đã kiểm tra giá và phòng trống',
|
|
627
|
-
'reservation.feedback.quotedHint': '
|
|
681
|
+
'reservation.feedback.quotedHint': 'Giá và số phòng trống có thể thay đổi; hệ thống sẽ kiểm tra lại khi bạn xác nhận.',
|
|
628
682
|
'reservation.feedback.invalidHint': 'Kiểm tra khách, thời gian, giá và các hạn chế bán được hiển thị bên dưới.',
|
|
629
683
|
'reservation.feedback.checkedIn': 'Đã nhận phòng',
|
|
630
684
|
'reservation.feedback.checkedInHint': 'Phòng đã được xếp, hồ sơ lưu trú đã mở và thông báo lưu trú đang được chuẩn bị.',
|
|
@@ -635,9 +689,9 @@ export const messages = {
|
|
|
635
689
|
'reservation.feedback.cancelled': 'Đã hủy đặt phòng',
|
|
636
690
|
'reservation.feedback.cancelledHint': 'Tồn phòng đã được hoàn lại và các khoản phí chưa hoàn tất đã được vô hiệu hóa.',
|
|
637
691
|
'reservation.feedback.amended': 'Đã cập nhật đặt phòng',
|
|
638
|
-
'reservation.feedback.amendedHint': 'Lịch ở,
|
|
692
|
+
'reservation.feedback.amendedHint': 'Lịch ở, số phòng trống, khách chính và tiền phòng đã được cập nhật.',
|
|
639
693
|
'reservation.feedback.departureAdjusted': 'Đã cập nhật ngày trả phòng',
|
|
640
|
-
'reservation.feedback.departureAdjustedHint': 'Lịch lưu trú,
|
|
694
|
+
'reservation.feedback.departureAdjustedHint': 'Lịch lưu trú, số phòng trống và tiền phòng đã được cập nhật.',
|
|
641
695
|
'reservation.feedback.noShow': 'Đã ghi nhận khách không đến',
|
|
642
696
|
'reservation.feedback.noShowHint': 'Tồn phòng đã được hoàn, hồ sơ lưu trú đã đóng và các khoản phí hiện có được giữ lại để đối soát.',
|
|
643
697
|
'reservation.field.property': 'Cơ sở lưu trú',
|
|
@@ -652,7 +706,7 @@ export const messages = {
|
|
|
652
706
|
'reservation.field.rateHint': 'Để trống để dùng giá mặc định đang hoạt động.',
|
|
653
707
|
'reservation.field.room': 'Phòng thực tế',
|
|
654
708
|
'reservation.field.billingMode': 'Cách tính tiền',
|
|
655
|
-
'reservation.field.folio': '
|
|
709
|
+
'reservation.field.folio': 'Phiếu chi phí',
|
|
656
710
|
'reservation.field.cancelReason': 'Lý do hủy',
|
|
657
711
|
'reservation.field.cancelReasonHint': 'Lưu lý do để lễ tân và bộ phận kinh doanh cùng theo dõi.',
|
|
658
712
|
'reservation.field.noShowReason': 'Ghi chú khách không đến',
|
|
@@ -660,10 +714,16 @@ export const messages = {
|
|
|
660
714
|
'reservation.value.selectGuest': 'Chọn khách',
|
|
661
715
|
'reservation.value.unassigned': 'Chưa xếp phòng',
|
|
662
716
|
'reservation.action.quote': 'Kiểm tra giá và phòng',
|
|
717
|
+
'reservation.action.new': 'Tạo đặt phòng',
|
|
663
718
|
'reservation.action.create': 'Xác nhận đặt phòng',
|
|
664
719
|
'reservation.action.back': 'Quay lại danh sách',
|
|
665
720
|
'reservation.action.checkIn': 'Nhận phòng',
|
|
666
721
|
'reservation.action.checkInHint': 'Chọn một phòng sẵn sàng đúng loại đã đặt rồi xác nhận khách đến.',
|
|
722
|
+
'reservation.action.holdRoom': 'Giữ phòng',
|
|
723
|
+
'reservation.action.holdRoomChange': 'Đổi phòng giữ',
|
|
724
|
+
'reservation.action.holdRoomHint': 'Chọn trước phòng cho khách. Phòng vẫn bán được cho các đêm khác, chỉ khoá đúng kỳ lưu trú này.',
|
|
725
|
+
'reservation.action.holdRoomKept': 'Đang giữ phòng {room} cho khách.',
|
|
726
|
+
'reservation.action.releaseRoomHold': 'Bỏ giữ phòng',
|
|
667
727
|
'reservation.action.checkOut': 'Trả phòng',
|
|
668
728
|
'reservation.action.checkOutHint': 'Đóng kỳ lưu trú, chuyển phòng sang chờ dọn và tạo công việc buồng phòng.',
|
|
669
729
|
'reservation.action.adjustDeparture': 'Điều chỉnh ngày trả phòng',
|
|
@@ -677,13 +737,13 @@ export const messages = {
|
|
|
677
737
|
'reservation.detail.title': 'Đặt phòng {code}',
|
|
678
738
|
'reservation.detail.kicker': 'Hồ sơ đặt phòng',
|
|
679
739
|
'reservation.detail.stay': 'Thông tin lưu trú',
|
|
680
|
-
'reservation.detail.stayHint': 'Thông tin bán phòng, khách ở và
|
|
740
|
+
'reservation.detail.stayHint': 'Thông tin bán phòng, khách ở và phiếu chi phí của đặt phòng.',
|
|
681
741
|
'reservation.section.intake': 'Nhận đặt phòng trực tiếp',
|
|
682
742
|
'reservation.section.intakeHint': 'Hỗ trợ theo đêm, tuần và tháng. Đặt theo giờ sẽ được mở khi có tồn kho theo khung giờ.',
|
|
683
743
|
'reservation.section.quote': 'Báo giá sẵn sàng',
|
|
684
|
-
'reservation.section.quoteHint': '
|
|
744
|
+
'reservation.section.quoteHint': 'Khi xác nhận, hệ thống sẽ kiểm tra lại điều kiện bán và số phòng trống để tránh bán vượt.',
|
|
685
745
|
'reservation.section.list': 'Danh sách đặt phòng',
|
|
686
|
-
'reservation.section.listHint': 'Đặt trực tiếp và từ OTA cùng xuất hiện trong
|
|
746
|
+
'reservation.section.listHint': 'Đặt phòng trực tiếp và từ OTA cùng xuất hiện trong danh sách này.',
|
|
687
747
|
'reservation.quote.rate': 'Đơn giá áp dụng',
|
|
688
748
|
'reservation.quote.quantity': 'Số kỳ tính tiền',
|
|
689
749
|
'reservation.quote.availability': 'Phòng trống ít nhất',
|
|
@@ -756,27 +816,27 @@ export const messages = {
|
|
|
756
816
|
'stay.empty.availableRoomsHint': 'Kiểm tra trạng thái phòng hoặc hoàn tất công việc buồng phòng trước.',
|
|
757
817
|
'stay.value.noLinkedPartner': 'Không liên kết danh bạ',
|
|
758
818
|
'stay.validation.moveRequired': 'Chọn phòng chuyển đến và nhập lý do chuyển phòng.',
|
|
759
|
-
'folio.detail.title': '
|
|
760
|
-
'folio.detail.kicker': '
|
|
761
|
-
'folio.action.back': 'Quay lại danh sách
|
|
819
|
+
'folio.detail.title': 'Phiếu chi phí {code}',
|
|
820
|
+
'folio.detail.kicker': 'Chi phí của khách',
|
|
821
|
+
'folio.action.back': 'Quay lại danh sách phiếu chi phí',
|
|
762
822
|
'folio.action.postCharge': 'Ghi nhận khoản phí',
|
|
763
823
|
'folio.action.voidCharge': 'Hủy khoản phí',
|
|
764
824
|
'folio.feedback.chargePosted': 'Đã ghi nhận khoản phí',
|
|
765
|
-
'folio.feedback.chargePostedHint': 'Tổng
|
|
825
|
+
'folio.feedback.chargePostedHint': 'Tổng tiền trên phiếu chi phí đã được cập nhật.',
|
|
766
826
|
'folio.feedback.chargeVoided': 'Đã hủy khoản phí',
|
|
767
|
-
'folio.feedback.chargeVoidedHint': '
|
|
768
|
-
'folio.notice.operational': '
|
|
769
|
-
'folio.notice.operationalHint': '
|
|
827
|
+
'folio.feedback.chargeVoidedHint': 'Khoản cũ được giữ trong lịch sử và tổng tiền đã được điều chỉnh.',
|
|
828
|
+
'folio.notice.operational': 'Chưa phải hóa đơn',
|
|
829
|
+
'folio.notice.operationalHint': 'Đây là các khoản chi phí trong thời gian lưu trú, chưa phải thanh toán, hóa đơn hay bút toán kế toán.',
|
|
770
830
|
'folio.metric.activeTotal': 'Tổng đang hiệu lực',
|
|
771
831
|
'folio.metric.activeCharges': 'Khoản phí hiệu lực',
|
|
772
|
-
'folio.section.information': 'Thông tin
|
|
773
|
-
'folio.section.informationHint': '
|
|
832
|
+
'folio.section.information': 'Thông tin phiếu chi phí',
|
|
833
|
+
'folio.section.informationHint': 'Người thanh toán, thời điểm mở và trạng thái hiện tại.',
|
|
774
834
|
'folio.section.charges': 'Các khoản phí',
|
|
775
|
-
'folio.section.chargesHint': 'Tiền phòng, dịch vụ và giảm giá được
|
|
835
|
+
'folio.section.chargesHint': 'Tiền phòng, dịch vụ và giảm giá được liệt kê riêng để dễ kiểm tra.',
|
|
776
836
|
'folio.section.correction': 'Điều chỉnh sai sót',
|
|
777
|
-
'folio.section.correctionHint': 'Hủy
|
|
837
|
+
'folio.section.correctionHint': 'Hủy khoản bị sai và ghi rõ lý do; lịch sử cũ vẫn được giữ lại.',
|
|
778
838
|
'folio.section.stays': 'Các kỳ lưu trú',
|
|
779
|
-
'folio.section.staysHint': 'Một
|
|
839
|
+
'folio.section.staysHint': 'Một phiếu có thể gồm một hoặc nhiều kỳ lưu trú của cùng người thanh toán.',
|
|
780
840
|
'folio.field.openedAt': 'Mở lúc',
|
|
781
841
|
'folio.field.closedAt': 'Đóng lúc',
|
|
782
842
|
'folio.field.charge': 'Khoản phí cần hủy',
|
|
@@ -792,8 +852,8 @@ export const messages = {
|
|
|
792
852
|
'folio.empty.charges': 'Chưa có khoản phí.',
|
|
793
853
|
'folio.empty.chargesHint': 'Tiền phòng và dịch vụ sẽ xuất hiện tại đây sau khi được ghi nhận.',
|
|
794
854
|
'folio.empty.stays': 'Chưa có kỳ lưu trú.',
|
|
795
|
-
'folio.empty.staysHint': 'Kỳ lưu trú được
|
|
796
|
-
'folio.value.noStay': 'Chung cho toàn
|
|
855
|
+
'folio.empty.staysHint': 'Kỳ lưu trú được thêm vào phiếu khi đặt phòng được tạo.',
|
|
856
|
+
'folio.value.noStay': 'Chung cho toàn phiếu',
|
|
797
857
|
'mealPlan.RO': 'Chỉ phòng',
|
|
798
858
|
'mealPlan.BB': 'Phòng và bữa sáng',
|
|
799
859
|
'mealPlan.HB': 'Bán trú',
|
|
@@ -825,6 +885,7 @@ export const messages = {
|
|
|
825
885
|
'billing.upfront': 'Thanh toán một lần',
|
|
826
886
|
'billing.recurring': 'Định kỳ',
|
|
827
887
|
'provider.direct': 'Trực tiếp',
|
|
888
|
+
'provider.website': 'Website',
|
|
828
889
|
'provider.booking': 'Booking.com',
|
|
829
890
|
'provider.agoda': 'Agoda',
|
|
830
891
|
'provider.expedia': 'Expedia',
|
|
@@ -841,6 +902,7 @@ export const messages = {
|
|
|
841
902
|
'stayState.checked_out': 'Đã trả phòng',
|
|
842
903
|
'stayState.cancelled': 'Đã hủy',
|
|
843
904
|
'stayState.no_show': 'Khách không đến',
|
|
905
|
+
'stayState.overdue': 'Quá giờ trả phòng',
|
|
844
906
|
'folioState.draft': 'Nháp',
|
|
845
907
|
'folioState.open': 'Đang mở',
|
|
846
908
|
'folioState.closed': 'Đã đóng',
|
|
@@ -852,6 +914,7 @@ export const messages = {
|
|
|
852
914
|
'charge.spa': 'Spa',
|
|
853
915
|
'charge.restaurant': 'Nhà hàng',
|
|
854
916
|
'charge.service': 'Dịch vụ',
|
|
917
|
+
'charge.cancellation': 'Phí hủy',
|
|
855
918
|
'charge.discount': 'Giảm giá',
|
|
856
919
|
'document.cccd': 'Căn cước công dân',
|
|
857
920
|
'document.cmnd': 'Chứng minh nhân dân',
|
|
@@ -895,6 +958,27 @@ export const messages = {
|
|
|
895
958
|
'validation.bed_type': 'Loại giường không hợp lệ.',
|
|
896
959
|
'validation.cancellation_policy_type': 'Loại chính sách hủy không hợp lệ.',
|
|
897
960
|
'validation.contact_type': 'Loại liên hệ không hợp lệ.',
|
|
961
|
+
'error.propertyNotFound': 'Không tìm thấy cơ sở lưu trú đang hoạt động trong công ty hiện tại.',
|
|
962
|
+
'error.roomTypeNotFound': 'Không tìm thấy loại phòng đang được mở bán.',
|
|
963
|
+
'error.propertyMismatch': 'Loại phòng không thuộc cơ sở lưu trú đã chọn.',
|
|
964
|
+
'error.capacityExceeded': 'Số khách vượt quá sức chứa của số phòng đã chọn.',
|
|
965
|
+
'error.invalidStayDates': 'Ngày nhận và trả phòng không hợp lệ.',
|
|
966
|
+
'error.pastStayDate': 'Không thể đặt phòng với ngày nhận phòng trong quá khứ.',
|
|
967
|
+
'error.bookingHorizonExceeded': 'Chỉ có thể đặt phòng trước tối đa {days} ngày.',
|
|
968
|
+
'error.stayLengthExceeded': 'Một lần đặt trực tuyến không được vượt quá {nights} đêm.',
|
|
969
|
+
'error.invalidQuantity': 'Số phòng phải nằm trong giới hạn cho phép, tối đa {maximum} phòng.',
|
|
970
|
+
'error.invalidGuestCount': 'Số lượng người lớn, trẻ em hoặc trẻ sơ sinh không hợp lệ.',
|
|
971
|
+
'error.inventoryUnavailable': 'Không còn đủ phòng cho toàn bộ kỳ lưu trú.',
|
|
972
|
+
'error.ratePlanUnavailable': 'Giá bán đã chọn không còn khả dụng.',
|
|
973
|
+
'error.stopSell': 'Cơ sở đang dừng bán trong kỳ lưu trú đã chọn.',
|
|
974
|
+
'error.closedToArrival': 'Không nhận khách vào ngày nhận phòng đã chọn.',
|
|
975
|
+
'error.closedToDeparture': 'Không trả phòng vào ngày đã chọn.',
|
|
976
|
+
'error.minimumStay': 'Giá hoặc hạn chế bán yêu cầu tối thiểu {required} đêm.',
|
|
977
|
+
'error.maximumStay': 'Giá hoặc hạn chế bán cho phép tối đa {maximum} đêm.',
|
|
978
|
+
'error.requestConflict': 'Khóa yêu cầu đã được dùng cho một nội dung đặt phòng khác.',
|
|
979
|
+
'error.partnerNotFound': 'Không tìm thấy hồ sơ khách hàng trong công ty hiện tại.',
|
|
980
|
+
'error.reservationNotOwned': 'Không tìm thấy đặt phòng thuộc khách hàng này.',
|
|
981
|
+
'error.cancellationNotAllowed': 'Đặt phòng không còn đủ điều kiện hủy trực tuyến.',
|
|
898
982
|
'validation.property_missing': 'Không tìm thấy cơ sở lưu trú.',
|
|
899
983
|
'validation.property_archived': 'Cơ sở lưu trú đang được lưu trữ; hãy khôi phục cơ sở trước.',
|
|
900
984
|
'validation.building_missing': 'Không tìm thấy tòa nhà.',
|
|
@@ -903,6 +987,8 @@ export const messages = {
|
|
|
903
987
|
'validation.room_type_archived': 'Loại phòng đang được lưu trữ; hãy khôi phục loại phòng trước.',
|
|
904
988
|
'validation.room_missing': 'Không tìm thấy phòng.',
|
|
905
989
|
'validation.policy_missing': 'Không tìm thấy chính sách hủy.',
|
|
990
|
+
'validation.branch_company_mismatch': 'Chi nhánh không thuộc công ty hiện tại.',
|
|
991
|
+
'validation.branch_archived': 'Chi nhánh đã ngừng hoạt động.',
|
|
906
992
|
'validation.amenity_missing': 'Không tìm thấy tiện nghi.',
|
|
907
993
|
'validation.amenity_category_missing': 'Không tìm thấy nhóm tiện nghi.',
|
|
908
994
|
'validation.target_missing': 'Không tìm thấy đối tượng cần gán.',
|
|
@@ -935,10 +1021,21 @@ export const messages = {
|
|
|
935
1021
|
'validation.stay_cannot_adjust_departure': 'Chỉ có thể điều chỉnh ngày trả phòng khi khách đang lưu trú.',
|
|
936
1022
|
'validation.departure_not_future': 'Ngày trả phòng mới phải ở trong tương lai.',
|
|
937
1023
|
'validation.stay_cannot_check_in': 'Không thể nhận phòng ở trạng thái hiện tại.',
|
|
938
|
-
'validation.early_check_in': 'Chưa đến giờ nhận phòng
|
|
1024
|
+
'validation.early_check_in': 'Chưa đến giờ nhận phòng. Nhập lý do nhận sớm để tiếp tục.',
|
|
1025
|
+
'validation.late_check_out': 'Đã quá giờ trả phòng. Nhập lý do trả muộn để tiếp tục.',
|
|
1026
|
+
'validation.property_booking_type_closed': 'Cơ sở chưa mở bán theo hình thức lưu trú này.',
|
|
1027
|
+
'validation.room_type_booking_type_closed': 'Hạng phòng chưa mở bán theo hình thức lưu trú này.',
|
|
1028
|
+
'validation.long_stay_direct_only': 'Lưu trú dài ngày chỉ nhận qua kênh trực tiếp.',
|
|
1029
|
+
'validation.hourly_minimum_hours': 'Hạng phòng yêu cầu tối thiểu {count} giờ.',
|
|
1030
|
+
'validation.no_availability_hourly': 'Không còn phòng trống trong khung giờ đã chọn.',
|
|
1031
|
+
'validation.room_archive_would_oversell': 'Không thể lưu trữ phòng: ngày {date} đã bán {committed} phòng trong khi chỉ còn {total}.',
|
|
1032
|
+
'validation.room_type_change_not_allowed': 'Đổi sang hạng phòng khác cần được cho phép rõ ràng.',
|
|
1033
|
+
'validation.inventory_total_conflict': 'Không thể vừa đặt tổng phòng thủ công vừa cho tổng phòng bám theo số phòng thực tế.',
|
|
939
1034
|
'validation.no_available_room': 'Không còn phòng sẵn sàng thuộc loại đã đặt.',
|
|
940
1035
|
'validation.room_type_mismatch': 'Phòng không thuộc loại phòng đã đặt.',
|
|
941
1036
|
'validation.room_not_available': 'Phòng không còn ở trạng thái sẵn sàng.',
|
|
1037
|
+
'validation.room_already_held': 'Phòng này đang được giữ cho một lượt khác trong cùng khoảng ngày.',
|
|
1038
|
+
'validation.stay_cannot_hold_room': 'Chỉ giữ phòng được cho lượt chưa nhận phòng.',
|
|
942
1039
|
'validation.transition_conflict': 'Dữ liệu vừa được thay đổi; vui lòng tải lại và thử lại.',
|
|
943
1040
|
'validation.cleaning_type': 'Loại việc dọn phòng không hợp lệ.',
|
|
944
1041
|
'validation.cleaning_priority': 'Mức ưu tiên không hợp lệ.',
|
|
@@ -953,13 +1050,15 @@ export const messages = {
|
|
|
953
1050
|
'validation.stay_cannot_check_out': 'Không thể trả phòng ở trạng thái hiện tại.',
|
|
954
1051
|
'validation.primary_guest_mismatch': 'Khách chính phải khớp với khách đứng tên đặt phòng.',
|
|
955
1052
|
'validation.primary_guest_unique': 'Hồ sơ lưu trú đã có khách chính.',
|
|
956
|
-
'validation.folio_missing': 'Không tìm thấy
|
|
957
|
-
'validation.folio_not_open': '
|
|
958
|
-
'validation.folio_mismatch': '
|
|
1053
|
+
'validation.folio_missing': 'Không tìm thấy phiếu chi phí.',
|
|
1054
|
+
'validation.folio_not_open': 'Phiếu chi phí đã đóng.',
|
|
1055
|
+
'validation.folio_mismatch': 'Khoản phí không thuộc phiếu chi phí của kỳ lưu trú này.',
|
|
959
1056
|
'validation.room_charge_missing': 'Không tìm thấy dòng tiền phòng đang hoạt động để cập nhật.',
|
|
960
1057
|
'validation.charge_missing': 'Không tìm thấy khoản phí.',
|
|
961
1058
|
'validation.charge_not_active': 'Khoản phí không còn hiệu lực để hủy.',
|
|
962
1059
|
'validation.charge_type': 'Loại dịch vụ phát sinh không hợp lệ.',
|
|
1060
|
+
'validation.charge_id_reused': 'Mã khoản phí đã được dùng cho một nội dung khác.',
|
|
1061
|
+
'validation.charge_source_reused': 'Khóa nguồn khoản phí đã được dùng cho một nội dung khác.',
|
|
963
1062
|
'validation.document_type': 'Loại giấy tờ không hợp lệ.',
|
|
964
1063
|
'validation.authentication_required': 'Cần đăng nhập để ghi nhận thao tác này.',
|
|
965
1064
|
'validation.stay_notice_missing': 'Không tìm thấy hồ sơ thông báo lưu trú.',
|
|
@@ -975,7 +1074,7 @@ export const messages = {
|
|
|
975
1074
|
'validation.audit_future': 'Không thể chốt một ngày vận hành trong tương lai.',
|
|
976
1075
|
'validation.date_range_order': 'Ngày kết thúc phải bằng hoặc sau ngày bắt đầu.',
|
|
977
1076
|
'validation.inventory_horizon': 'Mỗi lần chỉ được xử lý tối đa {count} ngày.',
|
|
978
|
-
'validation.ledger_missing': 'Không
|
|
1077
|
+
'validation.ledger_missing': 'Không có thông tin phòng trống cho ngày {date}.',
|
|
979
1078
|
'validation.no_availability': 'Hết phòng ngày {date}: còn {available}, cần {required}.',
|
|
980
1079
|
'validation.inventory_change_required': 'Cần nhập tổng phòng hoặc số phòng khóa.',
|
|
981
1080
|
'validation.inventory_capacity': 'Ngày {date} đã cam kết {committed} phòng, vượt tổng {total}.',
|
|
@@ -997,6 +1096,12 @@ export const messages = {
|
|
|
997
1096
|
'validation.product_template_missing': 'Không tìm thấy thông tin sản phẩm dịch vụ.',
|
|
998
1097
|
'validation.product_not_saleable': 'Sản phẩm này không còn được phép bán.',
|
|
999
1098
|
'validation.product_uom_mismatch': 'Đơn vị tính không dùng được cho sản phẩm này.',
|
|
1099
|
+
'validation.product_required': 'Chọn sản phẩm trước khi chọn đơn vị hoặc cách xuất kho.',
|
|
1100
|
+
'validation.charge_fulfillment_kind': 'Cách cấp hàng cho dịch vụ không hợp lệ.',
|
|
1101
|
+
'validation.minibar_product_required': 'Phí minibar phải gắn với một sản phẩm hàng hoá.',
|
|
1102
|
+
'validation.minibar_goods_required': 'Sản phẩm minibar phải có loại hàng hoá.',
|
|
1103
|
+
'validation.minibar_fulfillment_required': 'Phí minibar chỉ được ghi sau khi hệ thống kho xác nhận đã xuất hàng.',
|
|
1104
|
+
'validation.external_fulfillment_required': 'Cần xuất hàng trong hệ thống kho trước khi ghi phí vào phiếu chi phí.',
|
|
1000
1105
|
'validation.extra_recurrence': 'Chu kỳ dịch vụ không hợp lệ.',
|
|
1001
1106
|
'validation.extra_line_missing': 'Không tìm thấy dịch vụ dự kiến.',
|
|
1002
1107
|
'validation.extra_line_inactive': 'Dịch vụ dự kiến đã ngừng hoạt động.',
|
|
@@ -1010,12 +1115,12 @@ export const messages = {
|
|
|
1010
1115
|
'menu.app': 'Hospitality',
|
|
1011
1116
|
'menu.operations': 'Operations',
|
|
1012
1117
|
'menu.properties': 'Properties',
|
|
1013
|
-
'menu.rooms': '
|
|
1118
|
+
'menu.rooms': 'Room directory',
|
|
1014
1119
|
'menu.frontDesk': 'Front desk',
|
|
1015
1120
|
'menu.reservations': 'Reservations',
|
|
1016
|
-
'menu.stays': '
|
|
1121
|
+
'menu.stays': 'Guests in house',
|
|
1017
1122
|
'menu.tapeChart': 'Tape chart',
|
|
1018
|
-
'menu.folios': '
|
|
1123
|
+
'menu.folios': 'Guest bills',
|
|
1019
1124
|
'menu.housekeeping': 'Housekeeping',
|
|
1020
1125
|
'menu.cleaningTasks': 'Cleaning tasks',
|
|
1021
1126
|
'menu.housekeepingRooms': 'Room status',
|
|
@@ -1024,22 +1129,25 @@ export const messages = {
|
|
|
1024
1129
|
'menu.content': 'Content & images',
|
|
1025
1130
|
'menu.amenities': 'Amenities',
|
|
1026
1131
|
'menu.policies': 'Cancellation policies',
|
|
1027
|
-
'menu.inventory': '
|
|
1132
|
+
'menu.inventory': 'Availability',
|
|
1028
1133
|
'menu.ratePlans': 'Rate plans',
|
|
1029
1134
|
'menu.services': 'Services & fees',
|
|
1030
1135
|
'menu.nightAudit': 'Night audit',
|
|
1031
1136
|
'menu.compliance': 'Compliance',
|
|
1137
|
+
'menu.payments': 'Payments',
|
|
1138
|
+
'menu.controls': 'Controls',
|
|
1139
|
+
'menu.setup': 'Setup',
|
|
1032
1140
|
'menu.stayNotices': 'Stay notices',
|
|
1033
1141
|
'screen.properties.title': 'Properties',
|
|
1034
1142
|
'screen.properties.empty': 'No properties yet.',
|
|
1035
1143
|
'screen.properties.emptyHint': 'Create the first property to configure room types and operations.',
|
|
1036
1144
|
'property.create.title': 'Create property',
|
|
1037
|
-
'property.create.hint': '
|
|
1145
|
+
'property.create.hint': 'Enter the property’s basic details, address and operating hours.',
|
|
1038
1146
|
'property.detail.kicker': 'Property operating record',
|
|
1039
1147
|
'property.section.information': 'Operating information',
|
|
1040
1148
|
'property.section.informationHint': 'The current address, timezone, check-in/out schedule and default policy.',
|
|
1041
1149
|
'property.section.settings': 'Property settings',
|
|
1042
|
-
'property.section.settingsHint': 'Changes
|
|
1150
|
+
'property.section.settingsHint': 'Changes will be sent to each connected sales channel.',
|
|
1043
1151
|
'property.section.next': 'Related configuration',
|
|
1044
1152
|
'property.section.nextHint': 'Continue with room types, physical rooms, inventory and selling content.',
|
|
1045
1153
|
'property.action.create': 'Create property',
|
|
@@ -1047,6 +1155,8 @@ export const messages = {
|
|
|
1047
1155
|
'property.action.back': 'Back to properties',
|
|
1048
1156
|
'property.field.code': 'Property code',
|
|
1049
1157
|
'property.field.name': 'Internal name',
|
|
1158
|
+
'property.field.branch': 'Operating branch',
|
|
1159
|
+
'property.field.branchHint': 'Optional. The branch must belong to the current company and be active.',
|
|
1050
1160
|
'property.field.publicName': 'Display name',
|
|
1051
1161
|
'property.field.publicNameHint': 'The name guests see on the website and sales channels.',
|
|
1052
1162
|
'property.field.accommodationType': 'Accommodation type',
|
|
@@ -1056,21 +1166,33 @@ export const messages = {
|
|
|
1056
1166
|
'property.field.defaultCheckIn': 'Default check-in time',
|
|
1057
1167
|
'property.field.defaultCheckOut': 'Default check-out time',
|
|
1058
1168
|
'property.field.enforceTimes': 'Enforce check-in / check-out limits',
|
|
1059
|
-
'property.field.enforceTimesHint': '
|
|
1169
|
+
'property.field.enforceTimesHint': 'Staff with the right permission can still handle an exception.',
|
|
1170
|
+
'property.field.allowHourly': 'Sell by the hour',
|
|
1171
|
+
'property.field.allowHourlyHint': 'Let this property take hourly bookings.',
|
|
1172
|
+
'property.field.allowWeekly': 'Sell by the week',
|
|
1173
|
+
'property.field.allowWeeklyHint': 'Weekly long stays bill on a weekly cycle and are direct-channel only.',
|
|
1174
|
+
'property.field.allowMonthly': 'Sell by the month',
|
|
1175
|
+
'property.field.allowMonthlyHint': 'Monthly long stays bill on a monthly cycle and are direct-channel only.',
|
|
1176
|
+
'roomType.field.allowHourly': 'Sell by the hour',
|
|
1177
|
+
'roomType.field.allowHourlyHint': 'Whether this room type takes hourly guests.',
|
|
1178
|
+
'roomType.field.minHourlyHours': 'Minimum hours',
|
|
1179
|
+
'roomType.field.allowWeekly': 'Sell by the week',
|
|
1180
|
+
'roomType.field.allowMonthly': 'Sell by the month',
|
|
1060
1181
|
'property.field.longStayBillOnCheckIn': 'Post the first long-stay period at check-in',
|
|
1061
|
-
'property.field.longStayBillOnCheckInHint': 'This
|
|
1182
|
+
'property.field.longStayBillOnCheckInHint': 'This only records a guest-bill charge; it does not create an invoice or accounting entry.',
|
|
1062
1183
|
'property.field.childrenStayFree': 'Children stay free',
|
|
1063
1184
|
'property.field.minimumGuestAge': 'Minimum primary guest age',
|
|
1064
1185
|
'property.field.defaultCancellationPolicy': 'Default cancellation policy',
|
|
1065
|
-
'property.
|
|
1186
|
+
'property.value.noBranch': 'No branch',
|
|
1187
|
+
'property.field.address': 'Address',
|
|
1066
1188
|
'property.field.description': 'Public description',
|
|
1067
1189
|
'property.field.houseRules': 'House rules',
|
|
1068
1190
|
'property.value.noDefaultPolicy': 'No default policy selected',
|
|
1069
1191
|
'property.metric.buildings': 'Buildings',
|
|
1070
1192
|
'property.feedback.created': 'Property created',
|
|
1071
1193
|
'property.feedback.saved': 'Property settings saved',
|
|
1072
|
-
'property.feedback.savedHint': '
|
|
1073
|
-
'screen.rooms.title': 'Room
|
|
1194
|
+
'property.feedback.savedHint': 'Property details were saved and are ready for connected sales channels.',
|
|
1195
|
+
'screen.rooms.title': 'Room directory',
|
|
1074
1196
|
'screen.rooms.empty': 'This property has no rooms.',
|
|
1075
1197
|
'screen.rooms.emptyHint': 'Create room types, buildings and floors before adding rooms.',
|
|
1076
1198
|
'room.create.title': 'Create physical room',
|
|
@@ -1091,7 +1213,7 @@ export const messages = {
|
|
|
1091
1213
|
'room.field.name': 'Room name / number',
|
|
1092
1214
|
'room.field.building': 'Building',
|
|
1093
1215
|
'room.field.floor': 'Floor',
|
|
1094
|
-
'room.field.floorHint': 'Each option includes its building
|
|
1216
|
+
'room.field.floorHint': 'Each option includes its building so you can choose the correct floor.',
|
|
1095
1217
|
'room.field.capacity': 'Capacity',
|
|
1096
1218
|
'room.field.sequence': 'Sequence',
|
|
1097
1219
|
'room.field.buildingCode': 'Building code',
|
|
@@ -1113,9 +1235,9 @@ export const messages = {
|
|
|
1113
1235
|
'room.section.information': 'Operating information',
|
|
1114
1236
|
'room.section.informationHint': 'The room type, location and current state applied to this physical asset.',
|
|
1115
1237
|
'room.section.settings': 'Room settings',
|
|
1116
|
-
'room.section.settingsHint': '
|
|
1117
|
-
'room.section.lifecycle': '
|
|
1118
|
-
'room.section.lifecycleHint': '
|
|
1238
|
+
'room.section.settingsHint': 'Edit room details here. To change its status, use Room status.',
|
|
1239
|
+
'room.section.lifecycle': 'Room status',
|
|
1240
|
+
'room.section.lifecycleHint': 'Status updates when guests check in or out and when housekeeping starts or completes work.',
|
|
1119
1241
|
'room.empty.prerequisite': 'A room cannot be created yet',
|
|
1120
1242
|
'room.empty.prerequisiteHint': 'Create a property and at least one room type first.',
|
|
1121
1243
|
'room.empty.buildings': 'This property has no buildings.',
|
|
@@ -1130,7 +1252,7 @@ export const messages = {
|
|
|
1130
1252
|
'room.feedback.archivedHint': 'The room is no longer offered to front desk or housekeeping, while its full history remains available.',
|
|
1131
1253
|
'room.feedback.restored': 'Room restored',
|
|
1132
1254
|
'room.feedback.restoredHint': 'The room is available for operations again.',
|
|
1133
|
-
'room.feedback.savedHint': '
|
|
1255
|
+
'room.feedback.savedHint': 'Room details were saved; the number of rooms for sale did not change.',
|
|
1134
1256
|
'building.detail.kicker': 'Building record',
|
|
1135
1257
|
'building.action.save': 'Save building',
|
|
1136
1258
|
'building.action.back': 'Back to room board',
|
|
@@ -1146,7 +1268,7 @@ export const messages = {
|
|
|
1146
1268
|
'building.section.settingsHint': 'Name, code and sequence drive the room board and operating work.',
|
|
1147
1269
|
'building.section.floors': 'Floors in this building',
|
|
1148
1270
|
'building.section.floorsHint': 'An existing floor cannot move to another building.',
|
|
1149
|
-
'building.section.lifecycle': '
|
|
1271
|
+
'building.section.lifecycle': 'Building status',
|
|
1150
1272
|
'building.section.lifecycleHint': 'Archive only after every floor is archived and no active physical room remains in the building.',
|
|
1151
1273
|
'building.empty.floors': 'This building has no floors.',
|
|
1152
1274
|
'building.empty.floorsHint': 'Add a floor from the property room board.',
|
|
@@ -1172,7 +1294,7 @@ export const messages = {
|
|
|
1172
1294
|
'floor.section.settingsHint': 'Name, code and sequence drive the room board and operating work.',
|
|
1173
1295
|
'floor.section.rooms': 'Rooms on this floor',
|
|
1174
1296
|
'floor.section.roomsHint': 'Physical rooms currently assigned directly to this floor.',
|
|
1175
|
-
'floor.section.lifecycle': '
|
|
1297
|
+
'floor.section.lifecycle': 'Floor status',
|
|
1176
1298
|
'floor.section.lifecycleHint': 'Archive only when no active room remains; restoring requires an active building.',
|
|
1177
1299
|
'floor.empty.rooms': 'This floor has no rooms.',
|
|
1178
1300
|
'floor.empty.roomsHint': 'Create or move a room from the property room board.',
|
|
@@ -1191,7 +1313,7 @@ export const messages = {
|
|
|
1191
1313
|
'roomType.section.information': 'Selling information',
|
|
1192
1314
|
'roomType.section.informationHint': 'The property, capacity, fallback rate and cancellation policy currently applied to this room type.',
|
|
1193
1315
|
'roomType.section.settings': 'Room type settings',
|
|
1194
|
-
'roomType.section.settingsHint': '
|
|
1316
|
+
'roomType.section.settingsHint': 'Changes will be sent to each connected sales channel.',
|
|
1195
1317
|
'roomType.section.next': 'Related configuration',
|
|
1196
1318
|
'roomType.section.nextHint': 'Continue with physical rooms, rates, inventory and marketing content.',
|
|
1197
1319
|
'roomType.action.create': 'Create room type',
|
|
@@ -1236,7 +1358,7 @@ export const messages = {
|
|
|
1236
1358
|
'roomType.empty.noPropertyHint': 'Create a property before defining room types.',
|
|
1237
1359
|
'roomType.feedback.created': 'Room type created',
|
|
1238
1360
|
'roomType.feedback.saved': 'Room type saved',
|
|
1239
|
-
'roomType.feedback.savedHint': 'Selling
|
|
1361
|
+
'roomType.feedback.savedHint': 'Selling details were saved and are ready for connected channels.',
|
|
1240
1362
|
'screen.content.title': 'Content & images',
|
|
1241
1363
|
'screen.content.selection': 'Content scope',
|
|
1242
1364
|
'screen.content.selectionHint': 'Select a property or room type to manage its marketing library.',
|
|
@@ -1246,30 +1368,59 @@ export const messages = {
|
|
|
1246
1368
|
'screen.content.noPropertyHint': 'Create a property before adding marketing images.',
|
|
1247
1369
|
'screen.amenities.title': 'Amenity catalogue',
|
|
1248
1370
|
'screen.amenities.empty': 'No amenities yet.',
|
|
1371
|
+
'screen.amenities.create': 'Add an amenity',
|
|
1372
|
+
'screen.amenities.createHint': 'Amenities are shared by properties and room types; the code is unique per company.',
|
|
1373
|
+
'screen.policies.create': 'Add a cancellation policy',
|
|
1374
|
+
'screen.policies.createHint': 'The policy decides how long a guest may cancel free of charge, and what is charged after that.',
|
|
1375
|
+
'action.saveAmenity': 'Save amenity',
|
|
1376
|
+
'action.savePolicy': 'Save policy',
|
|
1377
|
+
'col.category': 'Category',
|
|
1378
|
+
'col.policyType': 'Policy type',
|
|
1379
|
+
'field.sequence': 'Order',
|
|
1380
|
+
'field.description': 'Description',
|
|
1381
|
+
'field.freeCancellationHint': 'Hours before arrival during which the guest may still cancel free.',
|
|
1382
|
+
'field.penaltyHint': 'Percentage of the booking charged when cancelling outside the free window.',
|
|
1249
1383
|
'screen.amenities.emptyHint': 'Create amenities for properties or room types.',
|
|
1250
1384
|
'screen.policies.title': 'Cancellation policies',
|
|
1251
1385
|
'screen.policies.empty': 'No cancellation policies yet.',
|
|
1252
1386
|
'screen.policies.emptyHint': 'Create a policy before assigning it to a property or room type.',
|
|
1253
1387
|
'screen.frontDesk.title': 'Front desk',
|
|
1388
|
+
'screen.frontDesk.setup': 'No property has been created yet.',
|
|
1389
|
+
'screen.frontDesk.setupHint': 'Create the first property, then its room types and rooms, before the desk can take a guest.',
|
|
1254
1390
|
'screen.frontDesk.empty': 'No guest movement needs attention today.',
|
|
1255
1391
|
'screen.frontDesk.emptyHint': 'Today’s arrivals, in-house guests and departures will appear here.',
|
|
1392
|
+
'screen.frontDesk.arrivals': 'Arriving today',
|
|
1393
|
+
'screen.frontDesk.arrivalsEmpty': 'No arrivals today.',
|
|
1394
|
+
'screen.frontDesk.arrivalsEmptyHint': 'Guests booked for today appear here until they are checked in.',
|
|
1395
|
+
'screen.frontDesk.unassigned': 'No room kept',
|
|
1396
|
+
'screen.frontDesk.departures': 'Departing today',
|
|
1397
|
+
'screen.frontDesk.departuresEmpty': 'No departures today.',
|
|
1398
|
+
'screen.frontDesk.departuresEmptyHint': 'Guests due to leave today appear here.',
|
|
1399
|
+
'screen.frontDesk.guestCount': '{count} guests',
|
|
1400
|
+
'screen.frontDesk.overdueDetail': 'Extend the stay or check it out',
|
|
1401
|
+
'screen.frontDesk.overdueClear': 'Nobody is past their hour',
|
|
1256
1402
|
'screen.frontDesk.overdue': 'Overdue departures',
|
|
1257
1403
|
'screen.frontDesk.overdueHint': '{count} stay remains checked in past its scheduled departure. Extend or check it out so room inventory stays accurate.',
|
|
1258
1404
|
'screen.reservations.title': 'Reservations',
|
|
1259
1405
|
'screen.reservations.empty': 'No reservations yet.',
|
|
1260
1406
|
'screen.reservations.emptyHint': 'Direct and OTA bookings are collected here.',
|
|
1261
|
-
'screen.stays.title': '
|
|
1407
|
+
'screen.stays.title': 'Guests in house',
|
|
1262
1408
|
'screen.stays.empty': 'No stay records yet.',
|
|
1263
1409
|
'screen.stays.emptyHint': 'A stay is created with a reservation and follows the physical visit.',
|
|
1264
|
-
'screen.folios.title': '
|
|
1265
|
-
'screen.folios.empty': 'No
|
|
1266
|
-
'screen.folios.emptyHint': 'Room and service charges
|
|
1410
|
+
'screen.folios.title': 'Guest bills',
|
|
1411
|
+
'screen.folios.empty': 'No guest bills yet.',
|
|
1412
|
+
'screen.folios.emptyHint': 'Room and service charges for each guest are collected here.',
|
|
1267
1413
|
'screen.tapeChart.title': 'Tape chart',
|
|
1268
1414
|
'screen.tapeChart.empty': 'This property has no rooms to schedule.',
|
|
1269
1415
|
'screen.tapeChart.emptyHint': 'Create rooms before assigning guests on the operating calendar.',
|
|
1270
1416
|
'screen.tapeChart.corner': 'Room / day',
|
|
1271
1417
|
'screen.tapeChart.unassigned': 'Unassigned',
|
|
1272
1418
|
'screen.tapeChart.unassignedHint': 'Confirmed stays without a physical room assignment',
|
|
1419
|
+
'screen.tapeChart.previous': 'Previous week',
|
|
1420
|
+
'screen.tapeChart.next': 'Next week',
|
|
1421
|
+
'screen.tapeChart.availability': 'See free rooms',
|
|
1422
|
+
'screen.tapeChart.legend': 'Key',
|
|
1423
|
+
'screen.tapeChart.legendHint': 'Colour on the calendar is the state of a stay. Open one to check a guest in, move them or check them out; dragging on the calendar does not change a room.',
|
|
1273
1424
|
'screen.cleaningTasks.title': 'Cleaning tasks',
|
|
1274
1425
|
'screen.cleaningTasks.empty': 'No cleaning task needs attention.',
|
|
1275
1426
|
'screen.cleaningTasks.emptyHint': 'Check-out automatically creates an urgent cleaning task.',
|
|
@@ -1277,12 +1428,12 @@ export const messages = {
|
|
|
1277
1428
|
'housekeeping.detail.kicker': 'Housekeeping work record',
|
|
1278
1429
|
'housekeeping.section.create': 'Create housekeeping work',
|
|
1279
1430
|
'housekeeping.section.createHint': 'Use this for daily cleaning, inspections or maintenance outside the task created automatically at check-out.',
|
|
1280
|
-
'housekeeping.section.queue': '
|
|
1281
|
-
'housekeeping.section.queueHint': '
|
|
1431
|
+
'housekeeping.section.queue': 'Work to do',
|
|
1432
|
+
'housekeeping.section.queueHint': 'Room status updates automatically when work starts or finishes.',
|
|
1282
1433
|
'housekeeping.section.information': 'Task information',
|
|
1283
1434
|
'housekeeping.section.informationHint': 'Room, timestamps, assignee and notes remain available as operational evidence.',
|
|
1284
1435
|
'housekeeping.action.create': 'Create task',
|
|
1285
|
-
'housekeeping.action.back': 'Back to
|
|
1436
|
+
'housekeeping.action.back': 'Back to work list',
|
|
1286
1437
|
'housekeeping.action.start': 'Start work',
|
|
1287
1438
|
'housekeeping.action.startHint': 'Claim the task and mark an available or dirty room as being cleaned.',
|
|
1288
1439
|
'housekeeping.action.complete': 'Complete task',
|
|
@@ -1294,7 +1445,7 @@ export const messages = {
|
|
|
1294
1445
|
'housekeeping.field.startedAt': 'Started at',
|
|
1295
1446
|
'housekeeping.field.doneAt': 'Completed at',
|
|
1296
1447
|
'housekeeping.feedback.created': 'Housekeeping task created',
|
|
1297
|
-
'housekeeping.feedback.createdHint': 'The new task
|
|
1448
|
+
'housekeeping.feedback.createdHint': 'The new task now appears in this property’s work list.',
|
|
1298
1449
|
'housekeeping.feedback.started': 'Task started',
|
|
1299
1450
|
'housekeeping.feedback.startedHint': 'The assignee and start time have been recorded.',
|
|
1300
1451
|
'housekeeping.feedback.completed': 'Task completed',
|
|
@@ -1305,11 +1456,11 @@ export const messages = {
|
|
|
1305
1456
|
'housekeeping.empty.rooms': 'No room is available for task assignment.',
|
|
1306
1457
|
'housekeeping.empty.roomsHint': 'Create rooms in the property before adding housekeeping work.',
|
|
1307
1458
|
'housekeeping.rooms.detail.title': 'Room {code}',
|
|
1308
|
-
'housekeeping.rooms.detail.kicker': 'Room
|
|
1309
|
-
'housekeeping.rooms.section.board': '
|
|
1310
|
-
'housekeeping.rooms.section.boardHint': '
|
|
1459
|
+
'housekeeping.rooms.detail.kicker': 'Room details',
|
|
1460
|
+
'housekeeping.rooms.section.board': 'Current status',
|
|
1461
|
+
'housekeeping.rooms.section.boardHint': 'Cleaning and maintenance status is tracked separately from rooms for sale. The board shows up to 500 rooms for the selected filter.',
|
|
1311
1462
|
'housekeeping.rooms.section.information': 'Room information',
|
|
1312
|
-
'housekeeping.rooms.section.informationHint': '
|
|
1463
|
+
'housekeeping.rooms.section.informationHint': 'Shows the latest location, room type, current stay and notes.',
|
|
1313
1464
|
'housekeeping.rooms.section.tasks': 'Task history',
|
|
1314
1465
|
'housekeeping.rooms.section.tasksHint': 'Shows up to the 20 most recent housekeeping tasks for this room.',
|
|
1315
1466
|
'housekeeping.rooms.metric.openTasks': 'Open tasks',
|
|
@@ -1338,8 +1489,8 @@ export const messages = {
|
|
|
1338
1489
|
'screen.ratePlans.list': 'Rate plans',
|
|
1339
1490
|
'screen.ratePlans.empty': 'No rate plans yet.',
|
|
1340
1491
|
'screen.ratePlans.emptyHint': 'The room type base rate remains the fallback until a default plan exists.',
|
|
1341
|
-
'screen.inventory.title': '
|
|
1342
|
-
'screen.inventory.filters': 'Select an
|
|
1492
|
+
'screen.inventory.title': 'Room availability and selling rules',
|
|
1493
|
+
'screen.inventory.filters': 'Select an availability calendar',
|
|
1343
1494
|
'screen.inventory.dateRange': 'Displayed date range',
|
|
1344
1495
|
'screen.inventory.allotment': 'Sellable allotment',
|
|
1345
1496
|
'screen.inventory.allotmentHint': 'Total rooms cannot be lower than sold plus blocked rooms.',
|
|
@@ -1354,12 +1505,12 @@ export const messages = {
|
|
|
1354
1505
|
'screen.stayNotices.title': 'Stay notices',
|
|
1355
1506
|
'nightAudit.section.selection': 'Property and business date',
|
|
1356
1507
|
'nightAudit.section.run': 'Run the night audit',
|
|
1357
|
-
'nightAudit.section.runHint': 'The
|
|
1508
|
+
'nightAudit.section.runHint': 'The system records per-night services and room charges that are due without creating duplicates.',
|
|
1358
1509
|
'nightAudit.section.history': 'Night audit history',
|
|
1359
|
-
'nightAudit.section.historyHint': 'Each
|
|
1510
|
+
'nightAudit.section.historyHint': 'Each date is closed once; running it again only adds missing charges.',
|
|
1360
1511
|
'nightAudit.field.auditDate': 'Business date',
|
|
1361
1512
|
'nightAudit.action.preview': 'Preview',
|
|
1362
|
-
'nightAudit.action.run': '
|
|
1513
|
+
'nightAudit.action.run': 'Start day close',
|
|
1363
1514
|
'nightAudit.metric.inHouse': 'In-house stays',
|
|
1364
1515
|
'nightAudit.metric.servicesDue': 'Services due',
|
|
1365
1516
|
'nightAudit.metric.rentDue': 'Rent periods due',
|
|
@@ -1368,20 +1519,20 @@ export const messages = {
|
|
|
1368
1519
|
'nightAudit.metric.rent': 'Room rent posted',
|
|
1369
1520
|
'nightAudit.col.date': 'Business date',
|
|
1370
1521
|
'nightAudit.col.attempt': 'Attempt',
|
|
1371
|
-
'nightAudit.state.queued': '
|
|
1522
|
+
'nightAudit.state.queued': 'Waiting',
|
|
1372
1523
|
'nightAudit.state.running': 'Running',
|
|
1373
1524
|
'nightAudit.state.completed': 'Completed',
|
|
1374
1525
|
'nightAudit.state.failed': 'Failed',
|
|
1375
|
-
'nightAudit.feedback.queued': '
|
|
1376
|
-
'nightAudit.feedback.queuedHint': 'The
|
|
1526
|
+
'nightAudit.feedback.queued': 'Day close started',
|
|
1527
|
+
'nightAudit.feedback.queuedHint': 'The system is processing it; refresh this page to see the result.',
|
|
1377
1528
|
'nightAudit.feedback.invalidHint': 'Check the property and business date, then try again.',
|
|
1378
1529
|
'nightAudit.empty.property': 'There is no property to audit.',
|
|
1379
1530
|
'nightAudit.empty.propertyHint': 'Create a property before running end-of-day operations.',
|
|
1380
1531
|
'nightAudit.empty.runs': 'No night audit has run yet.',
|
|
1381
|
-
'nightAudit.empty.runsHint': 'Preview the totals, then
|
|
1382
|
-
'stayNotice.privacy.title': '
|
|
1383
|
-
'stayNotice.privacy.hint': 'Ket shows only the document type and final four digits. Staff
|
|
1384
|
-
'stayNotice.section.queue': 'Work
|
|
1532
|
+
'nightAudit.empty.runsHint': 'Preview the totals, then start the day close.',
|
|
1533
|
+
'stayNotice.privacy.title': 'Full identity details are not stored here',
|
|
1534
|
+
'stayNotice.privacy.hint': 'Ket shows only the document type and final four digits. Staff use the official channel; the system keeps only the time, user and reference code needed for checking.',
|
|
1535
|
+
'stayNotice.section.queue': 'Work to do',
|
|
1385
1536
|
'stayNotice.section.queueHint': 'A record is prepared after check-in. Notice is due by 23:00 that day, or 08:00 the next day when the guest arrives after 23:00.',
|
|
1386
1537
|
'stayNotice.section.selected': 'Selected record',
|
|
1387
1538
|
'stayNotice.section.selectedHint': 'Record submission only after staff have completed it on an official channel and hold verifiable evidence.',
|
|
@@ -1422,7 +1573,7 @@ export const messages = {
|
|
|
1422
1573
|
'stayNotice.value.complete': 'All required data is present',
|
|
1423
1574
|
'stayNotice.value.missing': 'Not available',
|
|
1424
1575
|
'stayNotice.feedback.refreshed': 'Data check requested',
|
|
1425
|
-
'stayNotice.feedback.refreshedHint': 'The
|
|
1576
|
+
'stayNotice.feedback.refreshedHint': 'The system will prepare the record again from current data.',
|
|
1426
1577
|
'stayNotice.feedback.submitted': 'Submission recorded',
|
|
1427
1578
|
'stayNotice.feedback.submittedHint': 'The time, operator, and evidence reference have been retained.',
|
|
1428
1579
|
'stayNotice.feedback.confirmed': 'Completion confirmed',
|
|
@@ -1431,36 +1582,36 @@ export const messages = {
|
|
|
1431
1582
|
'stayNotice.empty.property': 'There is no property for stay-notice operations.',
|
|
1432
1583
|
'stayNotice.empty.propertyHint': 'Create a property before checking guests in.',
|
|
1433
1584
|
'stayNotice.empty.rows': 'No record matches this filter.',
|
|
1434
|
-
'stayNotice.empty.rowsHint': 'Records appear after check-in and
|
|
1435
|
-
'services.metric.fees': '
|
|
1436
|
-
'services.metric.extras': '
|
|
1437
|
-
'services.metric.posted': '
|
|
1438
|
-
'services.metric.postedValue': '
|
|
1585
|
+
'stayNotice.empty.rowsHint': 'Records appear after check-in and system preparation.',
|
|
1586
|
+
'services.metric.fees': 'Fees set up',
|
|
1587
|
+
'services.metric.extras': 'Planned services',
|
|
1588
|
+
'services.metric.posted': 'Charges recorded',
|
|
1589
|
+
'services.metric.postedValue': 'Recorded value',
|
|
1439
1590
|
'services.section.fees': 'Property fees',
|
|
1440
|
-
'services.section.feesHint': '
|
|
1441
|
-
'services.section.intentions': '
|
|
1442
|
-
'services.section.intentionsHint': '
|
|
1443
|
-
'services.section.post': '
|
|
1444
|
-
'services.section.postHint': '
|
|
1445
|
-
'services.section.ledger': '
|
|
1446
|
-
'services.section.ledgerHint': '
|
|
1591
|
+
'services.section.feesHint': 'Set up each fee once so the same amount is used at the hotel and on connected OTA channels.',
|
|
1592
|
+
'services.section.intentions': 'Planned services',
|
|
1593
|
+
'services.section.intentionsHint': 'Choose a service for a booking or stay before the guest uses it.',
|
|
1594
|
+
'services.section.post': 'Record service use',
|
|
1595
|
+
'services.section.postHint': 'Each service use is recorded once and cannot be edited after confirmation.',
|
|
1596
|
+
'services.section.ledger': 'Services used',
|
|
1597
|
+
'services.section.ledgerHint': 'These charges are on the guest bill; invoices and accounting entries are handled separately.',
|
|
1447
1598
|
'services.form.fee': 'Declare a property fee',
|
|
1448
|
-
'services.form.intention': 'Add a service
|
|
1599
|
+
'services.form.intention': 'Add a planned service',
|
|
1449
1600
|
'services.action.saveFee': 'Save fee',
|
|
1450
1601
|
'services.action.addIntention': 'Add service',
|
|
1451
|
-
'services.action.post': '
|
|
1602
|
+
'services.action.post': 'Record use',
|
|
1452
1603
|
'services.col.target': 'Target',
|
|
1453
1604
|
'services.col.service': 'Service',
|
|
1454
1605
|
'services.col.recurrence': 'Recurrence',
|
|
1455
1606
|
'services.col.unitPrice': 'Unit price',
|
|
1456
1607
|
'services.col.materialized': 'Posted',
|
|
1457
|
-
'services.col.folio': '
|
|
1608
|
+
'services.col.folio': 'Guest bill',
|
|
1458
1609
|
'services.field.target': 'Reservation / stay',
|
|
1459
1610
|
'services.field.product': 'Service product',
|
|
1460
1611
|
'services.field.description': 'Description',
|
|
1461
1612
|
'services.field.descriptionHint': 'Leave blank to use the product name',
|
|
1462
1613
|
'services.field.unitPriceHint': 'Leave blank to use the product list price.',
|
|
1463
|
-
'services.field.intention': '
|
|
1614
|
+
'services.field.intention': 'Planned service',
|
|
1464
1615
|
'services.field.serviceDate': 'Service date',
|
|
1465
1616
|
'services.field.serviceDateHint': 'Required for per-night services.',
|
|
1466
1617
|
'services.field.postQuantityHint': 'Required for per-unit services.',
|
|
@@ -1469,15 +1620,15 @@ export const messages = {
|
|
|
1469
1620
|
'services.value.pending': 'Not posted',
|
|
1470
1621
|
'services.value.posted': '{count} posts · {amount}',
|
|
1471
1622
|
'services.empty.fees': 'No property fee has been declared.',
|
|
1472
|
-
'services.empty.feesHint': 'Active fees
|
|
1623
|
+
'services.empty.feesHint': 'Active fees are sent to connected OTA channels.',
|
|
1473
1624
|
'services.empty.catalogue': 'There is not enough data to add a service.',
|
|
1474
1625
|
'services.empty.catalogueHint': 'A sellable product and an active reservation are required.',
|
|
1475
|
-
'services.empty.intentions': 'No service
|
|
1626
|
+
'services.empty.intentions': 'No planned service has been added.',
|
|
1476
1627
|
'services.empty.intentionsHint': 'Add minibar, breakfast, spa or another guest service.',
|
|
1477
1628
|
'services.empty.post': 'No active service is ready to post.',
|
|
1478
|
-
'services.empty.postHint': '
|
|
1479
|
-
'services.empty.ledger': 'No service
|
|
1480
|
-
'services.empty.ledgerHint': 'Charges
|
|
1629
|
+
'services.empty.postHint': 'Add a planned service before recording its use.',
|
|
1630
|
+
'services.empty.ledger': 'No service use has been recorded.',
|
|
1631
|
+
'services.empty.ledgerHint': 'Charges recorded on guest bills appear here.',
|
|
1481
1632
|
'metric.properties': 'Active properties',
|
|
1482
1633
|
'metric.rooms': 'Total rooms',
|
|
1483
1634
|
'metric.available': 'Ready rooms',
|
|
@@ -1487,7 +1638,7 @@ export const messages = {
|
|
|
1487
1638
|
'metric.inHouse': 'In house',
|
|
1488
1639
|
'metric.departures': 'Departures today',
|
|
1489
1640
|
'metric.overdue': 'Overdue departures',
|
|
1490
|
-
'metric.openFolios': 'Open
|
|
1641
|
+
'metric.openFolios': 'Open guest bills',
|
|
1491
1642
|
'metric.inventoryDays': 'Days',
|
|
1492
1643
|
'metric.minimumAvailable': 'Lowest availability',
|
|
1493
1644
|
'metric.sold': 'Room nights sold',
|
|
@@ -1521,7 +1672,7 @@ export const messages = {
|
|
|
1521
1672
|
'content.metadata.group': 'Image descriptions',
|
|
1522
1673
|
'content.action.saveMetadata': 'Save description',
|
|
1523
1674
|
'content.feedback.saved': 'Content updated',
|
|
1524
|
-
'content.feedback.savedHint': 'The change
|
|
1675
|
+
'content.feedback.savedHint': 'The change was saved and will be sent to each connected OTA channel.',
|
|
1525
1676
|
'content.feedback.invalid': 'Content was not updated',
|
|
1526
1677
|
'content.feedback.invalidHint': 'Review the image category and description.',
|
|
1527
1678
|
'col.code': 'Code',
|
|
@@ -1530,6 +1681,7 @@ export const messages = {
|
|
|
1530
1681
|
'col.location': 'Location',
|
|
1531
1682
|
'col.stars': 'Stars',
|
|
1532
1683
|
'col.roomType': 'Room type',
|
|
1684
|
+
'col.stayDates': 'Stay dates',
|
|
1533
1685
|
'col.capacity': 'Capacity',
|
|
1534
1686
|
'col.status': 'Status',
|
|
1535
1687
|
'col.rooms': 'Rooms',
|
|
@@ -1543,10 +1695,13 @@ export const messages = {
|
|
|
1543
1695
|
'col.provider': 'Source',
|
|
1544
1696
|
'col.checkIn': 'Check-in',
|
|
1545
1697
|
'col.checkOut': 'Check-out',
|
|
1698
|
+
'col.arrivalTime': 'Arrival time',
|
|
1699
|
+
'col.departureTime': 'Departure time',
|
|
1546
1700
|
'col.amount': 'Amount',
|
|
1547
1701
|
'col.room': 'Room',
|
|
1702
|
+
'col.action': 'Action',
|
|
1548
1703
|
'col.guests': 'Guests',
|
|
1549
|
-
'col.folio': '
|
|
1704
|
+
'col.folio': 'Guest bill',
|
|
1550
1705
|
'col.stays': 'Stays',
|
|
1551
1706
|
'col.assignee': 'Assignee',
|
|
1552
1707
|
'col.requestedAt': 'Requested at',
|
|
@@ -1621,14 +1776,18 @@ export const messages = {
|
|
|
1621
1776
|
'extraRecurrence.per_unit': 'Per unit',
|
|
1622
1777
|
'chargeState.active': 'Posted',
|
|
1623
1778
|
'chargeState.void': 'Voided',
|
|
1779
|
+
'duration.nightly': '{count} nights',
|
|
1780
|
+
'duration.hourly': '{count} hours',
|
|
1781
|
+
'duration.weekly': '{count} weeks',
|
|
1782
|
+
'duration.monthly': '{count} months',
|
|
1624
1783
|
'bookingType.nightly': 'Nightly',
|
|
1625
1784
|
'bookingType.hourly': 'Hourly',
|
|
1626
1785
|
'bookingType.weekly': 'Weekly',
|
|
1627
1786
|
'bookingType.monthly': 'Monthly',
|
|
1628
1787
|
'reservation.feedback.saved': 'Reservation confirmed',
|
|
1629
|
-
'reservation.feedback.savedHint': 'The reservation, stay,
|
|
1788
|
+
'reservation.feedback.savedHint': 'The reservation, stay, guest bill and room availability were updated.',
|
|
1630
1789
|
'reservation.feedback.quoted': 'Rate and availability checked',
|
|
1631
|
-
'reservation.feedback.quotedHint': '
|
|
1790
|
+
'reservation.feedback.quotedHint': 'Rates and room availability may change; the system checks them again at confirmation.',
|
|
1632
1791
|
'reservation.feedback.invalidHint': 'Review the guest, dates, rate, and sales restrictions shown below.',
|
|
1633
1792
|
'reservation.feedback.checkedIn': 'Guest checked in',
|
|
1634
1793
|
'reservation.feedback.checkedInHint': 'The room is assigned, the stay is open, and the stay notice is being prepared.',
|
|
@@ -1639,9 +1798,9 @@ export const messages = {
|
|
|
1639
1798
|
'reservation.feedback.cancelled': 'Reservation cancelled',
|
|
1640
1799
|
'reservation.feedback.cancelledHint': 'Room inventory was released and unfinished charges were voided.',
|
|
1641
1800
|
'reservation.feedback.amended': 'Reservation updated',
|
|
1642
|
-
'reservation.feedback.amendedHint': 'The stay
|
|
1801
|
+
'reservation.feedback.amendedHint': 'The stay dates, room availability, lead guest and room charge were updated.',
|
|
1643
1802
|
'reservation.feedback.departureAdjusted': 'Departure updated',
|
|
1644
|
-
'reservation.feedback.departureAdjustedHint': 'The stay
|
|
1803
|
+
'reservation.feedback.departureAdjustedHint': 'The stay dates, room availability and room charge were updated.',
|
|
1645
1804
|
'reservation.feedback.noShow': 'Guest marked as no-show',
|
|
1646
1805
|
'reservation.feedback.noShowHint': 'Inventory was released, the stay was closed, and existing charges were retained for reconciliation.',
|
|
1647
1806
|
'reservation.field.property': 'Property',
|
|
@@ -1656,7 +1815,7 @@ export const messages = {
|
|
|
1656
1815
|
'reservation.field.rateHint': 'Leave empty to use the active default rate.',
|
|
1657
1816
|
'reservation.field.room': 'Physical room',
|
|
1658
1817
|
'reservation.field.billingMode': 'Billing mode',
|
|
1659
|
-
'reservation.field.folio': '
|
|
1818
|
+
'reservation.field.folio': 'Guest bill',
|
|
1660
1819
|
'reservation.field.cancelReason': 'Cancellation reason',
|
|
1661
1820
|
'reservation.field.cancelReasonHint': 'Keep a reason for front desk and sales follow-up.',
|
|
1662
1821
|
'reservation.field.noShowReason': 'No-show note',
|
|
@@ -1664,10 +1823,16 @@ export const messages = {
|
|
|
1664
1823
|
'reservation.value.selectGuest': 'Select a guest',
|
|
1665
1824
|
'reservation.value.unassigned': 'Not assigned',
|
|
1666
1825
|
'reservation.action.quote': 'Check rate and rooms',
|
|
1826
|
+
'reservation.action.new': 'New reservation',
|
|
1667
1827
|
'reservation.action.create': 'Confirm reservation',
|
|
1668
1828
|
'reservation.action.back': 'Back to reservations',
|
|
1669
1829
|
'reservation.action.checkIn': 'Check in',
|
|
1670
1830
|
'reservation.action.checkInHint': 'Select a ready room matching the booked type, then confirm arrival.',
|
|
1831
|
+
'reservation.action.holdRoom': 'Keep a room',
|
|
1832
|
+
'reservation.action.holdRoomChange': 'Change the room kept',
|
|
1833
|
+
'reservation.action.holdRoomHint': 'Choose the room now. It stays sellable on other nights; only these stay dates are taken.',
|
|
1834
|
+
'reservation.action.holdRoomKept': 'Room {room} is being kept for this guest.',
|
|
1835
|
+
'reservation.action.releaseRoomHold': 'Let the room go',
|
|
1671
1836
|
'reservation.action.checkOut': 'Check out',
|
|
1672
1837
|
'reservation.action.checkOutHint': 'Close the stay, move the room to awaiting service, and create the housekeeping task.',
|
|
1673
1838
|
'reservation.action.adjustDeparture': 'Adjust departure',
|
|
@@ -1681,13 +1846,13 @@ export const messages = {
|
|
|
1681
1846
|
'reservation.detail.title': 'Reservation {code}',
|
|
1682
1847
|
'reservation.detail.kicker': 'Reservation record',
|
|
1683
1848
|
'reservation.detail.stay': 'Stay information',
|
|
1684
|
-
'reservation.detail.stayHint': 'Sales, guest, room
|
|
1849
|
+
'reservation.detail.stayHint': 'Sales, guest, room and guest-bill details for this reservation.',
|
|
1685
1850
|
'reservation.section.intake': 'Direct reservation intake',
|
|
1686
1851
|
'reservation.section.intakeHint': 'Nightly, weekly, and monthly bookings are supported. Hourly booking will open with slot inventory.',
|
|
1687
1852
|
'reservation.section.quote': 'Quote ready',
|
|
1688
|
-
'reservation.section.quoteHint': 'Confirmation
|
|
1853
|
+
'reservation.section.quoteHint': 'Confirmation checks selling rules and room availability again to prevent overselling.',
|
|
1689
1854
|
'reservation.section.list': 'Reservation list',
|
|
1690
|
-
'reservation.section.listHint': 'Direct and OTA bookings
|
|
1855
|
+
'reservation.section.listHint': 'Direct and OTA bookings appear together in this list.',
|
|
1691
1856
|
'reservation.quote.rate': 'Applied rate',
|
|
1692
1857
|
'reservation.quote.quantity': 'Billing periods',
|
|
1693
1858
|
'reservation.quote.availability': 'Minimum rooms left',
|
|
@@ -1760,27 +1925,27 @@ export const messages = {
|
|
|
1760
1925
|
'stay.empty.availableRoomsHint': 'Review room status or finish housekeeping before moving the guest.',
|
|
1761
1926
|
'stay.value.noLinkedPartner': 'No linked contact',
|
|
1762
1927
|
'stay.validation.moveRequired': 'Select a destination room and enter the move reason.',
|
|
1763
|
-
'folio.detail.title': '
|
|
1764
|
-
'folio.detail.kicker': '
|
|
1765
|
-
'folio.action.back': 'Back to
|
|
1928
|
+
'folio.detail.title': 'Guest bill {code}',
|
|
1929
|
+
'folio.detail.kicker': 'Guest charges',
|
|
1930
|
+
'folio.action.back': 'Back to guest bills',
|
|
1766
1931
|
'folio.action.postCharge': 'Post charge',
|
|
1767
1932
|
'folio.action.voidCharge': 'Void charge',
|
|
1768
1933
|
'folio.feedback.chargePosted': 'Charge posted',
|
|
1769
|
-
'folio.feedback.chargePostedHint': 'The
|
|
1934
|
+
'folio.feedback.chargePostedHint': 'The guest-bill total was updated.',
|
|
1770
1935
|
'folio.feedback.chargeVoided': 'Charge voided',
|
|
1771
|
-
'folio.feedback.chargeVoidedHint': 'The original
|
|
1772
|
-
'folio.notice.operational': '
|
|
1773
|
-
'folio.notice.operationalHint': 'These
|
|
1936
|
+
'folio.feedback.chargeVoidedHint': 'The original charge remains in history and the guest-bill total was adjusted.',
|
|
1937
|
+
'folio.notice.operational': 'Not an invoice yet',
|
|
1938
|
+
'folio.notice.operationalHint': 'These are charges during the stay, not payments, invoices or accounting entries.',
|
|
1774
1939
|
'folio.metric.activeTotal': 'Active total',
|
|
1775
1940
|
'folio.metric.activeCharges': 'Active charges',
|
|
1776
|
-
'folio.section.information': '
|
|
1777
|
-
'folio.section.informationHint': 'Payer, opening time
|
|
1941
|
+
'folio.section.information': 'Guest-bill information',
|
|
1942
|
+
'folio.section.informationHint': 'Payer, opening time and current status.',
|
|
1778
1943
|
'folio.section.charges': 'Charges',
|
|
1779
|
-
'folio.section.chargesHint': 'Room, service
|
|
1944
|
+
'folio.section.chargesHint': 'Room, service and discount charges are listed separately for easier review.',
|
|
1780
1945
|
'folio.section.correction': 'Correct an error',
|
|
1781
|
-
'folio.section.correctionHint': 'Void the incorrect
|
|
1946
|
+
'folio.section.correctionHint': 'Void the incorrect charge and enter a reason; the original stays in history.',
|
|
1782
1947
|
'folio.section.stays': 'Related stays',
|
|
1783
|
-
'folio.section.staysHint': 'One
|
|
1948
|
+
'folio.section.staysHint': 'One bill may include one or more stays for the same payer.',
|
|
1784
1949
|
'folio.field.openedAt': 'Opened at',
|
|
1785
1950
|
'folio.field.closedAt': 'Closed at',
|
|
1786
1951
|
'folio.field.charge': 'Charge to void',
|
|
@@ -1796,8 +1961,8 @@ export const messages = {
|
|
|
1796
1961
|
'folio.empty.charges': 'No charges yet.',
|
|
1797
1962
|
'folio.empty.chargesHint': 'Room and service charges appear here after posting.',
|
|
1798
1963
|
'folio.empty.stays': 'No related stay yet.',
|
|
1799
|
-
'folio.empty.staysHint': 'A stay is
|
|
1800
|
-
'folio.value.noStay': 'Whole
|
|
1964
|
+
'folio.empty.staysHint': 'A stay is added to the bill when its reservation is created.',
|
|
1965
|
+
'folio.value.noStay': 'Whole guest bill',
|
|
1801
1966
|
'mealPlan.RO': 'Room only',
|
|
1802
1967
|
'mealPlan.BB': 'Bed & breakfast',
|
|
1803
1968
|
'mealPlan.HB': 'Half board',
|
|
@@ -1823,12 +1988,13 @@ export const messages = {
|
|
|
1823
1988
|
'action.updateAllotment': 'Update allotment',
|
|
1824
1989
|
'action.updateRestrictions': 'Update restrictions',
|
|
1825
1990
|
'feedback.saved': 'Changes saved',
|
|
1826
|
-
'feedback.savedHint': 'The sales calendar was updated
|
|
1991
|
+
'feedback.savedHint': 'The sales calendar was updated.',
|
|
1827
1992
|
'feedback.invalid': 'Changes were not saved',
|
|
1828
1993
|
'feedback.invalidHint': 'Review the values and the capacity already committed to bookings.',
|
|
1829
1994
|
'billing.upfront': 'Upfront',
|
|
1830
1995
|
'billing.recurring': 'Recurring',
|
|
1831
1996
|
'provider.direct': 'Direct',
|
|
1997
|
+
'provider.website': 'Website',
|
|
1832
1998
|
'provider.booking': 'Booking.com',
|
|
1833
1999
|
'provider.agoda': 'Agoda',
|
|
1834
2000
|
'provider.expedia': 'Expedia',
|
|
@@ -1845,6 +2011,7 @@ export const messages = {
|
|
|
1845
2011
|
'stayState.checked_out': 'Checked out',
|
|
1846
2012
|
'stayState.cancelled': 'Cancelled',
|
|
1847
2013
|
'stayState.no_show': 'No-show',
|
|
2014
|
+
'stayState.overdue': 'Past checkout',
|
|
1848
2015
|
'folioState.draft': 'Draft',
|
|
1849
2016
|
'folioState.open': 'Open',
|
|
1850
2017
|
'folioState.closed': 'Closed',
|
|
@@ -1856,6 +2023,7 @@ export const messages = {
|
|
|
1856
2023
|
'charge.spa': 'Spa',
|
|
1857
2024
|
'charge.restaurant': 'Restaurant',
|
|
1858
2025
|
'charge.service': 'Service',
|
|
2026
|
+
'charge.cancellation': 'Cancellation fee',
|
|
1859
2027
|
'charge.discount': 'Discount',
|
|
1860
2028
|
'document.cccd': 'Citizen identity card',
|
|
1861
2029
|
'document.cmnd': 'Identity card',
|
|
@@ -1899,6 +2067,27 @@ export const messages = {
|
|
|
1899
2067
|
'validation.bed_type': 'Bed type is invalid.',
|
|
1900
2068
|
'validation.cancellation_policy_type': 'Cancellation policy type is invalid.',
|
|
1901
2069
|
'validation.contact_type': 'Contact type is invalid.',
|
|
2070
|
+
'error.propertyNotFound': 'No active property was found in the current company.',
|
|
2071
|
+
'error.roomTypeNotFound': 'No active, published room type was found.',
|
|
2072
|
+
'error.propertyMismatch': 'The room type does not belong to the selected property.',
|
|
2073
|
+
'error.capacityExceeded': 'The guest count exceeds the capacity of the requested rooms.',
|
|
2074
|
+
'error.invalidStayDates': 'The check-in and check-out dates are invalid.',
|
|
2075
|
+
'error.pastStayDate': 'A reservation cannot start in the past.',
|
|
2076
|
+
'error.bookingHorizonExceeded': 'Reservations can be made at most {days} days ahead.',
|
|
2077
|
+
'error.stayLengthExceeded': 'An online reservation cannot exceed {nights} nights.',
|
|
2078
|
+
'error.invalidQuantity': 'Room quantity is outside the allowed range of up to {maximum}.',
|
|
2079
|
+
'error.invalidGuestCount': 'The adult, child or infant count is invalid.',
|
|
2080
|
+
'error.inventoryUnavailable': 'There is not enough inventory for the complete stay.',
|
|
2081
|
+
'error.ratePlanUnavailable': 'The selected rate plan is no longer available.',
|
|
2082
|
+
'error.stopSell': 'Sales are stopped during the selected stay.',
|
|
2083
|
+
'error.closedToArrival': 'Arrival is closed on the selected check-in date.',
|
|
2084
|
+
'error.closedToDeparture': 'Departure is closed on the selected check-out date.',
|
|
2085
|
+
'error.minimumStay': 'The rate or sales restriction requires at least {required} nights.',
|
|
2086
|
+
'error.maximumStay': 'The rate or sales restriction allows at most {maximum} nights.',
|
|
2087
|
+
'error.requestConflict': 'The request key was already used for a different reservation.',
|
|
2088
|
+
'error.partnerNotFound': 'The customer record was not found in the current company.',
|
|
2089
|
+
'error.reservationNotOwned': 'No reservation owned by this customer was found.',
|
|
2090
|
+
'error.cancellationNotAllowed': 'This reservation is no longer eligible for online cancellation.',
|
|
1902
2091
|
'validation.property_missing': 'Property was not found.',
|
|
1903
2092
|
'validation.property_archived': 'The property is archived; restore it first.',
|
|
1904
2093
|
'validation.building_missing': 'Building was not found.',
|
|
@@ -1907,6 +2096,8 @@ export const messages = {
|
|
|
1907
2096
|
'validation.room_type_archived': 'The room type is archived; restore it first.',
|
|
1908
2097
|
'validation.room_missing': 'Room was not found.',
|
|
1909
2098
|
'validation.policy_missing': 'Cancellation policy was not found.',
|
|
2099
|
+
'validation.branch_company_mismatch': 'The branch does not belong to the current company.',
|
|
2100
|
+
'validation.branch_archived': 'The branch is archived.',
|
|
1910
2101
|
'validation.amenity_missing': 'Amenity was not found.',
|
|
1911
2102
|
'validation.amenity_category_missing': 'Amenity category was not found.',
|
|
1912
2103
|
'validation.target_missing': 'Assignment target was not found.',
|
|
@@ -1939,10 +2130,21 @@ export const messages = {
|
|
|
1939
2130
|
'validation.stay_cannot_adjust_departure': 'Departure can only be adjusted while the guest is in house.',
|
|
1940
2131
|
'validation.departure_not_future': 'The new departure must be in the future.',
|
|
1941
2132
|
'validation.stay_cannot_check_in': 'The stay cannot be checked in from its current state.',
|
|
1942
|
-
'validation.early_check_in': 'The property check-in time has not been reached.',
|
|
2133
|
+
'validation.early_check_in': 'The property check-in time has not been reached. Give a reason to check in early.',
|
|
2134
|
+
'validation.late_check_out': 'The property check-out time has passed. Give a reason to check out late.',
|
|
2135
|
+
'validation.property_booking_type_closed': 'The property does not sell this stay type.',
|
|
2136
|
+
'validation.room_type_booking_type_closed': 'The room type does not sell this stay type.',
|
|
2137
|
+
'validation.long_stay_direct_only': 'Long stays are accepted on the direct channel only.',
|
|
2138
|
+
'validation.hourly_minimum_hours': 'The room type requires at least {count} hours.',
|
|
2139
|
+
'validation.no_availability_hourly': 'No room is free for the selected hours.',
|
|
2140
|
+
'validation.room_archive_would_oversell': 'The room cannot be archived: {date} already has {committed} rooms sold against {total}.',
|
|
2141
|
+
'validation.room_type_change_not_allowed': 'Moving to another room type must be allowed explicitly.',
|
|
2142
|
+
'validation.inventory_total_conflict': 'A manual total and following the physical room count cannot both be requested.',
|
|
1943
2143
|
'validation.no_available_room': 'No ready room remains for the reserved room type.',
|
|
1944
2144
|
'validation.room_type_mismatch': 'The room is not of the reserved room type.',
|
|
1945
2145
|
'validation.room_not_available': 'The room is no longer ready.',
|
|
2146
|
+
'validation.room_already_held': 'This room is kept for another stay over the same dates.',
|
|
2147
|
+
'validation.stay_cannot_hold_room': 'A room can only be kept for a stay that has not checked in.',
|
|
1946
2148
|
'validation.transition_conflict': 'The record changed; reload it and try again.',
|
|
1947
2149
|
'validation.cleaning_type': 'The cleaning task type is invalid.',
|
|
1948
2150
|
'validation.cleaning_priority': 'The cleaning priority is invalid.',
|
|
@@ -1957,13 +2159,15 @@ export const messages = {
|
|
|
1957
2159
|
'validation.stay_cannot_check_out': 'The stay cannot be checked out from its current state.',
|
|
1958
2160
|
'validation.primary_guest_mismatch': 'The primary guest must match the booking contact.',
|
|
1959
2161
|
'validation.primary_guest_unique': 'The stay already has a primary guest.',
|
|
1960
|
-
'validation.folio_missing': '
|
|
1961
|
-
'validation.folio_not_open': 'The
|
|
1962
|
-
'validation.folio_mismatch': 'The charge does not belong to this stay
|
|
2162
|
+
'validation.folio_missing': 'The guest bill could not be found.',
|
|
2163
|
+
'validation.folio_not_open': 'The guest bill is closed.',
|
|
2164
|
+
'validation.folio_mismatch': 'The charge does not belong to this stay’s guest bill.',
|
|
1963
2165
|
'validation.room_charge_missing': 'The active room charge required for this update was not found.',
|
|
1964
2166
|
'validation.charge_missing': 'Charge was not found.',
|
|
1965
2167
|
'validation.charge_not_active': 'The charge is no longer active and cannot be voided.',
|
|
1966
2168
|
'validation.charge_type': 'Charge type is invalid.',
|
|
2169
|
+
'validation.charge_id_reused': 'The charge id was already used for different content.',
|
|
2170
|
+
'validation.charge_source_reused': 'This charge reference was already used for different details.',
|
|
1967
2171
|
'validation.document_type': 'Document type is invalid.',
|
|
1968
2172
|
'validation.authentication_required': 'Sign in to record this action.',
|
|
1969
2173
|
'validation.stay_notice_missing': 'The stay-notice record was not found.',
|
|
@@ -1979,7 +2183,7 @@ export const messages = {
|
|
|
1979
2183
|
'validation.audit_future': 'A future business date cannot be audited.',
|
|
1980
2184
|
'validation.date_range_order': 'The end date must be on or after the start date.',
|
|
1981
2185
|
'validation.inventory_horizon': 'Each operation may cover at most {count} days.',
|
|
1982
|
-
'validation.ledger_missing': 'No
|
|
2186
|
+
'validation.ledger_missing': 'No room availability was found for {date}.',
|
|
1983
2187
|
'validation.no_availability': 'No availability on {date}: {available} remains and {required} is required.',
|
|
1984
2188
|
'validation.inventory_change_required': 'Enter either a total or a blocked-room count.',
|
|
1985
2189
|
'validation.inventory_capacity': '{date} already has {committed} committed rooms, above total {total}.',
|
|
@@ -2001,11 +2205,17 @@ export const messages = {
|
|
|
2001
2205
|
'validation.product_template_missing': 'Service product details were not found.',
|
|
2002
2206
|
'validation.product_not_saleable': 'This product is no longer saleable.',
|
|
2003
2207
|
'validation.product_uom_mismatch': 'The unit of measure is not available for this product.',
|
|
2208
|
+
'validation.product_required': 'Select a product before choosing a unit or stock option.',
|
|
2209
|
+
'validation.charge_fulfillment_kind': 'The way this service is supplied is invalid.',
|
|
2210
|
+
'validation.minibar_product_required': 'A minibar charge must reference a goods product.',
|
|
2211
|
+
'validation.minibar_goods_required': 'The minibar product must be a goods product.',
|
|
2212
|
+
'validation.minibar_fulfillment_required': 'A minibar charge can only be recorded after stock confirms the goods were issued.',
|
|
2213
|
+
'validation.external_fulfillment_required': 'Stock must be issued for this service before it can be added to the guest bill.',
|
|
2004
2214
|
'validation.extra_recurrence': 'Service recurrence is invalid.',
|
|
2005
|
-
'validation.extra_line_missing': '
|
|
2006
|
-
'validation.extra_line_inactive': '
|
|
2215
|
+
'validation.extra_line_missing': 'The planned service could not be found.',
|
|
2216
|
+
'validation.extra_line_inactive': 'The planned service is no longer active.',
|
|
2007
2217
|
'validation.extra_service_date': 'Service date must be inside the stay period.',
|
|
2008
|
-
'validation.extra_line_materialized': 'A service cannot be edited after
|
|
2218
|
+
'validation.extra_line_materialized': 'A service cannot be edited after its use is recorded.',
|
|
2009
2219
|
},
|
|
2010
2220
|
};
|
|
2011
2221
|
//# sourceMappingURL=messages.js.map
|