@ketvietlab/ketsuite 0.1.2 → 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/functions.d.ts.map +1 -1
- package/dist/modules/hospitality_core/functions.js +114 -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 +3 -2
- 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 +383 -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 +47 -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/routes.d.ts.map +1 -1
- package/dist/modules/hospitality_core/routes.js +503 -106
- 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.map +1 -1
- package/dist/modules/product_backend/client/media-upload-view.mjs +1 -0
- package/dist/modules/product_backend/client/media-upload-view.mjs.map +1 -1
- package/dist/modules/product_backend/client/product.css +964 -0
- 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 +203 -14
- package/dist/modules/product_backend/index.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 +502 -196
- 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.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 -773
- package/dist/modules/hospitality_core/screens.d.ts.map +0 -1
- package/dist/modules/hospitality_core/screens.js +0 -4152
- 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
|
@@ -1,1661 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Vietnam's statutory chart effective for financial years beginning on or after
|
|
3
|
-
* 2026-01-01. Codes and Vietnamese names follow Appendix II of Circular
|
|
4
|
-
* 99/2025/TT-BTC. Odoo 19's leaf-account mapping is used as an implementation
|
|
5
|
-
* cross-check; KetSuite deliberately corrects 411121 to a liability account.
|
|
6
|
-
*/
|
|
7
|
-
export const TT99_ACCOUNTS = [
|
|
8
|
-
{
|
|
9
|
-
code: '111',
|
|
10
|
-
name: 'Tiền mặt',
|
|
11
|
-
nameEn: 'Cash',
|
|
12
|
-
accountType: 'asset_cash',
|
|
13
|
-
reconcile: false,
|
|
14
|
-
},
|
|
15
|
-
{
|
|
16
|
-
code: '112',
|
|
17
|
-
name: 'Tiền gửi không kỳ hạn',
|
|
18
|
-
nameEn: 'Demand Deposit',
|
|
19
|
-
accountType: 'asset_cash',
|
|
20
|
-
reconcile: false,
|
|
21
|
-
},
|
|
22
|
-
{
|
|
23
|
-
code: '1121',
|
|
24
|
-
name: 'Tài khoản tạm thời ngân hàng',
|
|
25
|
-
nameEn: 'Bank Suspense Account',
|
|
26
|
-
accountType: 'asset_current',
|
|
27
|
-
reconcile: false,
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
code: '113',
|
|
31
|
-
name: 'Tiền đang chuyển',
|
|
32
|
-
nameEn: 'Money in transit',
|
|
33
|
-
accountType: 'asset_cash',
|
|
34
|
-
reconcile: false,
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
code: '1131',
|
|
38
|
-
name: 'Biên lai chưa thanh toán',
|
|
39
|
-
nameEn: 'Outstanding Receipts',
|
|
40
|
-
accountType: 'asset_current',
|
|
41
|
-
reconcile: true,
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
code: '1132',
|
|
45
|
-
name: 'Khoản chi chưa thanh toán',
|
|
46
|
-
nameEn: 'Outstanding Payments',
|
|
47
|
-
accountType: 'asset_current',
|
|
48
|
-
reconcile: true,
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
code: '121',
|
|
52
|
-
name: 'Chứng khoán kinh doanh',
|
|
53
|
-
nameEn: 'Trading Securities',
|
|
54
|
-
accountType: 'asset_current',
|
|
55
|
-
reconcile: false,
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
code: '12811',
|
|
59
|
-
name: 'Tiền gửi có kỳ hạn - dưới 3 tháng',
|
|
60
|
-
nameEn: 'Time deposits - less than 3 months',
|
|
61
|
-
accountType: 'asset_current',
|
|
62
|
-
reconcile: false,
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
code: '12812',
|
|
66
|
-
name: 'Tiền gửi có kỳ hạn - 3-12 tháng',
|
|
67
|
-
nameEn: 'Time deposits - 3-12 months',
|
|
68
|
-
accountType: 'asset_current',
|
|
69
|
-
reconcile: false,
|
|
70
|
-
},
|
|
71
|
-
{
|
|
72
|
-
code: '12813',
|
|
73
|
-
name: 'Tiền gửi có kỳ hạn - dài hạn',
|
|
74
|
-
nameEn: 'Time deposits - long term',
|
|
75
|
-
accountType: 'asset_current',
|
|
76
|
-
reconcile: false,
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
code: '12822',
|
|
80
|
-
name: 'Trái phiếu - 3-12 tháng',
|
|
81
|
-
nameEn: 'Bonds - 3-12 months',
|
|
82
|
-
accountType: 'asset_current',
|
|
83
|
-
reconcile: false,
|
|
84
|
-
},
|
|
85
|
-
{
|
|
86
|
-
code: '12823',
|
|
87
|
-
name: 'Trái phiếu - dài hạn',
|
|
88
|
-
nameEn: 'Bonds - long term',
|
|
89
|
-
accountType: 'asset_current',
|
|
90
|
-
reconcile: false,
|
|
91
|
-
},
|
|
92
|
-
{
|
|
93
|
-
code: '12831',
|
|
94
|
-
name: 'Cho vay - ngắn hạn',
|
|
95
|
-
nameEn: 'Loans - short term',
|
|
96
|
-
accountType: 'asset_current',
|
|
97
|
-
reconcile: false,
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
code: '12832',
|
|
101
|
-
name: 'Cho vay - dài hạn',
|
|
102
|
-
nameEn: 'Loans - long term',
|
|
103
|
-
accountType: 'asset_current',
|
|
104
|
-
reconcile: false,
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
code: '12881',
|
|
108
|
-
name: 'Các khoản đầu tư khác nắm giữ đến ngày đáo hạn - dưới 3 tháng',
|
|
109
|
-
nameEn: 'Other investments held to maturity - less than 3 months',
|
|
110
|
-
accountType: 'asset_current',
|
|
111
|
-
reconcile: false,
|
|
112
|
-
},
|
|
113
|
-
{
|
|
114
|
-
code: '12882',
|
|
115
|
-
name: 'Các khoản đầu tư khác nắm giữ đến ngày đáo hạn - 3-12 tháng',
|
|
116
|
-
nameEn: 'Other investments held to maturity - 3-12 months',
|
|
117
|
-
accountType: 'asset_current',
|
|
118
|
-
reconcile: false,
|
|
119
|
-
},
|
|
120
|
-
{
|
|
121
|
-
code: '12883',
|
|
122
|
-
name: 'Các khoản đầu tư khác nắm giữ đến ngày đáo hạn - dài hạn',
|
|
123
|
-
nameEn: 'Other investments held to maturity - long term',
|
|
124
|
-
accountType: 'asset_current',
|
|
125
|
-
reconcile: false,
|
|
126
|
-
},
|
|
127
|
-
{
|
|
128
|
-
code: '1311',
|
|
129
|
-
name: 'Phải thu của khách hàng - ngắn hạn',
|
|
130
|
-
nameEn: 'Trade receivables - short term',
|
|
131
|
-
accountType: 'asset_receivable',
|
|
132
|
-
reconcile: true,
|
|
133
|
-
},
|
|
134
|
-
{
|
|
135
|
-
code: '1312',
|
|
136
|
-
name: 'Phải thu của khách hàng - dài hạn',
|
|
137
|
-
nameEn: 'Trade receivables - long term',
|
|
138
|
-
accountType: 'asset_receivable',
|
|
139
|
-
reconcile: true,
|
|
140
|
-
},
|
|
141
|
-
{
|
|
142
|
-
code: '1331',
|
|
143
|
-
name: 'Thuế GTGT HHDV mua vào',
|
|
144
|
-
nameEn: 'Deductible VAT of goods and services',
|
|
145
|
-
accountType: 'asset_current',
|
|
146
|
-
reconcile: false,
|
|
147
|
-
},
|
|
148
|
-
{
|
|
149
|
-
code: '1332',
|
|
150
|
-
name: 'Thuế GTGT được khấu trừ của tài sản cố định',
|
|
151
|
-
nameEn: 'Deductible VAT of fixed assets',
|
|
152
|
-
accountType: 'asset_current',
|
|
153
|
-
reconcile: false,
|
|
154
|
-
},
|
|
155
|
-
{
|
|
156
|
-
code: '1361',
|
|
157
|
-
name: 'Vốn kinh doanh ở các đơn vị trực thuộc',
|
|
158
|
-
nameEn: 'Working capital provided to sub-units',
|
|
159
|
-
accountType: 'asset_receivable',
|
|
160
|
-
reconcile: true,
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
code: '13621',
|
|
164
|
-
name: 'Phải thu nội bộ về chênh lệch tỷ giá - ngắn hạn',
|
|
165
|
-
nameEn: 'Internal receivables on foreign exchange difference - short term',
|
|
166
|
-
accountType: 'asset_receivable',
|
|
167
|
-
reconcile: true,
|
|
168
|
-
},
|
|
169
|
-
{
|
|
170
|
-
code: '13622',
|
|
171
|
-
name: 'Phải thu nội bộ về chênh lệch tỷ giá - dài hạn',
|
|
172
|
-
nameEn: 'Internal receivables on foreign exchange difference - long term',
|
|
173
|
-
accountType: 'asset_receivable',
|
|
174
|
-
reconcile: true,
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
code: '13631',
|
|
178
|
-
name: 'Phải thu nội bộ về chi phí đi vay đủ điều kiện được vốn hoá - ngắn hạn',
|
|
179
|
-
nameEn: 'Internal receivables on borrowing costs eligible for capitalization - short term',
|
|
180
|
-
accountType: 'asset_receivable',
|
|
181
|
-
reconcile: true,
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
code: '13632',
|
|
185
|
-
name: 'Phải thu nội bộ về chi phí đi vay đủ điều kiện được vốn hoá - dài hạn',
|
|
186
|
-
nameEn: 'Internal receivables on borrowing costs eligible for capitalization - long term',
|
|
187
|
-
accountType: 'asset_receivable',
|
|
188
|
-
reconcile: true,
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
code: '13681',
|
|
192
|
-
name: 'Phải thu nội bộ khác - ngắn hạn',
|
|
193
|
-
nameEn: 'Other internal receivables - short term',
|
|
194
|
-
accountType: 'asset_receivable',
|
|
195
|
-
reconcile: true,
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
code: '13682',
|
|
199
|
-
name: 'Phải thu nội bộ khác - dài hạn',
|
|
200
|
-
nameEn: 'Other internal receivables - long term',
|
|
201
|
-
accountType: 'asset_receivable',
|
|
202
|
-
reconcile: true,
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
code: '13811',
|
|
206
|
-
name: 'Tài sản thiếu chờ xử lý - ngắn hạn',
|
|
207
|
-
nameEn: 'Shortage of assets awaiting resolution - short term',
|
|
208
|
-
accountType: 'asset_receivable',
|
|
209
|
-
reconcile: true,
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
code: '13812',
|
|
213
|
-
name: 'Tài sản thiếu chờ xử lý - dài hạn',
|
|
214
|
-
nameEn: 'Shortage of assets awaiting resolution - long term',
|
|
215
|
-
accountType: 'asset_receivable',
|
|
216
|
-
reconcile: true,
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
code: '13831',
|
|
220
|
-
name: 'Thuế TTĐB của hàng nhập khẩu - ngắn hạn',
|
|
221
|
-
nameEn: 'Special consumption tax of imported goods - short term',
|
|
222
|
-
accountType: 'asset_receivable',
|
|
223
|
-
reconcile: true,
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
code: '13832',
|
|
227
|
-
name: 'Thuế TTĐB của hàng nhập khẩu - dài hạn',
|
|
228
|
-
nameEn: 'Special consumption tax of imported goods - long term',
|
|
229
|
-
accountType: 'asset_receivable',
|
|
230
|
-
reconcile: true,
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
code: '13881',
|
|
234
|
-
name: 'Phải thu khác - ngắn hạn',
|
|
235
|
-
nameEn: 'Other receivables - short term',
|
|
236
|
-
accountType: 'asset_receivable',
|
|
237
|
-
reconcile: true,
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
code: '13882',
|
|
241
|
-
name: 'Phải thu khác - dài hạn',
|
|
242
|
-
nameEn: 'Other receivables - long term',
|
|
243
|
-
accountType: 'asset_receivable',
|
|
244
|
-
reconcile: true,
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
code: '1411',
|
|
248
|
-
name: 'Tạm ứng - ngắn hạn',
|
|
249
|
-
nameEn: 'Advances - short term',
|
|
250
|
-
accountType: 'asset_receivable',
|
|
251
|
-
reconcile: true,
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
code: '1412',
|
|
255
|
-
name: 'Tạm ứng - dài hạn',
|
|
256
|
-
nameEn: 'Advances - long term',
|
|
257
|
-
accountType: 'asset_receivable',
|
|
258
|
-
reconcile: true,
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
code: '151',
|
|
262
|
-
name: 'Hàng mua đang đi đường',
|
|
263
|
-
nameEn: 'Goods in transit',
|
|
264
|
-
accountType: 'asset_current',
|
|
265
|
-
reconcile: false,
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
code: '152',
|
|
269
|
-
name: 'Nguyên liệu, vật liệu',
|
|
270
|
-
nameEn: 'Raw materials',
|
|
271
|
-
accountType: 'asset_current',
|
|
272
|
-
reconcile: false,
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
code: '1531',
|
|
276
|
-
name: 'Công cụ, dụng cụ - ngắn hạn',
|
|
277
|
-
nameEn: 'Tools & supplies - Short term',
|
|
278
|
-
accountType: 'asset_current',
|
|
279
|
-
reconcile: false,
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
code: '1532',
|
|
283
|
-
name: 'Công cụ, dụng cụ - Dài hạn',
|
|
284
|
-
nameEn: 'Tools & supplies - Long term',
|
|
285
|
-
accountType: 'asset_current',
|
|
286
|
-
reconcile: false,
|
|
287
|
-
},
|
|
288
|
-
{
|
|
289
|
-
code: '1541',
|
|
290
|
-
name: 'Chi phí sản xuất, kinh doanh dở dang - ngắn hạn',
|
|
291
|
-
nameEn: 'Work in Progress - Short term',
|
|
292
|
-
accountType: 'asset_current',
|
|
293
|
-
reconcile: false,
|
|
294
|
-
},
|
|
295
|
-
{
|
|
296
|
-
code: '1542',
|
|
297
|
-
name: 'Chi phí sản xuất, kinh doanh dở dang - Dài hạn',
|
|
298
|
-
nameEn: 'Work in Progress - Long term',
|
|
299
|
-
accountType: 'asset_current',
|
|
300
|
-
reconcile: false,
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
code: '155',
|
|
304
|
-
name: 'Sản phẩm',
|
|
305
|
-
nameEn: 'Finished Goods',
|
|
306
|
-
accountType: 'asset_current',
|
|
307
|
-
reconcile: false,
|
|
308
|
-
},
|
|
309
|
-
{
|
|
310
|
-
code: '156',
|
|
311
|
-
name: 'Hàng hoá',
|
|
312
|
-
nameEn: 'Goods',
|
|
313
|
-
accountType: 'asset_current',
|
|
314
|
-
reconcile: false,
|
|
315
|
-
},
|
|
316
|
-
{
|
|
317
|
-
code: '157',
|
|
318
|
-
name: 'Hàng gửi đi bán',
|
|
319
|
-
nameEn: 'Outward goods on consignment',
|
|
320
|
-
accountType: 'asset_current',
|
|
321
|
-
reconcile: false,
|
|
322
|
-
},
|
|
323
|
-
{
|
|
324
|
-
code: '158',
|
|
325
|
-
name: 'Hàng hóa kho bảo thuế',
|
|
326
|
-
nameEn: 'Goods in bonded warehouse',
|
|
327
|
-
accountType: 'asset_current',
|
|
328
|
-
reconcile: false,
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
code: '171',
|
|
332
|
-
name: 'Giao dịch mua bán lại trái phiếu chính phủ',
|
|
333
|
-
nameEn: 'Government bonds purchase-resale',
|
|
334
|
-
accountType: 'asset_current',
|
|
335
|
-
reconcile: false,
|
|
336
|
-
},
|
|
337
|
-
{
|
|
338
|
-
code: '211',
|
|
339
|
-
name: 'Tài sản cố định hữu hình',
|
|
340
|
-
nameEn: 'Tangible fixed assets',
|
|
341
|
-
accountType: 'asset_fixed',
|
|
342
|
-
reconcile: false,
|
|
343
|
-
},
|
|
344
|
-
{
|
|
345
|
-
code: '212',
|
|
346
|
-
name: 'Tài sản cố định thuê tài chính',
|
|
347
|
-
nameEn: 'Financial leased tangible fixed assets',
|
|
348
|
-
accountType: 'asset_fixed',
|
|
349
|
-
reconcile: false,
|
|
350
|
-
},
|
|
351
|
-
{
|
|
352
|
-
code: '213',
|
|
353
|
-
name: 'Tài sản cố định vô hình',
|
|
354
|
-
nameEn: 'Intangible fixed assets',
|
|
355
|
-
accountType: 'asset_fixed',
|
|
356
|
-
reconcile: false,
|
|
357
|
-
},
|
|
358
|
-
{
|
|
359
|
-
code: '2141',
|
|
360
|
-
name: 'Hao mòn TSCĐ hữu hình',
|
|
361
|
-
nameEn: 'Depreciation of tangible fixed assets',
|
|
362
|
-
accountType: 'asset_non_current',
|
|
363
|
-
reconcile: false,
|
|
364
|
-
},
|
|
365
|
-
{
|
|
366
|
-
code: '2142',
|
|
367
|
-
name: 'Hao mòn TSCĐ thuê tài chính',
|
|
368
|
-
nameEn: 'Depreciation of financial leased assets',
|
|
369
|
-
accountType: 'asset_non_current',
|
|
370
|
-
reconcile: false,
|
|
371
|
-
},
|
|
372
|
-
{
|
|
373
|
-
code: '2143',
|
|
374
|
-
name: 'Hao mòn TSCĐ vô hình',
|
|
375
|
-
nameEn: 'Depreciation of intangible fixed assets',
|
|
376
|
-
accountType: 'asset_non_current',
|
|
377
|
-
reconcile: false,
|
|
378
|
-
},
|
|
379
|
-
{
|
|
380
|
-
code: '2147',
|
|
381
|
-
name: 'Hao mòn bất động sản đầu tư',
|
|
382
|
-
nameEn: 'Depreciation of investment properties',
|
|
383
|
-
accountType: 'asset_non_current',
|
|
384
|
-
reconcile: false,
|
|
385
|
-
},
|
|
386
|
-
{
|
|
387
|
-
code: '21511',
|
|
388
|
-
name: 'Súc vật nuôi cho sản phẩm định kỳ chưa đạt đến giai đoạn trưởng thành',
|
|
389
|
-
nameEn: 'Livestock for periodic production that have not yet reached maturity',
|
|
390
|
-
accountType: 'asset_non_current',
|
|
391
|
-
reconcile: false,
|
|
392
|
-
},
|
|
393
|
-
{
|
|
394
|
-
code: '215121',
|
|
395
|
-
name: 'Nguyên giá',
|
|
396
|
-
nameEn: 'Original price',
|
|
397
|
-
accountType: 'asset_non_current',
|
|
398
|
-
reconcile: false,
|
|
399
|
-
},
|
|
400
|
-
{
|
|
401
|
-
code: '215122',
|
|
402
|
-
name: 'Giá trị khấu hao luỹ kế',
|
|
403
|
-
nameEn: 'Accumulated Depreciation',
|
|
404
|
-
accountType: 'asset_non_current',
|
|
405
|
-
reconcile: false,
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
code: '21521',
|
|
409
|
-
name: 'Súc vật nuôi lấy sản phẩm một lần - Ngắn hạn',
|
|
410
|
-
nameEn: 'Livestock that produces one-time products - Short term',
|
|
411
|
-
accountType: 'asset_non_current',
|
|
412
|
-
reconcile: false,
|
|
413
|
-
},
|
|
414
|
-
{
|
|
415
|
-
code: '21522',
|
|
416
|
-
name: 'Súc vật nuôi lấy sản phẩm một lần - Dài hạn',
|
|
417
|
-
nameEn: 'Livestock that produces one-time products - Long term',
|
|
418
|
-
accountType: 'asset_non_current',
|
|
419
|
-
reconcile: false,
|
|
420
|
-
},
|
|
421
|
-
{
|
|
422
|
-
code: '21531',
|
|
423
|
-
name: 'Cây trồng theo mùa vụ hoặc lấy sản phẩm một lần - Ngắn hạn',
|
|
424
|
-
nameEn: 'Seasonal or one-time crop - Short term',
|
|
425
|
-
accountType: 'asset_non_current',
|
|
426
|
-
reconcile: false,
|
|
427
|
-
},
|
|
428
|
-
{
|
|
429
|
-
code: '21532',
|
|
430
|
-
name: 'Cây trồng theo mùa vụ hoặc lấy sản phẩm một lần - Dài hạn',
|
|
431
|
-
nameEn: 'Seasonal or one-time crop - Long term',
|
|
432
|
-
accountType: 'asset_non_current',
|
|
433
|
-
reconcile: false,
|
|
434
|
-
},
|
|
435
|
-
{
|
|
436
|
-
code: '217',
|
|
437
|
-
name: 'Bất động sản đầu tư',
|
|
438
|
-
nameEn: 'Investment properties',
|
|
439
|
-
accountType: 'asset_non_current',
|
|
440
|
-
reconcile: false,
|
|
441
|
-
},
|
|
442
|
-
{
|
|
443
|
-
code: '221',
|
|
444
|
-
name: 'Đầu tư vào công ty con',
|
|
445
|
-
nameEn: 'Investment in subsidiaries',
|
|
446
|
-
accountType: 'asset_non_current',
|
|
447
|
-
reconcile: false,
|
|
448
|
-
},
|
|
449
|
-
{
|
|
450
|
-
code: '222',
|
|
451
|
-
name: 'Đầu tư vào công ty liên doanh, liên kết',
|
|
452
|
-
nameEn: 'Investment in joint ventures and associates',
|
|
453
|
-
accountType: 'asset_non_current',
|
|
454
|
-
reconcile: false,
|
|
455
|
-
},
|
|
456
|
-
{
|
|
457
|
-
code: '22811',
|
|
458
|
-
name: 'Đầu tư góp vốn vào đơn vị khác - ngắn hạn',
|
|
459
|
-
nameEn: 'Equity investments in other entities - short term',
|
|
460
|
-
accountType: 'asset_non_current',
|
|
461
|
-
reconcile: false,
|
|
462
|
-
},
|
|
463
|
-
{
|
|
464
|
-
code: '22812',
|
|
465
|
-
name: 'Đầu tư góp vốn vào đơn vị khác - dài hạn',
|
|
466
|
-
nameEn: 'Equity investments in other entities - long term',
|
|
467
|
-
accountType: 'asset_non_current',
|
|
468
|
-
reconcile: false,
|
|
469
|
-
},
|
|
470
|
-
{
|
|
471
|
-
code: '22881',
|
|
472
|
-
name: 'Đầu tư khác - ngắn hạn',
|
|
473
|
-
nameEn: 'Other investment - short term',
|
|
474
|
-
accountType: 'asset_non_current',
|
|
475
|
-
reconcile: false,
|
|
476
|
-
},
|
|
477
|
-
{
|
|
478
|
-
code: '22882',
|
|
479
|
-
name: 'Đầu tư khác - dài hạn',
|
|
480
|
-
nameEn: 'Other investment - long term',
|
|
481
|
-
accountType: 'asset_non_current',
|
|
482
|
-
reconcile: false,
|
|
483
|
-
},
|
|
484
|
-
{
|
|
485
|
-
code: '2291',
|
|
486
|
-
name: 'Dự phòng giảm giá chứng khoán kinh doanh',
|
|
487
|
-
nameEn: 'Provision for decline in value of trading securities',
|
|
488
|
-
accountType: 'asset_non_current',
|
|
489
|
-
reconcile: false,
|
|
490
|
-
},
|
|
491
|
-
{
|
|
492
|
-
code: '22921',
|
|
493
|
-
name: 'Dự phòng tổn thất đầu tư vào đơn vị khác- ngắn hạn',
|
|
494
|
-
nameEn: 'Provision for investment loss in other entities - short term',
|
|
495
|
-
accountType: 'asset_non_current',
|
|
496
|
-
reconcile: false,
|
|
497
|
-
},
|
|
498
|
-
{
|
|
499
|
-
code: '22922',
|
|
500
|
-
name: 'Dự phòng tổn thất đầu tư vào hợp đồng BBC- ngắn hạn',
|
|
501
|
-
nameEn: 'Provision for investment loss in BBC contracts - short term',
|
|
502
|
-
accountType: 'asset_non_current',
|
|
503
|
-
reconcile: false,
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
code: '22923',
|
|
507
|
-
name: 'Dự phòng tổn thất đầu tư vào đơn vị khác- dài hạn',
|
|
508
|
-
nameEn: 'Provision for investment loss in other entities - long term',
|
|
509
|
-
accountType: 'asset_non_current',
|
|
510
|
-
reconcile: false,
|
|
511
|
-
},
|
|
512
|
-
{
|
|
513
|
-
code: '22924',
|
|
514
|
-
name: 'Dự phòng tổn thất đầu tư vào đơn vị khác nắm giữ đến ngày đáo hạn - dài hạn',
|
|
515
|
-
nameEn: 'Provision for investment loss in other entities held to maturity - long term',
|
|
516
|
-
accountType: 'asset_non_current',
|
|
517
|
-
reconcile: false,
|
|
518
|
-
},
|
|
519
|
-
{
|
|
520
|
-
code: '22931',
|
|
521
|
-
name: 'Dự phòng phải thu khó đòi - ngắn hạn',
|
|
522
|
-
nameEn: 'Provision for doubtful debts - short term',
|
|
523
|
-
accountType: 'asset_non_current',
|
|
524
|
-
reconcile: false,
|
|
525
|
-
},
|
|
526
|
-
{
|
|
527
|
-
code: '22932',
|
|
528
|
-
name: 'Dự phòng phải thu khó đòi - dài hạn',
|
|
529
|
-
nameEn: 'Provision for doubtful debts - long term',
|
|
530
|
-
accountType: 'asset_non_current',
|
|
531
|
-
reconcile: false,
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
code: '22941',
|
|
535
|
-
name: 'Dự phòng giảm giá hàng tồn kho',
|
|
536
|
-
nameEn: 'Provision for reserve inventories',
|
|
537
|
-
accountType: 'asset_non_current',
|
|
538
|
-
reconcile: false,
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
code: '22942',
|
|
542
|
-
name: 'Dự phòng giảm giá hàng tồn kho- chi phí sản xuất, kinh doanh dở dang dài hạn',
|
|
543
|
-
nameEn: 'Provision for reserve inventories - long term work in progress',
|
|
544
|
-
accountType: 'asset_non_current',
|
|
545
|
-
reconcile: false,
|
|
546
|
-
},
|
|
547
|
-
{
|
|
548
|
-
code: '22943',
|
|
549
|
-
name: 'Dự phòng giảm giá hàng tồn kho- thiết bị, vật tư, phụ tùng thay thế dài hạn',
|
|
550
|
-
nameEn: 'Provision for reserve inventories (Equipment and Spare parts)',
|
|
551
|
-
accountType: 'asset_non_current',
|
|
552
|
-
reconcile: false,
|
|
553
|
-
},
|
|
554
|
-
{
|
|
555
|
-
code: '22951',
|
|
556
|
-
name: 'Dự phòng tổn thất tài sản sinh học - Ngắn hạn',
|
|
557
|
-
nameEn: 'Provision for biology asset loss - Short term',
|
|
558
|
-
accountType: 'asset_non_current',
|
|
559
|
-
reconcile: false,
|
|
560
|
-
},
|
|
561
|
-
{
|
|
562
|
-
code: '22952',
|
|
563
|
-
name: 'Dự phòng tổn thất tài sản sinh học - Dài hạn',
|
|
564
|
-
nameEn: 'Provision for biology asset loss - Long term',
|
|
565
|
-
accountType: 'asset_non_current',
|
|
566
|
-
reconcile: false,
|
|
567
|
-
},
|
|
568
|
-
{
|
|
569
|
-
code: '2411',
|
|
570
|
-
name: 'Mua sắm TSCĐ',
|
|
571
|
-
nameEn: 'Acquisition of fixed assets',
|
|
572
|
-
accountType: 'asset_non_current',
|
|
573
|
-
reconcile: false,
|
|
574
|
-
},
|
|
575
|
-
{
|
|
576
|
-
code: '2412',
|
|
577
|
-
name: 'Xây dựng cơ bản',
|
|
578
|
-
nameEn: 'Construction in progress',
|
|
579
|
-
accountType: 'asset_non_current',
|
|
580
|
-
reconcile: false,
|
|
581
|
-
},
|
|
582
|
-
{
|
|
583
|
-
code: '2413',
|
|
584
|
-
name: 'Sửa chữa, bảo dưỡng định kỳ TSCĐ',
|
|
585
|
-
nameEn: 'Periodic repairs and maintenance of fixed assets',
|
|
586
|
-
accountType: 'asset_non_current',
|
|
587
|
-
reconcile: false,
|
|
588
|
-
},
|
|
589
|
-
{
|
|
590
|
-
code: '2414',
|
|
591
|
-
name: 'Nâng cấp, cải tạo TSCĐ',
|
|
592
|
-
nameEn: 'Upgrading, renovating fixed assets',
|
|
593
|
-
accountType: 'asset_non_current',
|
|
594
|
-
reconcile: false,
|
|
595
|
-
},
|
|
596
|
-
{
|
|
597
|
-
code: '2421',
|
|
598
|
-
name: 'Chi phí chờ phân bổ - ngắn hạn',
|
|
599
|
-
nameEn: 'Expenses waiting for allocation - short term',
|
|
600
|
-
accountType: 'asset_prepayments',
|
|
601
|
-
reconcile: false,
|
|
602
|
-
},
|
|
603
|
-
{
|
|
604
|
-
code: '2422',
|
|
605
|
-
name: 'Chi phí chờ phân bổ - dài hạn',
|
|
606
|
-
nameEn: 'Expenses waiting for allocation - long term',
|
|
607
|
-
accountType: 'asset_prepayments',
|
|
608
|
-
reconcile: false,
|
|
609
|
-
},
|
|
610
|
-
{
|
|
611
|
-
code: '243',
|
|
612
|
-
name: 'Tài sản thuế thu nhập hoãn lại',
|
|
613
|
-
nameEn: 'Deferred tax assets',
|
|
614
|
-
accountType: 'asset_non_current',
|
|
615
|
-
reconcile: false,
|
|
616
|
-
},
|
|
617
|
-
{
|
|
618
|
-
code: '2441',
|
|
619
|
-
name: 'Ký quỹ, ký cược - ngắn hạn',
|
|
620
|
-
nameEn: 'Deposits - short term',
|
|
621
|
-
accountType: 'asset_non_current',
|
|
622
|
-
reconcile: false,
|
|
623
|
-
},
|
|
624
|
-
{
|
|
625
|
-
code: '2442',
|
|
626
|
-
name: 'Ký quỹ, ký cược - dài hạn',
|
|
627
|
-
nameEn: 'Deposits - long term',
|
|
628
|
-
accountType: 'asset_non_current',
|
|
629
|
-
reconcile: false,
|
|
630
|
-
},
|
|
631
|
-
{
|
|
632
|
-
code: '3311',
|
|
633
|
-
name: 'Phải trả cho người bán - ngắn hạn',
|
|
634
|
-
nameEn: 'Trade payables - short term',
|
|
635
|
-
accountType: 'liability_payable',
|
|
636
|
-
reconcile: true,
|
|
637
|
-
},
|
|
638
|
-
{
|
|
639
|
-
code: '3312',
|
|
640
|
-
name: 'Phải trả cho người bán - dài hạn',
|
|
641
|
-
nameEn: 'Trade payables - long term',
|
|
642
|
-
accountType: 'liability_payable',
|
|
643
|
-
reconcile: true,
|
|
644
|
-
},
|
|
645
|
-
{
|
|
646
|
-
code: '332',
|
|
647
|
-
name: 'Phải trả cổ tức, lợi nhuận',
|
|
648
|
-
nameEn: 'Dividend payable',
|
|
649
|
-
accountType: 'liability_payable',
|
|
650
|
-
reconcile: true,
|
|
651
|
-
},
|
|
652
|
-
{
|
|
653
|
-
code: '33311',
|
|
654
|
-
name: 'Thuế GTGT đầu ra',
|
|
655
|
-
nameEn: 'Output VAT',
|
|
656
|
-
accountType: 'liability_current',
|
|
657
|
-
reconcile: false,
|
|
658
|
-
},
|
|
659
|
-
{
|
|
660
|
-
code: '33312',
|
|
661
|
-
name: 'Thuế GTGT hàng nhập khẩu',
|
|
662
|
-
nameEn: 'VAT on imported goods',
|
|
663
|
-
accountType: 'liability_payable',
|
|
664
|
-
reconcile: true,
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
code: '33321',
|
|
668
|
-
name: 'Thuế tiêu thụ đặc biệt - ngắn hạn',
|
|
669
|
-
nameEn: 'Special consumption tax- short term',
|
|
670
|
-
accountType: 'liability_current',
|
|
671
|
-
reconcile: false,
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
code: '33322',
|
|
675
|
-
name: 'Thuế tiêu thụ đặc biệt - dài hạn',
|
|
676
|
-
nameEn: 'Special consumption tax - long term',
|
|
677
|
-
accountType: 'liability_current',
|
|
678
|
-
reconcile: false,
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
code: '33331',
|
|
682
|
-
name: 'Thuế xuất, nhập khẩu - ngắn hạn',
|
|
683
|
-
nameEn: 'Import & export tax - short term',
|
|
684
|
-
accountType: 'liability_current',
|
|
685
|
-
reconcile: false,
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
code: '33332',
|
|
689
|
-
name: 'Thuế xuất, nhập khẩu - dài hạn',
|
|
690
|
-
nameEn: 'Import & export tax - long term',
|
|
691
|
-
accountType: 'liability_current',
|
|
692
|
-
reconcile: false,
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
code: '33341',
|
|
696
|
-
name: 'Thuế thu nhập doanh nghiệp - ngắn hạn',
|
|
697
|
-
nameEn: 'Corporate income tax - short term',
|
|
698
|
-
accountType: 'liability_current',
|
|
699
|
-
reconcile: false,
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
code: '33342',
|
|
703
|
-
name: 'Thuế thu nhập doanh nghiệp - dài hạn',
|
|
704
|
-
nameEn: 'Corporate income tax - long term',
|
|
705
|
-
accountType: 'liability_current',
|
|
706
|
-
reconcile: false,
|
|
707
|
-
},
|
|
708
|
-
{
|
|
709
|
-
code: '33351',
|
|
710
|
-
name: 'Thuế thu nhập cá nhân - ngắn hạn',
|
|
711
|
-
nameEn: 'Personal income tax - short term',
|
|
712
|
-
accountType: 'liability_current',
|
|
713
|
-
reconcile: false,
|
|
714
|
-
},
|
|
715
|
-
{
|
|
716
|
-
code: '33352',
|
|
717
|
-
name: 'Thuế thu nhập cá nhân - dài hạn',
|
|
718
|
-
nameEn: 'Personal income tax - long term',
|
|
719
|
-
accountType: 'liability_current',
|
|
720
|
-
reconcile: false,
|
|
721
|
-
},
|
|
722
|
-
{
|
|
723
|
-
code: '33361',
|
|
724
|
-
name: 'Thuế tài nguyên - ngắn hạn',
|
|
725
|
-
nameEn: 'Natural resources using tax - short term',
|
|
726
|
-
accountType: 'liability_current',
|
|
727
|
-
reconcile: false,
|
|
728
|
-
},
|
|
729
|
-
{
|
|
730
|
-
code: '33362',
|
|
731
|
-
name: 'Thuế tài nguyên - dài hạn',
|
|
732
|
-
nameEn: 'Natural resources using tax - long term',
|
|
733
|
-
accountType: 'liability_current',
|
|
734
|
-
reconcile: false,
|
|
735
|
-
},
|
|
736
|
-
{
|
|
737
|
-
code: '33371',
|
|
738
|
-
name: 'Thuế nhà đất, tiền thuê đất - ngắn hạn',
|
|
739
|
-
nameEn: 'Land & housing tax, land rental charges - short term',
|
|
740
|
-
accountType: 'liability_current',
|
|
741
|
-
reconcile: false,
|
|
742
|
-
},
|
|
743
|
-
{
|
|
744
|
-
code: '33372',
|
|
745
|
-
name: 'Thuế nhà đất, tiền thuê đất - dài hạn',
|
|
746
|
-
nameEn: 'Land & housing tax, land rental charges - long term',
|
|
747
|
-
accountType: 'liability_current',
|
|
748
|
-
reconcile: false,
|
|
749
|
-
},
|
|
750
|
-
{
|
|
751
|
-
code: '33381',
|
|
752
|
-
name: 'Thuế bảo vệ môi trường',
|
|
753
|
-
nameEn: 'Environment protection tax',
|
|
754
|
-
accountType: 'liability_current',
|
|
755
|
-
reconcile: false,
|
|
756
|
-
},
|
|
757
|
-
{
|
|
758
|
-
code: '33382',
|
|
759
|
-
name: 'Các loại thuế khác',
|
|
760
|
-
nameEn: 'Other taxes',
|
|
761
|
-
accountType: 'liability_current',
|
|
762
|
-
reconcile: false,
|
|
763
|
-
},
|
|
764
|
-
{
|
|
765
|
-
code: '33391',
|
|
766
|
-
name: 'Phí, lệ phí và các khoản phải nộp khác - ngắn hạn',
|
|
767
|
-
nameEn: 'Fees & charges & other payables - short term',
|
|
768
|
-
accountType: 'liability_payable',
|
|
769
|
-
reconcile: true,
|
|
770
|
-
},
|
|
771
|
-
{
|
|
772
|
-
code: '33392',
|
|
773
|
-
name: 'Phí, lệ phí và các khoản phải nộp khác - dài hạn',
|
|
774
|
-
nameEn: 'Fees & charges & other payables - long term',
|
|
775
|
-
accountType: 'liability_payable',
|
|
776
|
-
reconcile: true,
|
|
777
|
-
},
|
|
778
|
-
{
|
|
779
|
-
code: '3341',
|
|
780
|
-
name: 'Phải trả công nhân viên - ngắn hạn',
|
|
781
|
-
nameEn: 'Payables to staff - short term',
|
|
782
|
-
accountType: 'liability_payable',
|
|
783
|
-
reconcile: true,
|
|
784
|
-
},
|
|
785
|
-
{
|
|
786
|
-
code: '3342',
|
|
787
|
-
name: 'Phải trả công nhân viên - dài hạn',
|
|
788
|
-
nameEn: 'Payables to staff - long term',
|
|
789
|
-
accountType: 'liability_payable',
|
|
790
|
-
reconcile: true,
|
|
791
|
-
},
|
|
792
|
-
{
|
|
793
|
-
code: '3351',
|
|
794
|
-
name: 'Chi phí phải trả - ngắn hạn',
|
|
795
|
-
nameEn: 'Accrued expenses - short term',
|
|
796
|
-
accountType: 'liability_payable',
|
|
797
|
-
reconcile: true,
|
|
798
|
-
},
|
|
799
|
-
{
|
|
800
|
-
code: '3352',
|
|
801
|
-
name: 'Chi phí phải trả - dài hạn',
|
|
802
|
-
nameEn: 'Accrued expenses - long term',
|
|
803
|
-
accountType: 'liability_payable',
|
|
804
|
-
reconcile: true,
|
|
805
|
-
},
|
|
806
|
-
{
|
|
807
|
-
code: '3361',
|
|
808
|
-
name: 'Phải trả nội bộ về vốn kinh doanh',
|
|
809
|
-
nameEn: 'Internal payables for working capital received',
|
|
810
|
-
accountType: 'liability_payable',
|
|
811
|
-
reconcile: true,
|
|
812
|
-
},
|
|
813
|
-
{
|
|
814
|
-
code: '33621',
|
|
815
|
-
name: 'Phải trả nội bộ về chênh lệch tỉ giá - ngắn hạn',
|
|
816
|
-
nameEn: 'Internal payables for foreign exchange differences - short term',
|
|
817
|
-
accountType: 'liability_payable',
|
|
818
|
-
reconcile: true,
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
code: '33622',
|
|
822
|
-
name: 'Phải trả nội bộ về chênh lệch tỉ giá - dài hạn',
|
|
823
|
-
nameEn: 'Internal payables for foreign exchange differences - long term',
|
|
824
|
-
accountType: 'liability_payable',
|
|
825
|
-
reconcile: true,
|
|
826
|
-
},
|
|
827
|
-
{
|
|
828
|
-
code: '33631',
|
|
829
|
-
name: 'Phải trả nội bộ về chi phí đi vay đủ điều kiện được vốn hoá - ngắn hạn',
|
|
830
|
-
nameEn: 'Internal payables for borrowing costs eligible for capitalization - short term',
|
|
831
|
-
accountType: 'liability_payable',
|
|
832
|
-
reconcile: true,
|
|
833
|
-
},
|
|
834
|
-
{
|
|
835
|
-
code: '33632',
|
|
836
|
-
name: 'Phải trả nội bộ về chi phí đi vay đủ điều kiện được vốn hoá - dài hạn',
|
|
837
|
-
nameEn: 'Internal payables for borrowing costs eligible for capitalization - long term',
|
|
838
|
-
accountType: 'liability_payable',
|
|
839
|
-
reconcile: true,
|
|
840
|
-
},
|
|
841
|
-
{
|
|
842
|
-
code: '33681',
|
|
843
|
-
name: 'Phải trả nội bộ khác - ngắn hạn',
|
|
844
|
-
nameEn: 'Other internal payables - short term',
|
|
845
|
-
accountType: 'liability_payable',
|
|
846
|
-
reconcile: true,
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
code: '33682',
|
|
850
|
-
name: 'Phải trả nội bộ khác - dài hạn',
|
|
851
|
-
nameEn: 'Other internal payables - long term',
|
|
852
|
-
accountType: 'liability_payable',
|
|
853
|
-
reconcile: true,
|
|
854
|
-
},
|
|
855
|
-
{
|
|
856
|
-
code: '337',
|
|
857
|
-
name: 'Thanh toán theo tiến độ hợp đồng xây dựng',
|
|
858
|
-
nameEn: 'Progress billings for construction contracts',
|
|
859
|
-
accountType: 'liability_payable',
|
|
860
|
-
reconcile: true,
|
|
861
|
-
},
|
|
862
|
-
{
|
|
863
|
-
code: '33811',
|
|
864
|
-
name: 'Tài sản thừa chờ giải quyết - ngắn hạn',
|
|
865
|
-
nameEn: 'Surplus of assets awaiting for resolution - short term',
|
|
866
|
-
accountType: 'liability_payable',
|
|
867
|
-
reconcile: true,
|
|
868
|
-
},
|
|
869
|
-
{
|
|
870
|
-
code: '33812',
|
|
871
|
-
name: 'Tài sản thừa chờ giải quyết - dài hạn',
|
|
872
|
-
nameEn: 'Surplus of assets awaiting for resolution - long term',
|
|
873
|
-
accountType: 'liability_payable',
|
|
874
|
-
reconcile: true,
|
|
875
|
-
},
|
|
876
|
-
{
|
|
877
|
-
code: '33821',
|
|
878
|
-
name: 'Kinh phí công đoàn - ngắn hạn',
|
|
879
|
-
nameEn: 'Trade union fees - short term',
|
|
880
|
-
accountType: 'liability_payable',
|
|
881
|
-
reconcile: true,
|
|
882
|
-
},
|
|
883
|
-
{
|
|
884
|
-
code: '33822',
|
|
885
|
-
name: 'Kinh phí công đoàn - dài hạn',
|
|
886
|
-
nameEn: 'Trade union fees - long term',
|
|
887
|
-
accountType: 'liability_payable',
|
|
888
|
-
reconcile: true,
|
|
889
|
-
},
|
|
890
|
-
{
|
|
891
|
-
code: '33831',
|
|
892
|
-
name: 'Bảo hiểm xã hội - ngắn hạn',
|
|
893
|
-
nameEn: 'Social insurance - short term',
|
|
894
|
-
accountType: 'liability_payable',
|
|
895
|
-
reconcile: true,
|
|
896
|
-
},
|
|
897
|
-
{
|
|
898
|
-
code: '33832',
|
|
899
|
-
name: 'Bảo hiểm xã hội - dài hạn',
|
|
900
|
-
nameEn: 'Social insurance - long term',
|
|
901
|
-
accountType: 'liability_payable',
|
|
902
|
-
reconcile: true,
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
code: '33841',
|
|
906
|
-
name: 'Bảo hiểm y tế - ngắn hạn',
|
|
907
|
-
nameEn: 'Health insurance - short term',
|
|
908
|
-
accountType: 'liability_payable',
|
|
909
|
-
reconcile: true,
|
|
910
|
-
},
|
|
911
|
-
{
|
|
912
|
-
code: '33842',
|
|
913
|
-
name: 'Bảo hiểm y tế - dài hạn',
|
|
914
|
-
nameEn: 'Health insurance - long term',
|
|
915
|
-
accountType: 'liability_payable',
|
|
916
|
-
reconcile: true,
|
|
917
|
-
},
|
|
918
|
-
{
|
|
919
|
-
code: '33861',
|
|
920
|
-
name: 'Bảo hiểm thất nghiệp - ngắn hạn',
|
|
921
|
-
nameEn: 'Unemployment insurance - short term',
|
|
922
|
-
accountType: 'liability_payable',
|
|
923
|
-
reconcile: true,
|
|
924
|
-
},
|
|
925
|
-
{
|
|
926
|
-
code: '33862',
|
|
927
|
-
name: 'Bảo hiểm thất nghiệp - dài hạn',
|
|
928
|
-
nameEn: 'Unemployment insurance - long term',
|
|
929
|
-
accountType: 'liability_payable',
|
|
930
|
-
reconcile: true,
|
|
931
|
-
},
|
|
932
|
-
{
|
|
933
|
-
code: '33871',
|
|
934
|
-
name: 'Doanh thu chưa thực hiện - ngắn hạn',
|
|
935
|
-
nameEn: 'Unearned revenue - short term',
|
|
936
|
-
accountType: 'liability_current',
|
|
937
|
-
reconcile: true,
|
|
938
|
-
},
|
|
939
|
-
{
|
|
940
|
-
code: '33872',
|
|
941
|
-
name: 'Doanh thu chưa thực hiện - dài hạn',
|
|
942
|
-
nameEn: 'Unearned revenue - long term',
|
|
943
|
-
accountType: 'liability_current',
|
|
944
|
-
reconcile: true,
|
|
945
|
-
},
|
|
946
|
-
{
|
|
947
|
-
code: '33881',
|
|
948
|
-
name: 'Phải trả, phải nộp khác - ngắn hạn',
|
|
949
|
-
nameEn: 'Other payables - short term',
|
|
950
|
-
accountType: 'liability_payable',
|
|
951
|
-
reconcile: true,
|
|
952
|
-
},
|
|
953
|
-
{
|
|
954
|
-
code: '33882',
|
|
955
|
-
name: 'Phải trả, phải nộp khác - dài hạn',
|
|
956
|
-
nameEn: 'Other payables - long term',
|
|
957
|
-
accountType: 'liability_payable',
|
|
958
|
-
reconcile: true,
|
|
959
|
-
},
|
|
960
|
-
{
|
|
961
|
-
code: '34111',
|
|
962
|
-
name: 'Các khoản đi vay - ngắn hạn',
|
|
963
|
-
nameEn: 'Borrowings - short term',
|
|
964
|
-
accountType: 'liability_payable',
|
|
965
|
-
reconcile: true,
|
|
966
|
-
},
|
|
967
|
-
{
|
|
968
|
-
code: '34112',
|
|
969
|
-
name: 'Các khoản đi vay - dài hạn',
|
|
970
|
-
nameEn: 'Borrowings - long term',
|
|
971
|
-
accountType: 'liability_payable',
|
|
972
|
-
reconcile: true,
|
|
973
|
-
},
|
|
974
|
-
{
|
|
975
|
-
code: '34121',
|
|
976
|
-
name: 'Nợ thuê tài chính - ngắn hạn',
|
|
977
|
-
nameEn: 'Financial leased liabilities - short term',
|
|
978
|
-
accountType: 'liability_current',
|
|
979
|
-
reconcile: false,
|
|
980
|
-
},
|
|
981
|
-
{
|
|
982
|
-
code: '34122',
|
|
983
|
-
name: 'Nợ thuê tài chính - dài hạn',
|
|
984
|
-
nameEn: 'Financial leased liabilities - long term',
|
|
985
|
-
accountType: 'liability_current',
|
|
986
|
-
reconcile: false,
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
code: '34311',
|
|
990
|
-
name: 'Trái phiếu thường - ngắn hạn',
|
|
991
|
-
nameEn: 'Ordinary bonds - Short term',
|
|
992
|
-
accountType: 'liability_current',
|
|
993
|
-
reconcile: false,
|
|
994
|
-
},
|
|
995
|
-
{
|
|
996
|
-
code: '34312',
|
|
997
|
-
name: 'Trái phiếu thường - dài hạn',
|
|
998
|
-
nameEn: 'Ordinary bonds - Long term',
|
|
999
|
-
accountType: 'liability_current',
|
|
1000
|
-
reconcile: false,
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
code: '3432',
|
|
1004
|
-
name: 'Trái phiếu chuyển đổi',
|
|
1005
|
-
nameEn: 'Convertible bonds',
|
|
1006
|
-
accountType: 'liability_current',
|
|
1007
|
-
reconcile: false,
|
|
1008
|
-
},
|
|
1009
|
-
{
|
|
1010
|
-
code: '3441',
|
|
1011
|
-
name: 'Nhận ký quỹ, ký cược - ngắn hạn',
|
|
1012
|
-
nameEn: 'Deposits received - short term',
|
|
1013
|
-
accountType: 'liability_current',
|
|
1014
|
-
reconcile: false,
|
|
1015
|
-
},
|
|
1016
|
-
{
|
|
1017
|
-
code: '3442',
|
|
1018
|
-
name: 'Nhận ký quỹ, ký cược - dài hạn',
|
|
1019
|
-
nameEn: 'Deposits received - long term',
|
|
1020
|
-
accountType: 'liability_current',
|
|
1021
|
-
reconcile: false,
|
|
1022
|
-
},
|
|
1023
|
-
{
|
|
1024
|
-
code: '347',
|
|
1025
|
-
name: 'Thuế thu nhập hoãn lại phải trả',
|
|
1026
|
-
nameEn: 'Deferred tax liabilities',
|
|
1027
|
-
accountType: 'liability_current',
|
|
1028
|
-
reconcile: false,
|
|
1029
|
-
},
|
|
1030
|
-
{
|
|
1031
|
-
code: '35211',
|
|
1032
|
-
name: 'Dự phòng bảo hành sản phẩm hàng hoá - ngắn hạn',
|
|
1033
|
-
nameEn: 'Product warranty provisions - short term',
|
|
1034
|
-
accountType: 'liability_current',
|
|
1035
|
-
reconcile: false,
|
|
1036
|
-
},
|
|
1037
|
-
{
|
|
1038
|
-
code: '35212',
|
|
1039
|
-
name: 'Dự phòng bảo hành sản phẩm hàng hoá - dài hạn',
|
|
1040
|
-
nameEn: 'Product warranty provisions - long term',
|
|
1041
|
-
accountType: 'liability_current',
|
|
1042
|
-
reconcile: false,
|
|
1043
|
-
},
|
|
1044
|
-
{
|
|
1045
|
-
code: '35221',
|
|
1046
|
-
name: 'Dự phòng bảo hành công trình xây dựng - ngắn hạn',
|
|
1047
|
-
nameEn: 'Construction warranty provisions - short term',
|
|
1048
|
-
accountType: 'liability_current',
|
|
1049
|
-
reconcile: false,
|
|
1050
|
-
},
|
|
1051
|
-
{
|
|
1052
|
-
code: '35222',
|
|
1053
|
-
name: 'Dự phòng bảo hành công trình xây dựng - dài hạn',
|
|
1054
|
-
nameEn: 'Construction warranty provisions - long term',
|
|
1055
|
-
accountType: 'liability_current',
|
|
1056
|
-
reconcile: false,
|
|
1057
|
-
},
|
|
1058
|
-
{
|
|
1059
|
-
code: '35231',
|
|
1060
|
-
name: 'Dự phòng tái cơ cấu doanh nghiệp - ngắn hạn',
|
|
1061
|
-
nameEn: 'Enterprise restructuring provisions - short term',
|
|
1062
|
-
accountType: 'liability_current',
|
|
1063
|
-
reconcile: false,
|
|
1064
|
-
},
|
|
1065
|
-
{
|
|
1066
|
-
code: '35232',
|
|
1067
|
-
name: 'Dự phòng tái cơ cấu doanh nghiệp - dài hạn',
|
|
1068
|
-
nameEn: 'Enterprise restructuring provisions - long term',
|
|
1069
|
-
accountType: 'liability_current',
|
|
1070
|
-
reconcile: false,
|
|
1071
|
-
},
|
|
1072
|
-
{
|
|
1073
|
-
code: '35251',
|
|
1074
|
-
name: 'Dự phòng phải trả khác - ngắn hạn',
|
|
1075
|
-
nameEn: 'Other provisions - short term',
|
|
1076
|
-
accountType: 'liability_current',
|
|
1077
|
-
reconcile: false,
|
|
1078
|
-
},
|
|
1079
|
-
{
|
|
1080
|
-
code: '35252',
|
|
1081
|
-
name: 'Dự phòng phải trả khác - dài hạn',
|
|
1082
|
-
nameEn: 'Other provisions - long term',
|
|
1083
|
-
accountType: 'liability_current',
|
|
1084
|
-
reconcile: false,
|
|
1085
|
-
},
|
|
1086
|
-
{
|
|
1087
|
-
code: '3531',
|
|
1088
|
-
name: 'Quỹ khen thưởng',
|
|
1089
|
-
nameEn: 'Bonus fund',
|
|
1090
|
-
accountType: 'liability_current',
|
|
1091
|
-
reconcile: false,
|
|
1092
|
-
},
|
|
1093
|
-
{
|
|
1094
|
-
code: '3532',
|
|
1095
|
-
name: 'Quỹ phúc lợi',
|
|
1096
|
-
nameEn: 'Welfare fund',
|
|
1097
|
-
accountType: 'liability_current',
|
|
1098
|
-
reconcile: false,
|
|
1099
|
-
},
|
|
1100
|
-
{
|
|
1101
|
-
code: '3533',
|
|
1102
|
-
name: 'Quỹ phúc lợi đã hình thành TSCĐ',
|
|
1103
|
-
nameEn: 'Welfare fund used for fixed asset acquisitions',
|
|
1104
|
-
accountType: 'liability_current',
|
|
1105
|
-
reconcile: false,
|
|
1106
|
-
},
|
|
1107
|
-
{
|
|
1108
|
-
code: '3534',
|
|
1109
|
-
name: 'Quỹ thưởng ban quản lý điều hành công ty',
|
|
1110
|
-
nameEn: 'Management bonus fund',
|
|
1111
|
-
accountType: 'liability_current',
|
|
1112
|
-
reconcile: false,
|
|
1113
|
-
},
|
|
1114
|
-
{
|
|
1115
|
-
code: '3561',
|
|
1116
|
-
name: 'Quỹ phát triển khoa học và công nghệ',
|
|
1117
|
-
nameEn: 'Science and technology development fund',
|
|
1118
|
-
accountType: 'liability_current',
|
|
1119
|
-
reconcile: false,
|
|
1120
|
-
},
|
|
1121
|
-
{
|
|
1122
|
-
code: '3562',
|
|
1123
|
-
name: 'Quỹ phát triển khoa học và công nghệ đã hình thành TSCĐ',
|
|
1124
|
-
nameEn: 'Science and technology development fund used for fixed asset acquisition',
|
|
1125
|
-
accountType: 'liability_current',
|
|
1126
|
-
reconcile: false,
|
|
1127
|
-
},
|
|
1128
|
-
{
|
|
1129
|
-
code: '357',
|
|
1130
|
-
name: 'Quỹ bình ổn giá',
|
|
1131
|
-
nameEn: 'Price stabilization fund',
|
|
1132
|
-
accountType: 'liability_current',
|
|
1133
|
-
reconcile: false,
|
|
1134
|
-
},
|
|
1135
|
-
{
|
|
1136
|
-
code: '41111',
|
|
1137
|
-
name: 'Cổ phiếu phổ thông có quyền biểu quyết',
|
|
1138
|
-
nameEn: 'Ordinary shares with voting rights',
|
|
1139
|
-
accountType: 'equity',
|
|
1140
|
-
reconcile: false,
|
|
1141
|
-
},
|
|
1142
|
-
{
|
|
1143
|
-
code: '411121',
|
|
1144
|
-
name: 'Cổ phiếu ưu đãi - Nợ phải trả',
|
|
1145
|
-
nameEn: 'Preferred shares - payable',
|
|
1146
|
-
accountType: 'liability_current',
|
|
1147
|
-
reconcile: false,
|
|
1148
|
-
},
|
|
1149
|
-
{
|
|
1150
|
-
code: '411122',
|
|
1151
|
-
name: 'Cổ phiếu ưu đãi - Vốn chủ sở hữu',
|
|
1152
|
-
nameEn: "Preferred shares - owner's equity",
|
|
1153
|
-
accountType: 'equity',
|
|
1154
|
-
reconcile: false,
|
|
1155
|
-
},
|
|
1156
|
-
{
|
|
1157
|
-
code: '4112',
|
|
1158
|
-
name: 'Thặng dư vốn',
|
|
1159
|
-
nameEn: 'Capital surplus',
|
|
1160
|
-
accountType: 'equity',
|
|
1161
|
-
reconcile: false,
|
|
1162
|
-
},
|
|
1163
|
-
{
|
|
1164
|
-
code: '4113',
|
|
1165
|
-
name: 'Quyền chọn chuyển đổi trái phiếu',
|
|
1166
|
-
nameEn: 'Conversion options on convertible bonds',
|
|
1167
|
-
accountType: 'equity',
|
|
1168
|
-
reconcile: false,
|
|
1169
|
-
},
|
|
1170
|
-
{
|
|
1171
|
-
code: '4118',
|
|
1172
|
-
name: 'Vốn khác',
|
|
1173
|
-
nameEn: 'Other capital',
|
|
1174
|
-
accountType: 'equity',
|
|
1175
|
-
reconcile: false,
|
|
1176
|
-
},
|
|
1177
|
-
{
|
|
1178
|
-
code: '412',
|
|
1179
|
-
name: 'Chênh lệch đánh giá lại tài sản',
|
|
1180
|
-
nameEn: 'Revaluation differences on asset',
|
|
1181
|
-
accountType: 'equity',
|
|
1182
|
-
reconcile: false,
|
|
1183
|
-
},
|
|
1184
|
-
{
|
|
1185
|
-
code: '413',
|
|
1186
|
-
name: 'Chênh lệch tỷ giá hối đoái',
|
|
1187
|
-
nameEn: 'Exchange rate differences',
|
|
1188
|
-
accountType: 'equity',
|
|
1189
|
-
reconcile: false,
|
|
1190
|
-
},
|
|
1191
|
-
{
|
|
1192
|
-
code: '414',
|
|
1193
|
-
name: 'Quỹ đầu tư phát triển',
|
|
1194
|
-
nameEn: 'Investment & development fund',
|
|
1195
|
-
accountType: 'equity',
|
|
1196
|
-
reconcile: false,
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
code: '418',
|
|
1200
|
-
name: 'Các quỹ khác thuộc vốn chủ sở hữu',
|
|
1201
|
-
nameEn: 'Other equity funds',
|
|
1202
|
-
accountType: 'equity',
|
|
1203
|
-
reconcile: false,
|
|
1204
|
-
},
|
|
1205
|
-
{
|
|
1206
|
-
code: '419',
|
|
1207
|
-
name: 'Cổ phiếu mua lại của chính mình',
|
|
1208
|
-
nameEn: 'Stocks bought from oneself',
|
|
1209
|
-
accountType: 'equity',
|
|
1210
|
-
reconcile: false,
|
|
1211
|
-
},
|
|
1212
|
-
{
|
|
1213
|
-
code: '4211',
|
|
1214
|
-
name: 'Lợi nhuận sau thuế chưa phân phối năm trước',
|
|
1215
|
-
nameEn: 'Undistributed profit after tax of previous year',
|
|
1216
|
-
accountType: 'equity',
|
|
1217
|
-
reconcile: false,
|
|
1218
|
-
},
|
|
1219
|
-
{
|
|
1220
|
-
code: '4212',
|
|
1221
|
-
name: 'Lợi nhuận sau thuế chưa phân phối năm nay',
|
|
1222
|
-
nameEn: 'Undistributed profit after tax of current year',
|
|
1223
|
-
accountType: 'equity',
|
|
1224
|
-
reconcile: false,
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
code: '511',
|
|
1228
|
-
name: 'Doanh thu bán hàng và cung cấp dịch vụ',
|
|
1229
|
-
nameEn: 'Revenue from sales and services',
|
|
1230
|
-
accountType: 'income',
|
|
1231
|
-
reconcile: false,
|
|
1232
|
-
},
|
|
1233
|
-
{
|
|
1234
|
-
code: '515',
|
|
1235
|
-
name: 'Doanh thu hoạt động tài chính',
|
|
1236
|
-
nameEn: 'Financial income',
|
|
1237
|
-
accountType: 'income',
|
|
1238
|
-
reconcile: false,
|
|
1239
|
-
},
|
|
1240
|
-
{
|
|
1241
|
-
code: '521',
|
|
1242
|
-
name: 'Các khoản giảm trừ doanh thu',
|
|
1243
|
-
nameEn: 'Sales discounts',
|
|
1244
|
-
accountType: 'income',
|
|
1245
|
-
reconcile: false,
|
|
1246
|
-
},
|
|
1247
|
-
{
|
|
1248
|
-
code: '621',
|
|
1249
|
-
name: 'Chi phí nguyên liệu, vật liệu trực tiếp',
|
|
1250
|
-
nameEn: 'Direct raw material costs',
|
|
1251
|
-
accountType: 'expense_direct_cost',
|
|
1252
|
-
reconcile: false,
|
|
1253
|
-
},
|
|
1254
|
-
{
|
|
1255
|
-
code: '622',
|
|
1256
|
-
name: 'Chi phí nhân công trực tiếp',
|
|
1257
|
-
nameEn: 'Direct labour costs',
|
|
1258
|
-
accountType: 'expense_direct_cost',
|
|
1259
|
-
reconcile: false,
|
|
1260
|
-
},
|
|
1261
|
-
{
|
|
1262
|
-
code: '6231',
|
|
1263
|
-
name: 'Chi phí nhân công',
|
|
1264
|
-
nameEn: 'Labour costs',
|
|
1265
|
-
accountType: 'expense_direct_cost',
|
|
1266
|
-
reconcile: false,
|
|
1267
|
-
},
|
|
1268
|
-
{
|
|
1269
|
-
code: '6232',
|
|
1270
|
-
name: 'Chi phí nguyên, vật liệu',
|
|
1271
|
-
nameEn: 'Material costs',
|
|
1272
|
-
accountType: 'expense_direct_cost',
|
|
1273
|
-
reconcile: false,
|
|
1274
|
-
},
|
|
1275
|
-
{
|
|
1276
|
-
code: '6233',
|
|
1277
|
-
name: 'Chi phí dụng cụ sản xuất',
|
|
1278
|
-
nameEn: 'Tools and instruments',
|
|
1279
|
-
accountType: 'expense_direct_cost',
|
|
1280
|
-
reconcile: false,
|
|
1281
|
-
},
|
|
1282
|
-
{
|
|
1283
|
-
code: '6234',
|
|
1284
|
-
name: 'Chi phí khấu hao máy thi công',
|
|
1285
|
-
nameEn: 'Equipment depreciation expense',
|
|
1286
|
-
accountType: 'expense_direct_cost',
|
|
1287
|
-
reconcile: false,
|
|
1288
|
-
},
|
|
1289
|
-
{
|
|
1290
|
-
code: '6237',
|
|
1291
|
-
name: 'Chi phí dịch vụ mua ngoài',
|
|
1292
|
-
nameEn: 'Outside services',
|
|
1293
|
-
accountType: 'expense_direct_cost',
|
|
1294
|
-
reconcile: false,
|
|
1295
|
-
},
|
|
1296
|
-
{
|
|
1297
|
-
code: '6238',
|
|
1298
|
-
name: 'Chi phí bằng tiền khác',
|
|
1299
|
-
nameEn: 'Other expenses',
|
|
1300
|
-
accountType: 'expense_direct_cost',
|
|
1301
|
-
reconcile: false,
|
|
1302
|
-
},
|
|
1303
|
-
{
|
|
1304
|
-
code: '6271',
|
|
1305
|
-
name: 'Chi phí nhân viên phân xưởng',
|
|
1306
|
-
nameEn: 'Factory staff costs',
|
|
1307
|
-
accountType: 'expense_direct_cost',
|
|
1308
|
-
reconcile: false,
|
|
1309
|
-
},
|
|
1310
|
-
{
|
|
1311
|
-
code: '6272',
|
|
1312
|
-
name: 'Chi phí nguyên, vật liệu',
|
|
1313
|
-
nameEn: 'Material costs',
|
|
1314
|
-
accountType: 'expense_direct_cost',
|
|
1315
|
-
reconcile: false,
|
|
1316
|
-
},
|
|
1317
|
-
{
|
|
1318
|
-
code: '6273',
|
|
1319
|
-
name: 'Chi phí dụng cụ sản xuất',
|
|
1320
|
-
nameEn: 'Tools and instruments',
|
|
1321
|
-
accountType: 'expense_direct_cost',
|
|
1322
|
-
reconcile: false,
|
|
1323
|
-
},
|
|
1324
|
-
{
|
|
1325
|
-
code: '6274',
|
|
1326
|
-
name: 'Chi phí khấu hao TSCĐ',
|
|
1327
|
-
nameEn: 'Fixed asset depreciation',
|
|
1328
|
-
accountType: 'expense_depreciation',
|
|
1329
|
-
reconcile: false,
|
|
1330
|
-
},
|
|
1331
|
-
{
|
|
1332
|
-
code: '6275',
|
|
1333
|
-
name: 'Thuế, phí, lệ phí',
|
|
1334
|
-
nameEn: 'Taxes, fees and charges',
|
|
1335
|
-
accountType: 'expense_direct_cost',
|
|
1336
|
-
reconcile: false,
|
|
1337
|
-
},
|
|
1338
|
-
{
|
|
1339
|
-
code: '6277',
|
|
1340
|
-
name: 'Chi phí dịch vụ mua ngoài',
|
|
1341
|
-
nameEn: 'Outside services',
|
|
1342
|
-
accountType: 'expense_direct_cost',
|
|
1343
|
-
reconcile: false,
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
code: '6278',
|
|
1347
|
-
name: 'Chi phí bằng tiền khác',
|
|
1348
|
-
nameEn: 'Other expenses',
|
|
1349
|
-
accountType: 'expense_direct_cost',
|
|
1350
|
-
reconcile: false,
|
|
1351
|
-
},
|
|
1352
|
-
{
|
|
1353
|
-
code: '632',
|
|
1354
|
-
name: 'Giá vốn hàng bán',
|
|
1355
|
-
nameEn: 'Costs of goods sold',
|
|
1356
|
-
accountType: 'expense_direct_cost',
|
|
1357
|
-
reconcile: false,
|
|
1358
|
-
},
|
|
1359
|
-
{
|
|
1360
|
-
code: '635',
|
|
1361
|
-
name: 'Chi phí tài chính',
|
|
1362
|
-
nameEn: 'Financial expenses',
|
|
1363
|
-
accountType: 'expense',
|
|
1364
|
-
reconcile: false,
|
|
1365
|
-
},
|
|
1366
|
-
{
|
|
1367
|
-
code: '6351',
|
|
1368
|
-
name: 'Chi phí tài chính',
|
|
1369
|
-
nameEn: 'Financial expenses - interest expense',
|
|
1370
|
-
accountType: 'expense',
|
|
1371
|
-
reconcile: false,
|
|
1372
|
-
},
|
|
1373
|
-
{
|
|
1374
|
-
code: '6411',
|
|
1375
|
-
name: 'Chi phí nhân viên',
|
|
1376
|
-
nameEn: 'Employees costs',
|
|
1377
|
-
accountType: 'expense',
|
|
1378
|
-
reconcile: false,
|
|
1379
|
-
},
|
|
1380
|
-
{
|
|
1381
|
-
code: '6412',
|
|
1382
|
-
name: 'Chi phí nguyên vật liệu, bao bì',
|
|
1383
|
-
nameEn: 'Materials and packing materials',
|
|
1384
|
-
accountType: 'expense',
|
|
1385
|
-
reconcile: false,
|
|
1386
|
-
},
|
|
1387
|
-
{
|
|
1388
|
-
code: '6413',
|
|
1389
|
-
name: 'Chi phí dụng cụ, đồ dùng',
|
|
1390
|
-
nameEn: 'Tools and instruments',
|
|
1391
|
-
accountType: 'expense',
|
|
1392
|
-
reconcile: false,
|
|
1393
|
-
},
|
|
1394
|
-
{
|
|
1395
|
-
code: '6414',
|
|
1396
|
-
name: 'Chi phí khấu hao TSCĐ',
|
|
1397
|
-
nameEn: 'Fixed asset depreciation',
|
|
1398
|
-
accountType: 'expense_depreciation',
|
|
1399
|
-
reconcile: false,
|
|
1400
|
-
},
|
|
1401
|
-
{
|
|
1402
|
-
code: '6415',
|
|
1403
|
-
name: 'Thuế, phí, lệ phí',
|
|
1404
|
-
nameEn: 'Taxes, fees and charges',
|
|
1405
|
-
accountType: 'expense',
|
|
1406
|
-
reconcile: false,
|
|
1407
|
-
},
|
|
1408
|
-
{
|
|
1409
|
-
code: '6417',
|
|
1410
|
-
name: 'Chi phí dịch vụ mua ngoài',
|
|
1411
|
-
nameEn: 'Outside services',
|
|
1412
|
-
accountType: 'expense',
|
|
1413
|
-
reconcile: false,
|
|
1414
|
-
},
|
|
1415
|
-
{
|
|
1416
|
-
code: '6418',
|
|
1417
|
-
name: 'Chi phí bằng tiền khác',
|
|
1418
|
-
nameEn: 'Other expenses',
|
|
1419
|
-
accountType: 'expense',
|
|
1420
|
-
reconcile: false,
|
|
1421
|
-
},
|
|
1422
|
-
{
|
|
1423
|
-
code: '6421',
|
|
1424
|
-
name: 'Chi phí nhân viên',
|
|
1425
|
-
nameEn: 'Employees management costs',
|
|
1426
|
-
accountType: 'expense',
|
|
1427
|
-
reconcile: false,
|
|
1428
|
-
},
|
|
1429
|
-
{
|
|
1430
|
-
code: '6422',
|
|
1431
|
-
name: 'Chi phí vật liệu quản lý',
|
|
1432
|
-
nameEn: 'Office supply expenses',
|
|
1433
|
-
accountType: 'expense',
|
|
1434
|
-
reconcile: false,
|
|
1435
|
-
},
|
|
1436
|
-
{
|
|
1437
|
-
code: '6423',
|
|
1438
|
-
name: 'Chi phí đồ dùng văn phòng',
|
|
1439
|
-
nameEn: 'Stationery costs',
|
|
1440
|
-
accountType: 'expense',
|
|
1441
|
-
reconcile: false,
|
|
1442
|
-
},
|
|
1443
|
-
{
|
|
1444
|
-
code: '6424',
|
|
1445
|
-
name: 'Chi phí khấu hao TSCĐ',
|
|
1446
|
-
nameEn: 'Fixed asset depreciation',
|
|
1447
|
-
accountType: 'expense_depreciation',
|
|
1448
|
-
reconcile: false,
|
|
1449
|
-
},
|
|
1450
|
-
{
|
|
1451
|
-
code: '6425',
|
|
1452
|
-
name: 'Thuế, phí và lệ phí',
|
|
1453
|
-
nameEn: 'Taxes, fees and charges',
|
|
1454
|
-
accountType: 'expense',
|
|
1455
|
-
reconcile: false,
|
|
1456
|
-
},
|
|
1457
|
-
{
|
|
1458
|
-
code: '6426',
|
|
1459
|
-
name: 'Chi phí dự phòng',
|
|
1460
|
-
nameEn: 'Provision expenses',
|
|
1461
|
-
accountType: 'expense',
|
|
1462
|
-
reconcile: false,
|
|
1463
|
-
},
|
|
1464
|
-
{
|
|
1465
|
-
code: '6427',
|
|
1466
|
-
name: 'Chi phí dịch vụ mua ngoài',
|
|
1467
|
-
nameEn: 'Outside services',
|
|
1468
|
-
accountType: 'expense',
|
|
1469
|
-
reconcile: false,
|
|
1470
|
-
},
|
|
1471
|
-
{
|
|
1472
|
-
code: '6428',
|
|
1473
|
-
name: 'Chi phí bằng tiền khác',
|
|
1474
|
-
nameEn: 'Other expenses',
|
|
1475
|
-
accountType: 'expense',
|
|
1476
|
-
reconcile: false,
|
|
1477
|
-
},
|
|
1478
|
-
{
|
|
1479
|
-
code: '711',
|
|
1480
|
-
name: 'Thu nhập khác',
|
|
1481
|
-
nameEn: 'Other Income',
|
|
1482
|
-
accountType: 'income_other',
|
|
1483
|
-
reconcile: false,
|
|
1484
|
-
},
|
|
1485
|
-
{
|
|
1486
|
-
code: '811',
|
|
1487
|
-
name: 'Chi phí khác',
|
|
1488
|
-
nameEn: 'Other Expenses',
|
|
1489
|
-
accountType: 'expense',
|
|
1490
|
-
reconcile: false,
|
|
1491
|
-
},
|
|
1492
|
-
{
|
|
1493
|
-
code: '82111',
|
|
1494
|
-
name: 'Chi phí thuế thu nhập doanh nghiệp hiện hành theo quy định của Luật thuế thu nhập doanh nghiệp',
|
|
1495
|
-
nameEn: 'Current corporate income tax expenses according to the provisions of the Law on Corporate Income Tax',
|
|
1496
|
-
accountType: 'expense',
|
|
1497
|
-
reconcile: false,
|
|
1498
|
-
},
|
|
1499
|
-
{
|
|
1500
|
-
code: '82112',
|
|
1501
|
-
name: 'Chi phí thuế thu nhập doanh nghiệp bổ sung theo quy định về thuế tối thiểu toàn cầu',
|
|
1502
|
-
nameEn: 'Additional corporate income tax expense under the global minimum tax rules',
|
|
1503
|
-
accountType: 'expense',
|
|
1504
|
-
reconcile: false,
|
|
1505
|
-
},
|
|
1506
|
-
{
|
|
1507
|
-
code: '8212',
|
|
1508
|
-
name: 'Chi phí thuế thu nhập doanh nghiệp hoãn lại',
|
|
1509
|
-
nameEn: 'Deferred tax expense',
|
|
1510
|
-
accountType: 'expense',
|
|
1511
|
-
reconcile: false,
|
|
1512
|
-
},
|
|
1513
|
-
{
|
|
1514
|
-
code: '911',
|
|
1515
|
-
name: 'Xác định kết quả kinh doanh',
|
|
1516
|
-
nameEn: 'Income Summary',
|
|
1517
|
-
accountType: 'equity_unaffected',
|
|
1518
|
-
reconcile: false,
|
|
1519
|
-
},
|
|
1520
|
-
];
|
|
1521
|
-
export const TT99_ACCOUNT_CHECKSUM = '62e0ccee163b4b4b336a7c9c6e28823a97f9ef16462e2b378e8133ca856c6b71';
|
|
1522
|
-
export const TT99_CATALOG_CHECKSUM = 'c5fa8cb1c165ae56c5137d99df72464914a6f9dc63a2d4cdf807a465f0432da9';
|
|
1523
|
-
export const TT99_CODE = 'TT99_2025';
|
|
1524
|
-
export const TT99_COUNTRY = 'VN';
|
|
1525
|
-
export const TT99_LEGAL_BASIS = 'Thông tư 99/2025/TT-BTC ngày 27/10/2025';
|
|
1526
|
-
export const VIETNAM_TAXES = [
|
|
1527
|
-
{
|
|
1528
|
-
key: 'vat-purchase-10',
|
|
1529
|
-
name: 'GTGT 10%',
|
|
1530
|
-
description: 'Thuế GTGT được khấu trừ 10%',
|
|
1531
|
-
use: 'purchase',
|
|
1532
|
-
amount: '10',
|
|
1533
|
-
accountCode: '1331',
|
|
1534
|
-
},
|
|
1535
|
-
{
|
|
1536
|
-
key: 'vat-purchase-8',
|
|
1537
|
-
name: 'GTGT 8%',
|
|
1538
|
-
description: 'Thuế GTGT được khấu trừ 8%',
|
|
1539
|
-
use: 'purchase',
|
|
1540
|
-
amount: '8',
|
|
1541
|
-
accountCode: '1331',
|
|
1542
|
-
},
|
|
1543
|
-
{
|
|
1544
|
-
key: 'vat-purchase-5',
|
|
1545
|
-
name: 'GTGT 5%',
|
|
1546
|
-
description: 'Thuế GTGT được khấu trừ 5%',
|
|
1547
|
-
use: 'purchase',
|
|
1548
|
-
amount: '5',
|
|
1549
|
-
accountCode: '1331',
|
|
1550
|
-
},
|
|
1551
|
-
{
|
|
1552
|
-
key: 'vat-purchase-0',
|
|
1553
|
-
name: 'GTGT 0%',
|
|
1554
|
-
description: 'Thuế GTGT được khấu trừ 0%',
|
|
1555
|
-
use: 'purchase',
|
|
1556
|
-
amount: '0',
|
|
1557
|
-
accountCode: '1331',
|
|
1558
|
-
},
|
|
1559
|
-
{
|
|
1560
|
-
key: 'vat-purchase-exempt',
|
|
1561
|
-
name: 'KCT',
|
|
1562
|
-
description: 'Không thuộc đối tượng chịu thuế GTGT',
|
|
1563
|
-
use: 'purchase',
|
|
1564
|
-
amount: '0',
|
|
1565
|
-
},
|
|
1566
|
-
{
|
|
1567
|
-
key: 'vat-purchase-not-declared',
|
|
1568
|
-
name: 'KKKNT',
|
|
1569
|
-
description: 'Không kê khai, tính nộp thuế GTGT',
|
|
1570
|
-
use: 'purchase',
|
|
1571
|
-
amount: '0',
|
|
1572
|
-
},
|
|
1573
|
-
{
|
|
1574
|
-
key: 'vat-sale-10',
|
|
1575
|
-
name: 'GTGT 10%',
|
|
1576
|
-
description: 'Thuế GTGT phải nộp 10%',
|
|
1577
|
-
use: 'sale',
|
|
1578
|
-
amount: '10',
|
|
1579
|
-
accountCode: '33311',
|
|
1580
|
-
},
|
|
1581
|
-
{
|
|
1582
|
-
key: 'vat-sale-8',
|
|
1583
|
-
name: 'GTGT 8%',
|
|
1584
|
-
description: 'Thuế GTGT phải nộp 8%',
|
|
1585
|
-
use: 'sale',
|
|
1586
|
-
amount: '8',
|
|
1587
|
-
accountCode: '33311',
|
|
1588
|
-
},
|
|
1589
|
-
{
|
|
1590
|
-
key: 'vat-sale-5',
|
|
1591
|
-
name: 'GTGT 5%',
|
|
1592
|
-
description: 'Thuế GTGT phải nộp 5%',
|
|
1593
|
-
use: 'sale',
|
|
1594
|
-
amount: '5',
|
|
1595
|
-
accountCode: '33311',
|
|
1596
|
-
},
|
|
1597
|
-
{
|
|
1598
|
-
key: 'vat-sale-0',
|
|
1599
|
-
name: 'GTGT 0%',
|
|
1600
|
-
description: 'Thuế GTGT phải nộp 0%',
|
|
1601
|
-
use: 'sale',
|
|
1602
|
-
amount: '0',
|
|
1603
|
-
accountCode: '33311',
|
|
1604
|
-
},
|
|
1605
|
-
{
|
|
1606
|
-
key: 'vat-sale-exempt',
|
|
1607
|
-
name: 'KCT',
|
|
1608
|
-
description: 'Không thuộc đối tượng chịu thuế GTGT',
|
|
1609
|
-
use: 'sale',
|
|
1610
|
-
amount: '0',
|
|
1611
|
-
},
|
|
1612
|
-
{
|
|
1613
|
-
key: 'vat-sale-not-declared',
|
|
1614
|
-
name: 'KKKNT',
|
|
1615
|
-
description: 'Không kê khai, tính nộp thuế GTGT',
|
|
1616
|
-
use: 'sale',
|
|
1617
|
-
amount: '0',
|
|
1618
|
-
},
|
|
1619
|
-
{
|
|
1620
|
-
key: 'vat-purchase-import-10',
|
|
1621
|
-
name: 'GTGT hàng nhập khẩu 10%',
|
|
1622
|
-
description: 'Thuế GTGT được khấu trừ cho hàng nhập khẩu 10%',
|
|
1623
|
-
use: 'purchase',
|
|
1624
|
-
amount: '10',
|
|
1625
|
-
accountCode: '1331',
|
|
1626
|
-
},
|
|
1627
|
-
{
|
|
1628
|
-
key: 'vat-purchase-import-8',
|
|
1629
|
-
name: 'GTGT hàng nhập khẩu 8%',
|
|
1630
|
-
description: 'Thuế GTGT được khấu trừ cho hàng nhập khẩu 8%',
|
|
1631
|
-
use: 'purchase',
|
|
1632
|
-
amount: '8',
|
|
1633
|
-
accountCode: '1331',
|
|
1634
|
-
},
|
|
1635
|
-
{
|
|
1636
|
-
key: 'vat-purchase-import-5',
|
|
1637
|
-
name: 'GTGT hàng nhập khẩu 5%',
|
|
1638
|
-
description: 'Thuế GTGT được khấu trừ cho hàng nhập khẩu 5%',
|
|
1639
|
-
use: 'purchase',
|
|
1640
|
-
amount: '5',
|
|
1641
|
-
accountCode: '1331',
|
|
1642
|
-
},
|
|
1643
|
-
{
|
|
1644
|
-
key: 'vat-purchase-import-0',
|
|
1645
|
-
name: 'GTGT hàng nhập khẩu 0%',
|
|
1646
|
-
description: 'Thuế GTGT được khấu trừ cho hàng nhập khẩu 0%',
|
|
1647
|
-
use: 'purchase',
|
|
1648
|
-
amount: '0',
|
|
1649
|
-
accountCode: '1331',
|
|
1650
|
-
},
|
|
1651
|
-
{
|
|
1652
|
-
key: 'import-5',
|
|
1653
|
-
name: 'Thuế nhập khẩu 5%',
|
|
1654
|
-
description: 'Thuế nhập khẩu',
|
|
1655
|
-
use: 'purchase',
|
|
1656
|
-
amount: '5',
|
|
1657
|
-
accountCode: '33331',
|
|
1658
|
-
includeBaseAmount: true,
|
|
1659
|
-
},
|
|
1660
|
-
];
|
|
1661
|
-
//# sourceMappingURL=tt99.js.map
|