@open-mercato/core 0.6.7 → 0.6.8-develop.6875.1.871a4afc94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/AGENTS.md +3 -3
- package/agentic/standalone-guide.md +13 -0
- package/dist/bootstrap.js +16 -1
- package/dist/bootstrap.js.map +2 -2
- package/dist/generated/entities/attachment_quota_reservation/index.js +33 -0
- package/dist/generated/entities/attachment_quota_reservation/index.js.map +7 -0
- package/dist/generated/entities/customer_deal_person_link/index.js +2 -0
- package/dist/generated/entities/customer_deal_person_link/index.js.map +2 -2
- package/dist/generated/entities/customer_user_invitation/index.js +2 -0
- package/dist/generated/entities/customer_user_invitation/index.js.map +2 -2
- package/dist/generated/entities/gateway_payment_operation/index.js +2 -0
- package/dist/generated/entities/gateway_payment_operation/index.js.map +2 -2
- package/dist/generated/entities/gateway_transaction/index.js +2 -0
- package/dist/generated/entities/gateway_transaction/index.js.map +2 -2
- package/dist/generated/entities/organization/index.js +2 -0
- package/dist/generated/entities/organization/index.js.map +2 -2
- package/dist/generated/entities/resources_resource/index.js +2 -0
- package/dist/generated/entities/resources_resource/index.js.map +2 -2
- package/dist/generated/entities.ids.generated.js +3 -1
- package/dist/generated/entities.ids.generated.js.map +2 -2
- package/dist/generated/entity-fields-registry.js +23 -0
- package/dist/generated/entity-fields-registry.js.map +2 -2
- package/dist/helpers/integration/salesFixtures.js +31 -2
- package/dist/helpers/integration/salesFixtures.js.map +2 -2
- package/dist/helpers/integration/salesUi.js +5 -0
- package/dist/helpers/integration/salesUi.js.map +2 -2
- package/dist/modules/api_keys/backend/api-keys/page.js +2 -1
- package/dist/modules/api_keys/backend/api-keys/page.js.map +2 -2
- package/dist/modules/api_keys/extension-points.js +16 -0
- package/dist/modules/api_keys/extension-points.js.map +7 -0
- package/dist/modules/attachments/api/route.js +120 -10
- package/dist/modules/attachments/api/route.js.map +2 -2
- package/dist/modules/attachments/backend/config/attachments/page.js +1 -1
- package/dist/modules/attachments/backend/config/attachments/page.js.map +2 -2
- package/dist/modules/attachments/data/entities.js +67 -1
- package/dist/modules/attachments/data/entities.js.map +2 -2
- package/dist/modules/attachments/di.js +7 -1
- package/dist/modules/attachments/di.js.map +2 -2
- package/dist/modules/attachments/fields/attachment.js +1 -1
- package/dist/modules/attachments/fields/attachment.js.map +2 -2
- package/dist/modules/attachments/lib/drivers/index.js.map +1 -1
- package/dist/modules/attachments/lib/drivers/localDriver.js +19 -6
- package/dist/modules/attachments/lib/drivers/localDriver.js.map +2 -2
- package/dist/modules/attachments/lib/quota-recovery-queue.js +9 -0
- package/dist/modules/attachments/lib/quota-recovery-queue.js.map +7 -0
- package/dist/modules/attachments/lib/quota-service.js +224 -0
- package/dist/modules/attachments/lib/quota-service.js.map +7 -0
- package/dist/modules/attachments/lib/upload-limits.js +33 -0
- package/dist/modules/attachments/lib/upload-limits.js.map +2 -2
- package/dist/modules/attachments/migrations/Migration20260709234741_attachments.js +13 -0
- package/dist/modules/attachments/migrations/Migration20260709234741_attachments.js.map +7 -0
- package/dist/modules/attachments/workers/quota-recovery.js +45 -0
- package/dist/modules/attachments/workers/quota-recovery.js.map +7 -0
- package/dist/modules/audit_logs/api/audit-logs/access/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/access/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/actions/export/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/actions/export/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/actions/route.js +5 -1
- package/dist/modules/audit_logs/api/audit-logs/actions/route.js.map +2 -2
- package/dist/modules/audit_logs/api/audit-logs/readScope.js +12 -0
- package/dist/modules/audit_logs/api/audit-logs/readScope.js.map +7 -0
- package/dist/modules/audit_logs/components/AccessLogsTable.js +2 -1
- package/dist/modules/audit_logs/components/AccessLogsTable.js.map +2 -2
- package/dist/modules/audit_logs/components/AuditLogsActions.js +3 -2
- package/dist/modules/audit_logs/components/AuditLogsActions.js.map +2 -2
- package/dist/modules/audit_logs/extension-points.js +14 -0
- package/dist/modules/audit_logs/extension-points.js.map +7 -0
- package/dist/modules/auth/api/admin/nav.js +17 -4
- package/dist/modules/auth/api/admin/nav.js.map +2 -2
- package/dist/modules/auth/api/profile/route.js +8 -2
- package/dist/modules/auth/api/profile/route.js.map +2 -2
- package/dist/modules/auth/api/users/route.js +8 -19
- package/dist/modules/auth/api/users/route.js.map +2 -2
- package/dist/modules/auth/backend/auth/profile/page.js.map +2 -2
- package/dist/modules/auth/backend/profile/change-password/page.js.map +2 -2
- package/dist/modules/auth/backend/roles/page.js +2 -1
- package/dist/modules/auth/backend/roles/page.js.map +2 -2
- package/dist/modules/auth/backend/settings/page.js +14 -9
- package/dist/modules/auth/backend/settings/page.js.map +2 -2
- package/dist/modules/auth/backend/users/page.js +2 -1
- package/dist/modules/auth/backend/users/page.js.map +2 -2
- package/dist/modules/auth/cli.js +1 -1
- package/dist/modules/auth/cli.js.map +2 -2
- package/dist/modules/auth/components/UserConsentsPanel.js +9 -9
- package/dist/modules/auth/components/UserConsentsPanel.js.map +2 -2
- package/dist/modules/auth/extension-points.js +21 -0
- package/dist/modules/auth/extension-points.js.map +7 -0
- package/dist/modules/auth/frontend/login.js +7 -3
- package/dist/modules/auth/frontend/login.js.map +2 -2
- package/dist/modules/auth/frontend/reset.js +2 -2
- package/dist/modules/auth/frontend/reset.js.map +2 -2
- package/dist/modules/auth/lib/backendChrome.js +45 -29
- package/dist/modules/auth/lib/backendChrome.js.map +2 -2
- package/dist/modules/auth/lib/setup-app.js +17 -2
- package/dist/modules/auth/lib/setup-app.js.map +2 -2
- package/dist/modules/auth/lib/tenantAccess.js +7 -0
- package/dist/modules/auth/lib/tenantAccess.js.map +2 -2
- package/dist/modules/auth/services/rbacService.js +29 -44
- package/dist/modules/auth/services/rbacService.js.map +2 -2
- package/dist/modules/business_rules/api/openmercato-call-options/route.js +85 -0
- package/dist/modules/business_rules/api/openmercato-call-options/route.js.map +7 -0
- package/dist/modules/business_rules/api/rules/route.js +71 -4
- package/dist/modules/business_rules/api/rules/route.js.map +2 -2
- package/dist/modules/business_rules/backend/rules/page.js +2 -1
- package/dist/modules/business_rules/backend/rules/page.js.map +2 -2
- package/dist/modules/business_rules/components/ActionBuilder.js +47 -4
- package/dist/modules/business_rules/components/ActionBuilder.js.map +3 -3
- package/dist/modules/business_rules/components/ActionRow.js +106 -16
- package/dist/modules/business_rules/components/ActionRow.js.map +2 -2
- package/dist/modules/business_rules/components/ConditionRow.js +8 -4
- package/dist/modules/business_rules/components/ConditionRow.js.map +2 -2
- package/dist/modules/business_rules/components/utils/actionValidation.js +6 -0
- package/dist/modules/business_rules/components/utils/actionValidation.js.map +2 -2
- package/dist/modules/business_rules/events.js +13 -0
- package/dist/modules/business_rules/events.js.map +7 -0
- package/dist/modules/business_rules/extension-points.js +13 -0
- package/dist/modules/business_rules/extension-points.js.map +7 -0
- package/dist/modules/business_rules/lib/action-executor.js +148 -0
- package/dist/modules/business_rules/lib/action-executor.js.map +2 -2
- package/dist/modules/business_rules/lib/openmercato-call-options-types.js +5 -0
- package/dist/modules/business_rules/lib/openmercato-call-options-types.js.map +7 -0
- package/dist/modules/business_rules/lib/openmercato-call-options.js +231 -0
- package/dist/modules/business_rules/lib/openmercato-call-options.js.map +7 -0
- package/dist/modules/business_rules/lib/rule-engine.js +5 -1
- package/dist/modules/business_rules/lib/rule-engine.js.map +2 -2
- package/dist/modules/catalog/backend/catalog/products/[id]/page.js +6 -5
- package/dist/modules/catalog/backend/catalog/products/[id]/page.js.map +2 -2
- package/dist/modules/catalog/backend/catalog/products/create/page.js +7 -6
- package/dist/modules/catalog/backend/catalog/products/create/page.js.map +2 -2
- package/dist/modules/catalog/components/PriceKindSettings.js +3 -3
- package/dist/modules/catalog/components/PriceKindSettings.js.map +2 -2
- package/dist/modules/catalog/components/categories/CategoriesDataTable.js +2 -1
- package/dist/modules/catalog/components/categories/CategoriesDataTable.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js +3 -3
- package/dist/modules/catalog/components/products/ProductCategorizeSection.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductMediaManager.js +1 -1
- package/dist/modules/catalog/components/products/ProductMediaManager.js.map +2 -2
- package/dist/modules/catalog/components/products/ProductsDataTable.js +3 -2
- package/dist/modules/catalog/components/products/ProductsDataTable.js.map +2 -2
- package/dist/modules/catalog/components/products/VariantBuilder.js +5 -5
- package/dist/modules/catalog/components/products/VariantBuilder.js.map +2 -2
- package/dist/modules/catalog/events.js +1 -0
- package/dist/modules/catalog/events.js.map +2 -2
- package/dist/modules/catalog/extension-points.js +27 -0
- package/dist/modules/catalog/extension-points.js.map +7 -0
- package/dist/modules/catalog/widgets/injection/product-bulk-delete/widget.js +10 -5
- package/dist/modules/catalog/widgets/injection/product-bulk-delete/widget.js.map +2 -2
- package/dist/modules/catalog/widgets/injection/product-seo/widget.js +1 -1
- package/dist/modules/catalog/widgets/injection/product-seo/widget.js.map +2 -2
- package/dist/modules/communication_channels/api/post/test-seed/route.js +52 -2
- package/dist/modules/communication_channels/api/post/test-seed/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/webhook/[provider]/route.js +11 -1
- package/dist/modules/communication_channels/api/post/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/communication_channels/api/post/webhooks/gmail/route.js +11 -6
- package/dist/modules/communication_channels/api/post/webhooks/gmail/route.js.map +2 -2
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js +2 -1
- package/dist/modules/communication_channels/backend/communication_channels/channels/page.js.map +2 -2
- package/dist/modules/communication_channels/backend/profile/communication-channels/page.js +8 -7
- package/dist/modules/communication_channels/backend/profile/communication-channels/page.js.map +2 -2
- package/dist/modules/communication_channels/data/enrichers.js +4 -4
- package/dist/modules/communication_channels/data/enrichers.js.map +2 -2
- package/dist/modules/communication_channels/extension-points.js +20 -0
- package/dist/modules/communication_channels/extension-points.js.map +7 -0
- package/dist/modules/communication_channels/lib/access-control.js +2 -2
- package/dist/modules/communication_channels/lib/access-control.js.map +2 -2
- package/dist/modules/configs/backend/config/system-status/page.js +2 -1
- package/dist/modules/configs/backend/config/system-status/page.js.map +2 -2
- package/dist/modules/configs/extension-points.js +18 -0
- package/dist/modules/configs/extension-points.js.map +7 -0
- package/dist/modules/configs/lib/upgrade-actions.js +12 -0
- package/dist/modules/configs/lib/upgrade-actions.js.map +2 -2
- package/dist/modules/currencies/backend/currencies/page.js +2 -1
- package/dist/modules/currencies/backend/currencies/page.js.map +2 -2
- package/dist/modules/currencies/backend/exchange-rates/page.js +2 -1
- package/dist/modules/currencies/backend/exchange-rates/page.js.map +2 -2
- package/dist/modules/currencies/di.js +4 -0
- package/dist/modules/currencies/di.js.map +2 -2
- package/dist/modules/currencies/extension-points.js +14 -0
- package/dist/modules/currencies/extension-points.js.map +7 -0
- package/dist/modules/currencies/services/baseCurrencyService.js +42 -0
- package/dist/modules/currencies/services/baseCurrencyService.js.map +7 -0
- package/dist/modules/customer_accounts/api/admin/users/[id].js +10 -1
- package/dist/modules/customer_accounts/api/admin/users/[id].js.map +2 -2
- package/dist/modules/customer_accounts/api/admin/users-invite.js +63 -4
- package/dist/modules/customer_accounts/api/admin/users-invite.js.map +2 -2
- package/dist/modules/customer_accounts/api/invitations/accept.js +1 -2
- package/dist/modules/customer_accounts/api/invitations/accept.js.map +2 -2
- package/dist/modules/customer_accounts/api/login.js +4 -2
- package/dist/modules/customer_accounts/api/login.js.map +2 -2
- package/dist/modules/customer_accounts/api/magic-link/verify.js +4 -2
- package/dist/modules/customer_accounts/api/magic-link/verify.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/feature-check.js +5 -4
- package/dist/modules/customer_accounts/api/portal/feature-check.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/nav.js +6 -4
- package/dist/modules/customer_accounts/api/portal/nav.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/profile.js +5 -1
- package/dist/modules/customer_accounts/api/portal/profile.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/sessions-refresh.js +3 -3
- package/dist/modules/customer_accounts/api/portal/sessions-refresh.js.map +2 -2
- package/dist/modules/customer_accounts/api/portal/users-invite.js +22 -2
- package/dist/modules/customer_accounts/api/portal/users-invite.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/roles/page.js +2 -1
- package/dist/modules/customer_accounts/backend/customer_accounts/roles/page.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.js +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.js.map +2 -2
- package/dist/modules/customer_accounts/backend/customer_accounts/users/page.js +2 -1
- package/dist/modules/customer_accounts/backend/customer_accounts/users/page.js.map +2 -2
- package/dist/modules/customer_accounts/data/entities.js +3 -0
- package/dist/modules/customer_accounts/data/entities.js.map +2 -2
- package/dist/modules/customer_accounts/data/validators.js +1 -0
- package/dist/modules/customer_accounts/data/validators.js.map +2 -2
- package/dist/modules/customer_accounts/emails/CustomerInvitationEmail.js +26 -0
- package/dist/modules/customer_accounts/emails/CustomerInvitationEmail.js.map +7 -0
- package/dist/modules/customer_accounts/extension-points.js +14 -0
- package/dist/modules/customer_accounts/extension-points.js.map +7 -0
- package/dist/modules/customer_accounts/lib/customerAuth.js +7 -2
- package/dist/modules/customer_accounts/lib/customerAuth.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerAuthServer.js +2 -1
- package/dist/modules/customer_accounts/lib/customerAuthServer.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerEntityOwnership.js +29 -3
- package/dist/modules/customer_accounts/lib/customerEntityOwnership.js.map +2 -2
- package/dist/modules/customer_accounts/lib/customerUrl.js +19 -10
- package/dist/modules/customer_accounts/lib/customerUrl.js.map +2 -2
- package/dist/modules/customer_accounts/lib/invitationEmail.js +35 -0
- package/dist/modules/customer_accounts/lib/invitationEmail.js.map +7 -0
- package/dist/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.js +13 -0
- package/dist/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.js.map +7 -0
- package/dist/modules/customer_accounts/services/customerInvitationService.js +32 -2
- package/dist/modules/customer_accounts/services/customerInvitationService.js.map +2 -2
- package/dist/modules/customer_accounts/services/customerRbacService.js +12 -3
- package/dist/modules/customer_accounts/services/customerRbacService.js.map +2 -2
- package/dist/modules/customer_accounts/setup.js +6 -0
- package/dist/modules/customer_accounts/setup.js.map +2 -2
- package/dist/modules/customer_accounts/subscribers/autoLinkCrm.js +47 -7
- package/dist/modules/customer_accounts/subscribers/autoLinkCrm.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection/account-status/widget.client.js +2 -2
- package/dist/modules/customer_accounts/widgets/injection/account-status/widget.client.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.js +1 -1
- package/dist/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.js.map +2 -2
- package/dist/modules/customer_accounts/widgets/injection-table.js +1 -1
- package/dist/modules/customer_accounts/widgets/injection-table.js.map +2 -2
- package/dist/modules/customers/analytics.js +4 -1
- package/dist/modules/customers/analytics.js.map +2 -2
- package/dist/modules/customers/api/companies/[id]/route.js +3 -4
- package/dist/modules/customers/api/companies/[id]/route.js.map +2 -2
- package/dist/modules/customers/api/deals/[id]/people/route.js +4 -2
- package/dist/modules/customers/api/deals/[id]/people/route.js.map +2 -2
- package/dist/modules/customers/api/deals/[id]/route.js +7 -3
- package/dist/modules/customers/api/deals/[id]/route.js.map +2 -2
- package/dist/modules/customers/api/deals/aggregate/route.js +5 -4
- package/dist/modules/customers/api/deals/aggregate/route.js.map +2 -2
- package/dist/modules/customers/api/deals/summary/route.js +14 -119
- package/dist/modules/customers/api/deals/summary/route.js.map +2 -2
- package/dist/modules/customers/api/people/[id]/companies/enriched/route.js +3 -2
- package/dist/modules/customers/api/people/[id]/companies/enriched/route.js.map +2 -2
- package/dist/modules/customers/api/utils.js +21 -24
- package/dist/modules/customers/api/utils.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies/[id]/page.js +2 -1
- package/dist/modules/customers/backend/customers/companies/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies/page.js +2 -1
- package/dist/modules/customers/backend/customers/companies/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js +16 -5
- package/dist/modules/customers/backend/customers/companies-v2/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/[id]/page.js +18 -11
- package/dist/modules/customers/backend/customers/deals/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/page.js +2 -1
- package/dist/modules/customers/backend/customers/deals/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.js +17 -3
- package/dist/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.js.map +2 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/page.js +8 -2
- package/dist/modules/customers/backend/customers/deals/pipeline/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people/[id]/page.js +2 -1
- package/dist/modules/customers/backend/customers/people/[id]/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people/page.js +2 -1
- package/dist/modules/customers/backend/customers/people/page.js.map +2 -2
- package/dist/modules/customers/backend/customers/people-v2/[id]/page.js +26 -10
- package/dist/modules/customers/backend/customers/people-v2/[id]/page.js.map +2 -2
- package/dist/modules/customers/cli.js +28 -11
- package/dist/modules/customers/cli.js.map +2 -2
- package/dist/modules/customers/commands/deals.js +48 -10
- package/dist/modules/customers/commands/deals.js.map +2 -2
- package/dist/modules/customers/commands/people.js +2 -0
- package/dist/modules/customers/commands/people.js.map +2 -2
- package/dist/modules/customers/components/CustomerTodosTable.js +2 -1
- package/dist/modules/customers/components/CustomerTodosTable.js.map +2 -2
- package/dist/modules/customers/components/calendar/CalendarEventEditor.js +1 -1
- package/dist/modules/customers/components/calendar/CalendarEventEditor.js.map +2 -2
- package/dist/modules/customers/components/detail/ActiveDealCard.js +2 -1
- package/dist/modules/customers/components/detail/ActiveDealCard.js.map +2 -2
- package/dist/modules/customers/components/detail/ActivitiesDayStrip.js +2 -3
- package/dist/modules/customers/components/detail/ActivitiesDayStrip.js.map +2 -2
- package/dist/modules/customers/components/detail/CompanyDetailTabs.js +26 -6
- package/dist/modules/customers/components/detail/CompanyDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/CompanyKpiBar.js +6 -5
- package/dist/modules/customers/components/detail/CompanyKpiBar.js.map +2 -2
- package/dist/modules/customers/components/detail/ConfirmDealLostDialog.js +2 -2
- package/dist/modules/customers/components/detail/ConfirmDealLostDialog.js.map +2 -2
- package/dist/modules/customers/components/detail/DealDetailTabs.js +30 -8
- package/dist/modules/customers/components/detail/DealDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/DealForm.js +2 -1
- package/dist/modules/customers/components/detail/DealForm.js.map +2 -2
- package/dist/modules/customers/components/detail/DealsSection.js +1 -1
- package/dist/modules/customers/components/detail/DealsSection.js.map +2 -2
- package/dist/modules/customers/components/detail/MiniWeekCalendar.js +7 -52
- package/dist/modules/customers/components/detail/MiniWeekCalendar.js.map +2 -2
- package/dist/modules/customers/components/detail/PersonDetailTabs.js +30 -8
- package/dist/modules/customers/components/detail/PersonDetailTabs.js.map +2 -2
- package/dist/modules/customers/components/detail/ScheduleActivityDialog.js +231 -216
- package/dist/modules/customers/components/detail/ScheduleActivityDialog.js.map +2 -2
- package/dist/modules/customers/components/detail/dashboard/helpers.js +4 -3
- package/dist/modules/customers/components/detail/dashboard/helpers.js.map +2 -2
- package/dist/modules/customers/components/detail/legacyActivities.js +69 -0
- package/dist/modules/customers/components/detail/legacyActivities.js.map +7 -0
- package/dist/modules/customers/components/formConfig.js +14 -10
- package/dist/modules/customers/components/formConfig.js.map +2 -2
- package/dist/modules/customers/data/entities.js +8 -0
- package/dist/modules/customers/data/entities.js.map +2 -2
- package/dist/modules/customers/data/validators.js +5 -2
- package/dist/modules/customers/data/validators.js.map +2 -2
- package/dist/modules/customers/extension-points.js +42 -0
- package/dist/modules/customers/extension-points.js.map +7 -0
- package/dist/modules/customers/lib/calendar/format.js +8 -4
- package/dist/modules/customers/lib/calendar/format.js.map +2 -2
- package/dist/modules/customers/lib/dealStatus.js +38 -0
- package/dist/modules/customers/lib/dealStatus.js.map +7 -0
- package/dist/modules/customers/lib/dealsSummaryQueries.js +144 -0
- package/dist/modules/customers/lib/dealsSummaryQueries.js.map +7 -0
- package/dist/modules/customers/lib/optionalBaseCurrency.js +19 -0
- package/dist/modules/customers/lib/optionalBaseCurrency.js.map +7 -0
- package/dist/modules/customers/lib/visibilityFilter.js +6 -4
- package/dist/modules/customers/lib/visibilityFilter.js.map +2 -2
- package/dist/modules/customers/migrations/Migration20260723210000_customers.js +15 -0
- package/dist/modules/customers/migrations/Migration20260723210000_customers.js.map +7 -0
- package/dist/modules/customers/search.js +50 -29
- package/dist/modules/customers/search.js.map +2 -2
- package/dist/modules/customers/utils/phoneDuplicates.js +1 -2
- package/dist/modules/customers/utils/phoneDuplicates.js.map +2 -2
- package/dist/modules/dashboards/api/layout/[itemId]/route.js +6 -3
- package/dist/modules/dashboards/api/layout/[itemId]/route.js.map +2 -2
- package/dist/modules/dashboards/api/layout/route.js +22 -9
- package/dist/modules/dashboards/api/layout/route.js.map +2 -2
- package/dist/modules/dashboards/api/roles/widgets/route.js +9 -3
- package/dist/modules/dashboards/api/roles/widgets/route.js.map +2 -2
- package/dist/modules/dashboards/api/users/widgets/route.js +9 -3
- package/dist/modules/dashboards/api/users/widgets/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/catalog.js +6 -3
- package/dist/modules/dashboards/api/widgets/catalog.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/batch/route.js +12 -3
- package/dist/modules/dashboards/api/widgets/data/batch/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/route.js +28 -3
- package/dist/modules/dashboards/api/widgets/data/route.js.map +2 -2
- package/dist/modules/dashboards/api/widgets/data/schema.js +28 -18
- package/dist/modules/dashboards/api/widgets/data/schema.js.map +2 -2
- package/dist/modules/dashboards/components/UnlabelledAmountNotice.js +33 -0
- package/dist/modules/dashboards/components/UnlabelledAmountNotice.js.map +7 -0
- package/dist/modules/dashboards/lib/access.js +5 -3
- package/dist/modules/dashboards/lib/access.js.map +2 -2
- package/dist/modules/dashboards/lib/aggregations.js +113 -46
- package/dist/modules/dashboards/lib/aggregations.js.map +2 -2
- package/dist/modules/dashboards/lib/exactDecimal.js +69 -0
- package/dist/modules/dashboards/lib/exactDecimal.js.map +7 -0
- package/dist/modules/dashboards/lib/formatters.js +84 -11
- package/dist/modules/dashboards/lib/formatters.js.map +2 -2
- package/dist/modules/dashboards/lib/optionalBaseCurrency.js +11 -0
- package/dist/modules/dashboards/lib/optionalBaseCurrency.js.map +7 -0
- package/dist/modules/dashboards/services/widgetDataService.js +316 -14
- package/dist/modules/dashboards/services/widgetDataService.js.map +2 -2
- package/dist/modules/dashboards/subscribers/invalidateWidgetDataCache.js +26 -0
- package/dist/modules/dashboards/subscribers/invalidateWidgetDataCache.js.map +7 -0
- package/dist/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.js +9 -3
- package/dist/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/config.js +52 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/config.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.js +52 -30
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.js +2 -2
- package/dist/modules/dashboards/widgets/dashboard/pipeline-summary/widget.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.js +9 -3
- package/dist/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.js +8 -3
- package/dist/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.js +26 -18
- package/dist/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/top-customers/widget.client.js +22 -14
- package/dist/modules/dashboards/widgets/dashboard/top-customers/widget.client.js.map +2 -2
- package/dist/modules/dashboards/widgets/dashboard/top-products/widget.client.js +10 -4
- package/dist/modules/dashboards/widgets/dashboard/top-products/widget.client.js.map +2 -2
- package/dist/modules/data_sync/api/mappings/[id]/route.js +22 -9
- package/dist/modules/data_sync/api/mappings/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/mappings/route.js +13 -4
- package/dist/modules/data_sync/api/mappings/route.js.map +2 -2
- package/dist/modules/data_sync/api/options.js +7 -2
- package/dist/modules/data_sync/api/options.js.map +2 -2
- package/dist/modules/data_sync/api/run.js +7 -2
- package/dist/modules/data_sync/api/run.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/cancel.js +8 -3
- package/dist/modules/data_sync/api/runs/[id]/cancel.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/retry.js +7 -2
- package/dist/modules/data_sync/api/runs/[id]/retry.js.map +2 -2
- package/dist/modules/data_sync/api/runs/[id]/route.js +8 -3
- package/dist/modules/data_sync/api/runs/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/runs.js +7 -2
- package/dist/modules/data_sync/api/runs.js.map +2 -2
- package/dist/modules/data_sync/api/schedules/[id]/route.js +19 -6
- package/dist/modules/data_sync/api/schedules/[id]/route.js.map +2 -2
- package/dist/modules/data_sync/api/schedules/route.js +13 -4
- package/dist/modules/data_sync/api/schedules/route.js.map +2 -2
- package/dist/modules/data_sync/api/validate.js +9 -4
- package/dist/modules/data_sync/api/validate.js.map +2 -2
- package/dist/modules/data_sync/backend/data-sync/page.js +5 -4
- package/dist/modules/data_sync/backend/data-sync/page.js.map +2 -2
- package/dist/modules/data_sync/components/IntegrationScheduleTab.js +5 -5
- package/dist/modules/data_sync/components/IntegrationScheduleTab.js.map +2 -2
- package/dist/modules/data_sync/extension-points.js +13 -0
- package/dist/modules/data_sync/extension-points.js.map +7 -0
- package/dist/modules/data_sync/lib/queue-policy.js +15 -0
- package/dist/modules/data_sync/lib/queue-policy.js.map +7 -0
- package/dist/modules/data_sync/lib/queue.js +16 -1
- package/dist/modules/data_sync/lib/queue.js.map +2 -2
- package/dist/modules/data_sync/lib/start-run.js +2 -1
- package/dist/modules/data_sync/lib/start-run.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-engine.js +35 -2
- package/dist/modules/data_sync/lib/sync-engine.js.map +2 -2
- package/dist/modules/data_sync/lib/sync-run-service.js +70 -2
- package/dist/modules/data_sync/lib/sync-run-service.js.map +2 -2
- package/dist/modules/data_sync/workers/sync-export.js +9 -2
- package/dist/modules/data_sync/workers/sync-export.js.map +2 -2
- package/dist/modules/data_sync/workers/sync-import.js +9 -2
- package/dist/modules/data_sync/workers/sync-import.js.map +2 -2
- package/dist/modules/design_system/acl.js +9 -0
- package/dist/modules/design_system/acl.js.map +7 -0
- package/dist/modules/design_system/backend/design-system/page.js +11 -0
- package/dist/modules/design_system/backend/design-system/page.js.map +7 -0
- package/dist/modules/design_system/backend/design-system/page.meta.js +15 -0
- package/dist/modules/design_system/backend/design-system/page.meta.js.map +7 -0
- package/dist/modules/design_system/gallery/components/CodeSnippet.js +52 -0
- package/dist/modules/design_system/gallery/components/CodeSnippet.js.map +7 -0
- package/dist/modules/design_system/gallery/components/EntryCard.js +63 -0
- package/dist/modules/design_system/gallery/components/EntryCard.js.map +7 -0
- package/dist/modules/design_system/gallery/components/GalleryShell.js +163 -0
- package/dist/modules/design_system/gallery/components/GalleryShell.js.map +7 -0
- package/dist/modules/design_system/gallery/components/VariantPreview.js +9 -0
- package/dist/modules/design_system/gallery/components/VariantPreview.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/banners.js +186 -0
- package/dist/modules/design_system/gallery/entries/banners.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/buttons.js +361 -0
- package/dist/modules/design_system/gallery/entries/buttons.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/charts.js +457 -0
- package/dist/modules/design_system/gallery/entries/charts.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/dates.js +306 -0
- package/dist/modules/design_system/gallery/entries/dates.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/detail.js +358 -0
- package/dist/modules/design_system/gallery/entries/detail.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/display.js +785 -0
- package/dist/modules/design_system/gallery/entries/display.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/feedback.js +658 -0
- package/dist/modules/design_system/gallery/entries/feedback.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/filters.js +505 -0
- package/dist/modules/design_system/gallery/entries/filters.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/foundations.js +453 -0
- package/dist/modules/design_system/gallery/entries/foundations.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/icons.js +140 -0
- package/dist/modules/design_system/gallery/entries/icons.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/inputs.js +1217 -0
- package/dist/modules/design_system/gallery/entries/inputs.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/messages.js +334 -0
- package/dist/modules/design_system/gallery/entries/messages.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/navigation.js +475 -0
- package/dist/modules/design_system/gallery/entries/navigation.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/notifications.js +257 -0
- package/dist/modules/design_system/gallery/entries/notifications.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/overlays.js +576 -0
- package/dist/modules/design_system/gallery/entries/overlays.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/scaffolding.js +378 -0
- package/dist/modules/design_system/gallery/entries/scaffolding.js.map +7 -0
- package/dist/modules/design_system/gallery/entries/schedule.js +297 -0
- package/dist/modules/design_system/gallery/entries/schedule.js.map +7 -0
- package/dist/modules/design_system/gallery/registry.js +139 -0
- package/dist/modules/design_system/gallery/registry.js.map +7 -0
- package/dist/modules/design_system/gallery/types.js +1 -0
- package/dist/modules/design_system/gallery/types.js.map +7 -0
- package/dist/modules/design_system/index.js +9 -0
- package/dist/modules/design_system/index.js.map +7 -0
- package/dist/modules/design_system/setup.js +14 -0
- package/dist/modules/design_system/setup.js.map +7 -0
- package/dist/modules/dictionaries/api/[dictionaryId]/entries/route.js +34 -12
- package/dist/modules/dictionaries/api/[dictionaryId]/entries/route.js.map +2 -2
- package/dist/modules/dictionaries/api/openapi.js +15 -2
- package/dist/modules/dictionaries/api/openapi.js.map +2 -2
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js +1 -1
- package/dist/modules/dictionaries/components/DictionaryEntrySelect.js.map +2 -2
- package/dist/modules/dictionaries/components/hooks/useDictionaryEntries.js +30 -29
- package/dist/modules/dictionaries/components/hooks/useDictionaryEntries.js.map +2 -2
- package/dist/modules/dictionaries/data/validators.js +7 -0
- package/dist/modules/dictionaries/data/validators.js.map +2 -2
- package/dist/modules/dictionaries/lib/clientEntries.js +4 -3
- package/dist/modules/dictionaries/lib/clientEntries.js.map +2 -2
- package/dist/modules/dictionaries/lib/fetchAllEntries.js +43 -0
- package/dist/modules/dictionaries/lib/fetchAllEntries.js.map +7 -0
- package/dist/modules/directory/api/organization-branding/route.js +10 -3
- package/dist/modules/directory/api/organization-branding/route.js.map +2 -2
- package/dist/modules/directory/api/organization-switcher/route.js +84 -20
- package/dist/modules/directory/api/organization-switcher/route.js.map +2 -2
- package/dist/modules/directory/api/organizations/route.js +7 -0
- package/dist/modules/directory/api/organizations/route.js.map +3 -3
- package/dist/modules/directory/api/tenants/route.js +8 -2
- package/dist/modules/directory/api/tenants/route.js.map +2 -2
- package/dist/modules/directory/backend/directory/branding/page.js +31 -8
- package/dist/modules/directory/backend/directory/branding/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/organizations/[id]/edit/page.js +7 -16
- package/dist/modules/directory/backend/directory/organizations/[id]/edit/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/organizations/page.js +2 -1
- package/dist/modules/directory/backend/directory/organizations/page.js.map +2 -2
- package/dist/modules/directory/backend/directory/tenants/page.js +2 -1
- package/dist/modules/directory/backend/directory/tenants/page.js.map +2 -2
- package/dist/modules/directory/commands/organizations.js +8 -1
- package/dist/modules/directory/commands/organizations.js.map +2 -2
- package/dist/modules/directory/commands/tenants.js +6 -0
- package/dist/modules/directory/commands/tenants.js.map +2 -2
- package/dist/modules/directory/data/entities.js +4 -0
- package/dist/modules/directory/data/entities.js.map +2 -2
- package/dist/modules/directory/data/validators.js +2 -0
- package/dist/modules/directory/data/validators.js.map +2 -2
- package/dist/modules/directory/extension-points.js +14 -0
- package/dist/modules/directory/extension-points.js.map +7 -0
- package/dist/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.js +13 -0
- package/dist/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.js.map +7 -0
- package/dist/modules/directory/subscribers/invalidateOrgScopeCache.js +5 -1
- package/dist/modules/directory/subscribers/invalidateOrgScopeCache.js.map +2 -2
- package/dist/modules/directory/utils/organizationScope.js +11 -3
- package/dist/modules/directory/utils/organizationScope.js.map +2 -2
- package/dist/modules/entities/api/definitions.js +53 -3
- package/dist/modules/entities/api/definitions.js.map +2 -2
- package/dist/modules/entities/api/entities.js +21 -2
- package/dist/modules/entities/api/entities.js.map +2 -2
- package/dist/modules/entities/api/entity-settings.js +59 -9
- package/dist/modules/entities/api/entity-settings.js.map +2 -2
- package/dist/modules/entities/api/records.js +11 -28
- package/dist/modules/entities/api/records.js.map +2 -2
- package/dist/modules/entities/api/sidebar-entities.js +34 -12
- package/dist/modules/entities/api/sidebar-entities.js.map +2 -2
- package/dist/modules/entities/backend/config/settings/page.js +10 -0
- package/dist/modules/entities/backend/config/settings/page.js.map +7 -0
- package/dist/modules/entities/backend/config/settings/page.meta.js +36 -0
- package/dist/modules/entities/backend/config/settings/page.meta.js.map +7 -0
- package/dist/modules/entities/backend/entities/user/[entityId]/page.js +1 -1
- package/dist/modules/entities/backend/entities/user/[entityId]/page.js.map +2 -2
- package/dist/modules/entities/backend/entities/user/[entityId]/records/page.js +23 -4
- package/dist/modules/entities/backend/entities/user/[entityId]/records/page.js.map +2 -2
- package/dist/modules/entities/backend/entities/user/create/page.js +16 -7
- package/dist/modules/entities/backend/entities/user/create/page.js.map +2 -2
- package/dist/modules/entities/cli.js +193 -19
- package/dist/modules/entities/cli.js.map +2 -2
- package/dist/modules/entities/components/EntitySettingsManager.js +136 -0
- package/dist/modules/entities/components/EntitySettingsManager.js.map +7 -0
- package/dist/modules/entities/components/RecordListRelationCell.js +63 -0
- package/dist/modules/entities/components/RecordListRelationCell.js.map +7 -0
- package/dist/modules/entities/components/SystemEntitiesTable.js +2 -1
- package/dist/modules/entities/components/SystemEntitiesTable.js.map +2 -2
- package/dist/modules/entities/components/UserEntitiesTable.js +2 -1
- package/dist/modules/entities/components/UserEntitiesTable.js.map +2 -2
- package/dist/modules/entities/components/recordListRelationDisplays.js +80 -0
- package/dist/modules/entities/components/recordListRelationDisplays.js.map +7 -0
- package/dist/modules/entities/extension-points.js +21 -0
- package/dist/modules/entities/extension-points.js.map +7 -0
- package/dist/modules/entities/lib/entityAcl.js +87 -9
- package/dist/modules/entities/lib/entityAcl.js.map +3 -3
- package/dist/modules/feature_toggles/components/FeatureGuard.js +3 -2
- package/dist/modules/feature_toggles/components/FeatureGuard.js.map +2 -2
- package/dist/modules/feature_toggles/components/FeatureToggleOverrideCard.js +1 -1
- package/dist/modules/feature_toggles/components/FeatureToggleOverrideCard.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/staleTime.js +5 -0
- package/dist/modules/feature_toggles/components/hooks/staleTime.js.map +7 -0
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagJson.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagJson.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagNumber.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagNumber.js.map +2 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagString.js +5 -2
- package/dist/modules/feature_toggles/components/hooks/useFeatureFlagString.js.map +2 -2
- package/dist/modules/inbox_ops/ai-tools.js +5 -2
- package/dist/modules/inbox_ops/ai-tools.js.map +2 -2
- package/dist/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.js +14 -1
- package/dist/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.js.map +2 -2
- package/dist/modules/inbox_ops/api/proposals/route.js +16 -1
- package/dist/modules/inbox_ops/api/proposals/route.js.map +2 -2
- package/dist/modules/inbox_ops/api/webhook/inbound.js +14 -10
- package/dist/modules/inbox_ops/api/webhook/inbound.js.map +2 -2
- package/dist/modules/inbox_ops/backend/inbox-ops/log/page.js +6 -6
- package/dist/modules/inbox_ops/backend/inbox-ops/log/page.js.map +2 -2
- package/dist/modules/inbox_ops/components/proposals/EditActionDialog.js +25 -20
- package/dist/modules/inbox_ops/components/proposals/EditActionDialog.js.map +2 -2
- package/dist/modules/inbox_ops/search.js +15 -4
- package/dist/modules/inbox_ops/search.js.map +2 -2
- package/dist/modules/inbox_ops/subscribers/search-reindex-proposal-created.js +32 -0
- package/dist/modules/inbox_ops/subscribers/search-reindex-proposal-created.js.map +7 -0
- package/dist/modules/integrations/api/[id]/credentials/route.js +11 -5
- package/dist/modules/integrations/api/[id]/credentials/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/health/route.js +6 -3
- package/dist/modules/integrations/api/[id]/health/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/route.js +6 -3
- package/dist/modules/integrations/api/[id]/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/state/route.js +6 -3
- package/dist/modules/integrations/api/[id]/state/route.js.map +2 -2
- package/dist/modules/integrations/api/[id]/version/route.js +6 -3
- package/dist/modules/integrations/api/[id]/version/route.js.map +2 -2
- package/dist/modules/integrations/api/logs/route.js +6 -3
- package/dist/modules/integrations/api/logs/route.js.map +2 -2
- package/dist/modules/integrations/api/route.js +6 -3
- package/dist/modules/integrations/api/route.js.map +2 -2
- package/dist/modules/integrations/api/umes-read.js +2 -2
- package/dist/modules/integrations/api/umes-read.js.map +2 -2
- package/dist/modules/integrations/backend/integrations/[id]/page.js +2 -4
- package/dist/modules/integrations/backend/integrations/[id]/page.js.map +2 -2
- package/dist/modules/integrations/extension-points.js +30 -0
- package/dist/modules/integrations/extension-points.js.map +7 -0
- package/dist/modules/integrations/lib/organization-scope.js +2 -9
- package/dist/modules/integrations/lib/organization-scope.js.map +2 -2
- package/dist/modules/integrations/widgets/injection/external-ids/widget.client.js +0 -5
- package/dist/modules/integrations/widgets/injection/external-ids/widget.client.js.map +2 -2
- package/dist/modules/integrations/widgets/injection/external-ids/widget.js +14 -0
- package/dist/modules/integrations/widgets/injection/external-ids/widget.js.map +7 -0
- package/dist/modules/messages/api/[id]/route.js +15 -0
- package/dist/modules/messages/api/[id]/route.js.map +2 -2
- package/dist/modules/messages/api/route.js +77 -8
- package/dist/modules/messages/api/route.js.map +2 -2
- package/dist/modules/messages/components/ComposeMessagePageClient.js +2 -1
- package/dist/modules/messages/components/ComposeMessagePageClient.js.map +2 -2
- package/dist/modules/messages/components/MessageDetailPageClient.js +3 -2
- package/dist/modules/messages/components/MessageDetailPageClient.js.map +2 -2
- package/dist/modules/messages/components/MessagesInboxPageClient.js +2 -1
- package/dist/modules/messages/components/MessagesInboxPageClient.js.map +2 -2
- package/dist/modules/messages/components/message-detail/panels/dialogs.js +1 -1
- package/dist/modules/messages/components/message-detail/panels/dialogs.js.map +1 -1
- package/dist/modules/messages/extension-points.js +16 -0
- package/dist/modules/messages/extension-points.js.map +7 -0
- package/dist/modules/messages/lib/participantScope.js +15 -0
- package/dist/modules/messages/lib/participantScope.js.map +7 -0
- package/dist/modules/messages/lib/routeHelpers.js +1 -3
- package/dist/modules/messages/lib/routeHelpers.js.map +2 -2
- package/dist/modules/messages/lib/searchLookup.js +8 -16
- package/dist/modules/messages/lib/searchLookup.js.map +2 -2
- package/dist/modules/messages/search.js +10 -5
- package/dist/modules/messages/search.js.map +2 -2
- package/dist/modules/notifications/api/route.js +83 -4
- package/dist/modules/notifications/api/route.js.map +2 -2
- package/dist/modules/notifications/api/unread-count/route.js +25 -6
- package/dist/modules/notifications/api/unread-count/route.js.map +2 -2
- package/dist/modules/notifications/di.js +1 -1
- package/dist/modules/notifications/di.js.map +2 -2
- package/dist/modules/notifications/events.js +4 -2
- package/dist/modules/notifications/events.js.map +2 -2
- package/dist/modules/notifications/lib/notificationRecipients.js +6 -7
- package/dist/modules/notifications/lib/notificationRecipients.js.map +2 -2
- package/dist/modules/notifications/lib/notificationScope.js +26 -0
- package/dist/modules/notifications/lib/notificationScope.js.map +7 -0
- package/dist/modules/notifications/lib/notificationService.js +48 -4
- package/dist/modules/notifications/lib/notificationService.js.map +2 -2
- package/dist/modules/notifications/lib/routeHelpers.js +16 -2
- package/dist/modules/notifications/lib/routeHelpers.js.map +2 -2
- package/dist/modules/payment_gateways/api/capture/route.js +1 -1
- package/dist/modules/payment_gateways/api/capture/route.js.map +2 -2
- package/dist/modules/payment_gateways/api/sessions/route.js +6 -3
- package/dist/modules/payment_gateways/api/sessions/route.js.map +2 -2
- package/dist/modules/payment_gateways/api/webhook/[provider]/route.js +11 -1
- package/dist/modules/payment_gateways/api/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/payment_gateways/backend/payment-gateways/page.js +3 -2
- package/dist/modules/payment_gateways/backend/payment-gateways/page.js.map +2 -2
- package/dist/modules/payment_gateways/data/entities.js +11 -0
- package/dist/modules/payment_gateways/data/entities.js.map +2 -2
- package/dist/modules/payment_gateways/di.js +17 -1
- package/dist/modules/payment_gateways/di.js.map +2 -2
- package/dist/modules/payment_gateways/extension-points.js +19 -0
- package/dist/modules/payment_gateways/extension-points.js.map +7 -0
- package/dist/modules/payment_gateways/lib/capture-ledger.js +183 -0
- package/dist/modules/payment_gateways/lib/capture-ledger.js.map +7 -0
- package/dist/modules/payment_gateways/lib/gateway-service.js +93 -14
- package/dist/modules/payment_gateways/lib/gateway-service.js.map +2 -2
- package/dist/modules/payment_gateways/lib/order-amount-reconciliation.js +58 -0
- package/dist/modules/payment_gateways/lib/order-amount-reconciliation.js.map +7 -0
- package/dist/modules/payment_gateways/lib/payment-operation-idempotency.js +1 -0
- package/dist/modules/payment_gateways/lib/payment-operation-idempotency.js.map +2 -2
- package/dist/modules/payment_gateways/lib/session-idempotency.js +33 -0
- package/dist/modules/payment_gateways/lib/session-idempotency.js.map +2 -2
- package/dist/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.js +16 -0
- package/dist/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.js.map +7 -0
- package/dist/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.js +18 -0
- package/dist/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.js.map +7 -0
- package/dist/modules/payment_gateways/setup.js +47 -0
- package/dist/modules/payment_gateways/setup.js.map +2 -2
- package/dist/modules/payment_gateways/workers/session-initialization-prune.js +50 -0
- package/dist/modules/payment_gateways/workers/session-initialization-prune.js.map +7 -0
- package/dist/modules/planner/components/AvailabilityRulesEditor.js +4 -4
- package/dist/modules/planner/components/AvailabilityRulesEditor.js.map +2 -2
- package/dist/modules/planner/components/unavailabilityReasons.js +3 -3
- package/dist/modules/planner/components/unavailabilityReasons.js.map +2 -2
- package/dist/modules/portal/extension-points.js +32 -0
- package/dist/modules/portal/extension-points.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/dashboard/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/dashboard/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.js +134 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.js +11 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.js.map +7 -0
- package/dist/modules/portal/frontend/[orgSlug]/portal/login/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/login/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/profile/page.js +3 -3
- package/dist/modules/portal/frontend/[orgSlug]/portal/profile/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/reset-password/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/reset-password/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/signup/page.js +4 -4
- package/dist/modules/portal/frontend/[orgSlug]/portal/signup/page.js.map +2 -2
- package/dist/modules/portal/frontend/[orgSlug]/portal/verify/page.js +1 -1
- package/dist/modules/portal/frontend/[orgSlug]/portal/verify/page.js.map +2 -2
- package/dist/modules/portal/lib/navigation.js +7 -0
- package/dist/modules/portal/lib/navigation.js.map +7 -0
- package/dist/modules/progress/lib/progressService.js +2 -0
- package/dist/modules/progress/lib/progressService.js.map +2 -2
- package/dist/modules/progress/lib/progressServiceImpl.js +322 -104
- package/dist/modules/progress/lib/progressServiceImpl.js.map +2 -2
- package/dist/modules/query_index/api/openapi.js +13 -1
- package/dist/modules/query_index/api/openapi.js.map +2 -2
- package/dist/modules/query_index/api/reindex.js +10 -0
- package/dist/modules/query_index/api/reindex.js.map +2 -2
- package/dist/modules/query_index/api/status.js +165 -105
- package/dist/modules/query_index/api/status.js.map +2 -2
- package/dist/modules/query_index/cli.js +125 -1
- package/dist/modules/query_index/cli.js.map +2 -2
- package/dist/modules/query_index/components/QueryIndexesTable.js +130 -42
- package/dist/modules/query_index/components/QueryIndexesTable.js.map +2 -2
- package/dist/modules/query_index/data/entities.js +2 -1
- package/dist/modules/query_index/data/entities.js.map +2 -2
- package/dist/modules/query_index/di.js +3 -0
- package/dist/modules/query_index/di.js.map +2 -2
- package/dist/modules/query_index/events.js +20 -0
- package/dist/modules/query_index/events.js.map +7 -0
- package/dist/modules/query_index/extension-points.js +13 -0
- package/dist/modules/query_index/extension-points.js.map +7 -0
- package/dist/modules/query_index/lib/batch.js +11 -4
- package/dist/modules/query_index/lib/batch.js.map +2 -2
- package/dist/modules/query_index/lib/coverage.js +21 -9
- package/dist/modules/query_index/lib/coverage.js.map +2 -2
- package/dist/modules/query_index/lib/document.js +12 -5
- package/dist/modules/query_index/lib/document.js.map +2 -2
- package/dist/modules/query_index/lib/engine.js +105 -48
- package/dist/modules/query_index/lib/engine.js.map +2 -2
- package/dist/modules/query_index/lib/indexer.js +95 -19
- package/dist/modules/query_index/lib/indexer.js.map +2 -2
- package/dist/modules/query_index/lib/reindexer.js +43 -37
- package/dist/modules/query_index/lib/reindexer.js.map +2 -2
- package/dist/modules/query_index/lib/search-tokens.js +34 -15
- package/dist/modules/query_index/lib/search-tokens.js.map +2 -2
- package/dist/modules/query_index/lib/subscriber-scope.js +2 -3
- package/dist/modules/query_index/lib/subscriber-scope.js.map +2 -2
- package/dist/modules/query_index/migrations/Migration20260731105052_query_index.js +17 -0
- package/dist/modules/query_index/migrations/Migration20260731105052_query_index.js.map +7 -0
- package/dist/modules/query_index/subscribers/coverage_refresh.js +4 -0
- package/dist/modules/query_index/subscribers/coverage_refresh.js.map +2 -2
- package/dist/modules/query_index/subscribers/delete_one.js +53 -1
- package/dist/modules/query_index/subscribers/delete_one.js.map +3 -3
- package/dist/modules/query_index/subscribers/upsert_one.js +60 -0
- package/dist/modules/query_index/subscribers/upsert_one.js.map +3 -3
- package/dist/modules/resources/api/resources.js +2 -0
- package/dist/modules/resources/api/resources.js.map +2 -2
- package/dist/modules/resources/backend/resources/resource-types/page.js +2 -1
- package/dist/modules/resources/backend/resources/resource-types/page.js.map +2 -2
- package/dist/modules/resources/backend/resources/resources/[id]/page.js +3 -2
- package/dist/modules/resources/backend/resources/resources/[id]/page.js.map +2 -2
- package/dist/modules/resources/backend/resources/resources/page.js +2 -1
- package/dist/modules/resources/backend/resources/resources/page.js.map +2 -2
- package/dist/modules/resources/commands/resources.js +9 -0
- package/dist/modules/resources/commands/resources.js.map +2 -2
- package/dist/modules/resources/components/detail/dictionaries.js +3 -3
- package/dist/modules/resources/components/detail/dictionaries.js.map +2 -2
- package/dist/modules/resources/data/entities.js +3 -0
- package/dist/modules/resources/data/entities.js.map +2 -2
- package/dist/modules/resources/data/validators.js +6 -2
- package/dist/modules/resources/data/validators.js.map +2 -2
- package/dist/modules/resources/extension-points.js +14 -0
- package/dist/modules/resources/extension-points.js.map +7 -0
- package/dist/modules/resources/lib/seeds.js +16 -9
- package/dist/modules/resources/lib/seeds.js.map +2 -2
- package/dist/modules/resources/migrations/Migration20260608231000.js +13 -0
- package/dist/modules/resources/migrations/Migration20260608231000.js.map +7 -0
- package/dist/modules/sales/analytics.js +7 -3
- package/dist/modules/sales/analytics.js.map +2 -2
- package/dist/modules/sales/api/document-history/route.js +2 -1
- package/dist/modules/sales/api/document-history/route.js.map +2 -2
- package/dist/modules/sales/api/documents/factory.js +14 -3
- package/dist/modules/sales/api/documents/factory.js.map +2 -2
- package/dist/modules/sales/backend/sales/documents/[id]/page.js +11 -3
- package/dist/modules/sales/backend/sales/documents/[id]/page.js.map +2 -2
- package/dist/modules/sales/backend/sales/documents/create/page.js +11 -14
- package/dist/modules/sales/backend/sales/documents/create/page.js.map +2 -2
- package/dist/modules/sales/commands/documents.js +184 -23
- package/dist/modules/sales/commands/documents.js.map +2 -2
- package/dist/modules/sales/components/documents/ItemsSection.js +31 -11
- package/dist/modules/sales/components/documents/ItemsSection.js.map +2 -2
- package/dist/modules/sales/components/documents/LineItemDialog.js +12 -5
- package/dist/modules/sales/components/documents/LineItemDialog.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesDocumentForm.js +48 -2
- package/dist/modules/sales/components/documents/SalesDocumentForm.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesDocumentsTable.js +4 -1
- package/dist/modules/sales/components/documents/SalesDocumentsTable.js.map +2 -2
- package/dist/modules/sales/components/documents/SalesOrderDraftLines.js +167 -0
- package/dist/modules/sales/components/documents/SalesOrderDraftLines.js.map +7 -0
- package/dist/modules/sales/components/useSalesChannelsEnabled.js +2 -35
- package/dist/modules/sales/components/useSalesChannelsEnabled.js.map +2 -2
- package/dist/modules/sales/data/validators.js +32 -5
- package/dist/modules/sales/data/validators.js.map +2 -2
- package/dist/modules/sales/di.js +7 -0
- package/dist/modules/sales/di.js.map +2 -2
- package/dist/modules/sales/events.js +1 -0
- package/dist/modules/sales/events.js.map +2 -2
- package/dist/modules/sales/extension-points.js +36 -0
- package/dist/modules/sales/extension-points.js.map +7 -0
- package/dist/modules/sales/lib/historyHelpers.js +69 -1
- package/dist/modules/sales/lib/historyHelpers.js.map +2 -2
- package/dist/modules/sales/services/paymentOrderTotalResolver.js +52 -0
- package/dist/modules/sales/services/paymentOrderTotalResolver.js.map +7 -0
- package/dist/modules/sales/widgets/injection/document-history/widget.client.js +51 -2
- package/dist/modules/sales/widgets/injection/document-history/widget.client.js.map +2 -2
- package/dist/modules/sales/workflows.js +10 -7
- package/dist/modules/sales/workflows.js.map +2 -2
- package/dist/modules/shipping_carriers/api/webhook/[provider]/route.js +11 -1
- package/dist/modules/shipping_carriers/api/webhook/[provider]/route.js.map +2 -2
- package/dist/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.js +1 -1
- package/dist/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.js.map +1 -1
- package/dist/modules/staff/api/interceptors.js +5 -3
- package/dist/modules/staff/api/interceptors.js.map +2 -2
- package/dist/modules/staff/api/leave-requests.js +45 -42
- package/dist/modules/staff/api/leave-requests.js.map +2 -2
- package/dist/modules/staff/components/detail/dictionaries.js +3 -3
- package/dist/modules/staff/components/detail/dictionaries.js.map +2 -2
- package/dist/modules/sync_excel/api/upload/route.js +15 -2
- package/dist/modules/sync_excel/api/upload/route.js.map +2 -2
- package/dist/modules/sync_excel/widgets/injection/upload-config/widget.client.js +1 -1
- package/dist/modules/sync_excel/widgets/injection/upload-config/widget.client.js.map +2 -2
- package/dist/modules/wms/components/backend/ReleaseReservationDialog.js +1 -1
- package/dist/modules/wms/components/backend/ReleaseReservationDialog.js.map +1 -1
- package/dist/modules/wms/components/backend/WmsConfigurationPage.js +5 -4
- package/dist/modules/wms/components/backend/WmsConfigurationPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsInventoryConsolePage.js +4 -3
- package/dist/modules/wms/components/backend/WmsInventoryConsolePage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLocationDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsLocationDetailPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLotDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsLotDetailPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsLotsListPage.js +2 -1
- package/dist/modules/wms/components/backend/WmsLotsListPage.js.map +2 -2
- package/dist/modules/wms/components/backend/WmsSkuDetailPage.js +3 -2
- package/dist/modules/wms/components/backend/WmsSkuDetailPage.js.map +2 -2
- package/dist/modules/wms/extension-points.js +26 -0
- package/dist/modules/wms/extension-points.js.map +7 -0
- package/dist/modules/workflows/backend/definitions/[id]/page.js +2 -2
- package/dist/modules/workflows/backend/definitions/[id]/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/create/page.js +1 -1
- package/dist/modules/workflows/backend/definitions/create/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/page.js +3 -2
- package/dist/modules/workflows/backend/definitions/page.js.map +2 -2
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js +9 -6
- package/dist/modules/workflows/backend/definitions/visual-editor/page.js.map +2 -2
- package/dist/modules/workflows/backend/instances/page.js +10 -9
- package/dist/modules/workflows/backend/instances/page.js.map +2 -2
- package/dist/modules/workflows/backend/tasks/page.js +8 -7
- package/dist/modules/workflows/backend/tasks/page.js.map +2 -2
- package/dist/modules/workflows/components/ActivitiesEditor.js +69 -13
- package/dist/modules/workflows/components/ActivitiesEditor.js.map +2 -2
- package/dist/modules/workflows/components/BusinessRulesSelector.js +1 -1
- package/dist/modules/workflows/components/BusinessRulesSelector.js.map +2 -2
- package/dist/modules/workflows/components/DefinitionTriggersEditor.js +3 -3
- package/dist/modules/workflows/components/DefinitionTriggersEditor.js.map +2 -2
- package/dist/modules/workflows/components/EdgeEditDialogCrudForm.js +1 -2
- package/dist/modules/workflows/components/EdgeEditDialogCrudForm.js.map +2 -2
- package/dist/modules/workflows/components/NodeEditDialog.js +3 -3
- package/dist/modules/workflows/components/NodeEditDialog.js.map +2 -2
- package/dist/modules/workflows/components/NodeEditDialogCrudForm.js +4 -5
- package/dist/modules/workflows/components/NodeEditDialogCrudForm.js.map +2 -2
- package/dist/modules/workflows/components/StepsEditor.js +2 -2
- package/dist/modules/workflows/components/StepsEditor.js.map +2 -2
- package/dist/modules/workflows/components/TransitionsEditor.js +207 -165
- package/dist/modules/workflows/components/TransitionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowGraphImpl.js +1 -1
- package/dist/modules/workflows/components/WorkflowGraphImpl.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowLegend.js +1 -1
- package/dist/modules/workflows/components/WorkflowLegend.js.map +2 -2
- package/dist/modules/workflows/components/WorkflowSelector.js +1 -1
- package/dist/modules/workflows/components/WorkflowSelector.js.map +2 -2
- package/dist/modules/workflows/components/fields/BusinessRuleConditionsEditor.js +1 -1
- package/dist/modules/workflows/components/fields/BusinessRuleConditionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/FormFieldArrayEditor.js +2 -2
- package/dist/modules/workflows/components/fields/FormFieldArrayEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/MappingArrayEditor.js +1 -1
- package/dist/modules/workflows/components/fields/MappingArrayEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/StartPreConditionsEditor.js +1 -1
- package/dist/modules/workflows/components/fields/StartPreConditionsEditor.js.map +2 -2
- package/dist/modules/workflows/components/fields/WorkflowSelectorField.js +4 -4
- package/dist/modules/workflows/components/fields/WorkflowSelectorField.js.map +2 -2
- package/dist/modules/workflows/data/validators.js +34 -1
- package/dist/modules/workflows/data/validators.js.map +3 -3
- package/dist/modules/workflows/events.js +1 -0
- package/dist/modules/workflows/events.js.map +2 -2
- package/dist/modules/workflows/extension-points.js +15 -0
- package/dist/modules/workflows/extension-points.js.map +7 -0
- package/dist/modules/workflows/lib/activity-executor.js +59 -14
- package/dist/modules/workflows/lib/activity-executor.js.map +2 -2
- package/dist/modules/workflows/lib/format-validation-error.js +46 -1
- package/dist/modules/workflows/lib/format-validation-error.js.map +2 -2
- package/dist/modules/workflows/widgets/injection/order-approval/context-keys.js +10 -0
- package/dist/modules/workflows/widgets/injection/order-approval/context-keys.js.map +7 -0
- package/dist/modules/workflows/widgets/injection/order-approval/widget.client.js +21 -10
- package/dist/modules/workflows/widgets/injection/order-approval/widget.client.js.map +2 -2
- package/generated/entities/attachment_quota_reservation/index.ts +15 -0
- package/generated/entities/customer_deal_person_link/index.ts +1 -0
- package/generated/entities/customer_user_invitation/index.ts +1 -0
- package/generated/entities/gateway_payment_operation/index.ts +1 -0
- package/generated/entities/gateway_transaction/index.ts +1 -0
- package/generated/entities/organization/index.ts +1 -0
- package/generated/entities/resources_resource/index.ts +1 -0
- package/generated/entities.ids.generated.ts +3 -1
- package/generated/entity-fields-registry.ts +23 -0
- package/package.json +19 -18
- package/src/bootstrap.ts +17 -2
- package/src/helpers/integration/salesFixtures.ts +34 -2
- package/src/helpers/integration/salesUi.ts +8 -0
- package/src/modules/api_keys/backend/api-keys/page.tsx +2 -1
- package/src/modules/api_keys/extension-points.ts +13 -0
- package/src/modules/api_keys/i18n/ko.json +42 -0
- package/src/modules/attachments/api/route.ts +130 -9
- package/src/modules/attachments/backend/config/attachments/page.tsx +1 -1
- package/src/modules/attachments/data/entities.ts +59 -0
- package/src/modules/attachments/di.ts +9 -1
- package/src/modules/attachments/fields/attachment.tsx +1 -1
- package/src/modules/attachments/i18n/de.json +15 -0
- package/src/modules/attachments/i18n/en.json +15 -0
- package/src/modules/attachments/i18n/es.json +15 -0
- package/src/modules/attachments/i18n/ko.json +175 -0
- package/src/modules/attachments/i18n/pl.json +15 -0
- package/src/modules/attachments/lib/drivers/index.ts +1 -1
- package/src/modules/attachments/lib/drivers/localDriver.ts +23 -8
- package/src/modules/attachments/lib/drivers/types.ts +5 -0
- package/src/modules/attachments/lib/quota-recovery-queue.ts +16 -0
- package/src/modules/attachments/lib/quota-service.ts +442 -0
- package/src/modules/attachments/lib/upload-limits.ts +35 -0
- package/src/modules/attachments/migrations/.snapshot-open-mercato.json +648 -120
- package/src/modules/attachments/migrations/Migration20260709234741_attachments.ts +12 -0
- package/src/modules/attachments/workers/quota-recovery.ts +68 -0
- package/src/modules/audit_logs/api/audit-logs/access/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/actions/export/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/actions/route.ts +5 -0
- package/src/modules/audit_logs/api/audit-logs/readScope.ts +28 -0
- package/src/modules/audit_logs/components/AccessLogsTable.tsx +2 -1
- package/src/modules/audit_logs/components/AuditLogsActions.tsx +3 -2
- package/src/modules/audit_logs/extension-points.ts +11 -0
- package/src/modules/audit_logs/i18n/ko.json +66 -0
- package/src/modules/auth/AGENTS.md +12 -8
- package/src/modules/auth/api/admin/nav.ts +28 -4
- package/src/modules/auth/api/profile/route.ts +8 -2
- package/src/modules/auth/api/users/route.ts +8 -28
- package/src/modules/auth/backend/auth/profile/page.tsx +1 -0
- package/src/modules/auth/backend/profile/change-password/page.tsx +1 -0
- package/src/modules/auth/backend/roles/page.tsx +2 -1
- package/src/modules/auth/backend/settings/page.tsx +17 -8
- package/src/modules/auth/backend/users/page.tsx +2 -1
- package/src/modules/auth/cli.ts +1 -1
- package/src/modules/auth/components/UserConsentsPanel.tsx +9 -9
- package/src/modules/auth/extension-points.ts +18 -0
- package/src/modules/auth/frontend/login.tsx +7 -3
- package/src/modules/auth/frontend/reset.tsx +2 -2
- package/src/modules/auth/i18n/de.json +1 -0
- package/src/modules/auth/i18n/en.json +1 -0
- package/src/modules/auth/i18n/es.json +1 -0
- package/src/modules/auth/i18n/ko.json +255 -0
- package/src/modules/auth/i18n/pl.json +1 -0
- package/src/modules/auth/lib/backendChrome.tsx +71 -33
- package/src/modules/auth/lib/setup-app.ts +21 -2
- package/src/modules/auth/lib/tenantAccess.ts +8 -0
- package/src/modules/auth/services/rbacService.ts +41 -46
- package/src/modules/business_rules/api/openmercato-call-options/route.ts +94 -0
- package/src/modules/business_rules/api/rules/route.ts +92 -4
- package/src/modules/business_rules/backend/rules/page.tsx +2 -1
- package/src/modules/business_rules/components/ActionBuilder.tsx +54 -5
- package/src/modules/business_rules/components/ActionRow.tsx +156 -18
- package/src/modules/business_rules/components/ConditionRow.tsx +9 -6
- package/src/modules/business_rules/components/utils/actionValidation.ts +6 -0
- package/src/modules/business_rules/events.ts +10 -0
- package/src/modules/business_rules/extension-points.ts +10 -0
- package/src/modules/business_rules/i18n/de.json +12 -0
- package/src/modules/business_rules/i18n/en.json +12 -0
- package/src/modules/business_rules/i18n/es.json +12 -0
- package/src/modules/business_rules/i18n/ko.json +396 -0
- package/src/modules/business_rules/i18n/pl.json +12 -0
- package/src/modules/business_rules/lib/action-executor.ts +198 -0
- package/src/modules/business_rules/lib/openmercato-call-options-types.ts +31 -0
- package/src/modules/business_rules/lib/openmercato-call-options.ts +297 -0
- package/src/modules/business_rules/lib/rule-engine.ts +4 -0
- package/src/modules/catalog/backend/catalog/products/[id]/page.tsx +6 -5
- package/src/modules/catalog/backend/catalog/products/create/page.tsx +7 -6
- package/src/modules/catalog/components/PriceKindSettings.tsx +3 -3
- package/src/modules/catalog/components/categories/CategoriesDataTable.tsx +2 -1
- package/src/modules/catalog/components/products/ProductCategorizeSection.tsx +3 -3
- package/src/modules/catalog/components/products/ProductMediaManager.tsx +1 -1
- package/src/modules/catalog/components/products/ProductsDataTable.tsx +3 -2
- package/src/modules/catalog/components/products/VariantBuilder.tsx +5 -5
- package/src/modules/catalog/events.ts +1 -0
- package/src/modules/catalog/extension-points.ts +24 -0
- package/src/modules/catalog/i18n/de.json +18 -0
- package/src/modules/catalog/i18n/en.json +18 -0
- package/src/modules/catalog/i18n/es.json +18 -0
- package/src/modules/catalog/i18n/ko.json +723 -0
- package/src/modules/catalog/i18n/pl.json +18 -0
- package/src/modules/catalog/widgets/injection/product-bulk-delete/widget.ts +15 -5
- package/src/modules/catalog/widgets/injection/product-seo/widget.ts +1 -1
- package/src/modules/communication_channels/api/post/test-seed/route.ts +69 -2
- package/src/modules/communication_channels/api/post/webhook/[provider]/route.ts +11 -1
- package/src/modules/communication_channels/api/post/webhooks/gmail/route.ts +17 -11
- package/src/modules/communication_channels/backend/communication_channels/channels/page.tsx +2 -1
- package/src/modules/communication_channels/backend/profile/communication-channels/page.tsx +8 -7
- package/src/modules/communication_channels/data/enrichers.ts +6 -26
- package/src/modules/communication_channels/extension-points.ts +17 -0
- package/src/modules/communication_channels/i18n/de.json +2 -2
- package/src/modules/communication_channels/i18n/en.json +2 -2
- package/src/modules/communication_channels/i18n/es.json +2 -2
- package/src/modules/communication_channels/i18n/ko.json +138 -0
- package/src/modules/communication_channels/i18n/pl.json +2 -2
- package/src/modules/communication_channels/lib/access-control.ts +3 -3
- package/src/modules/configs/backend/config/system-status/page.tsx +2 -1
- package/src/modules/configs/extension-points.ts +15 -0
- package/src/modules/configs/i18n/ko.json +197 -0
- package/src/modules/configs/lib/upgrade-actions.ts +14 -0
- package/src/modules/currencies/backend/currencies/page.tsx +2 -1
- package/src/modules/currencies/backend/exchange-rates/page.tsx +2 -1
- package/src/modules/currencies/di.ts +4 -1
- package/src/modules/currencies/extension-points.ts +11 -0
- package/src/modules/currencies/i18n/de.json +1 -0
- package/src/modules/currencies/i18n/en.json +1 -0
- package/src/modules/currencies/i18n/es.json +1 -0
- package/src/modules/currencies/i18n/ko.json +160 -0
- package/src/modules/currencies/i18n/pl.json +1 -0
- package/src/modules/currencies/services/baseCurrencyService.ts +59 -0
- package/src/modules/customer_accounts/AGENTS.md +3 -3
- package/src/modules/customer_accounts/api/admin/users/[id].ts +16 -1
- package/src/modules/customer_accounts/api/admin/users-invite.ts +81 -3
- package/src/modules/customer_accounts/api/invitations/accept.ts +1 -2
- package/src/modules/customer_accounts/api/login.ts +4 -2
- package/src/modules/customer_accounts/api/magic-link/verify.ts +4 -2
- package/src/modules/customer_accounts/api/portal/feature-check.ts +5 -7
- package/src/modules/customer_accounts/api/portal/nav.ts +5 -3
- package/src/modules/customer_accounts/api/portal/profile.ts +5 -1
- package/src/modules/customer_accounts/api/portal/sessions-refresh.ts +3 -3
- package/src/modules/customer_accounts/api/portal/users-invite.ts +25 -1
- package/src/modules/customer_accounts/backend/customer_accounts/roles/page.tsx +2 -1
- package/src/modules/customer_accounts/backend/customer_accounts/settings/domain/components/Diagnostics.tsx +2 -2
- package/src/modules/customer_accounts/backend/customer_accounts/users/page.tsx +2 -1
- package/src/modules/customer_accounts/data/entities.ts +3 -0
- package/src/modules/customer_accounts/data/validators.ts +1 -0
- package/src/modules/customer_accounts/emails/CustomerInvitationEmail.tsx +45 -0
- package/src/modules/customer_accounts/extension-points.ts +11 -0
- package/src/modules/customer_accounts/i18n/de.json +6 -0
- package/src/modules/customer_accounts/i18n/en.json +6 -0
- package/src/modules/customer_accounts/i18n/es.json +6 -0
- package/src/modules/customer_accounts/i18n/ko.json +354 -0
- package/src/modules/customer_accounts/i18n/pl.json +6 -0
- package/src/modules/customer_accounts/lib/customerAuth.ts +8 -2
- package/src/modules/customer_accounts/lib/customerAuthServer.ts +1 -0
- package/src/modules/customer_accounts/lib/customerEntityOwnership.ts +68 -2
- package/src/modules/customer_accounts/lib/customerUrl.ts +27 -11
- package/src/modules/customer_accounts/lib/invitationEmail.ts +42 -0
- package/src/modules/customer_accounts/migrations/.snapshot-open-mercato.json +16 -0
- package/src/modules/customer_accounts/migrations/Migration20260723120000_customer_accounts.ts +13 -0
- package/src/modules/customer_accounts/services/customerInvitationService.ts +56 -3
- package/src/modules/customer_accounts/services/customerRbacService.ts +16 -3
- package/src/modules/customer_accounts/setup.ts +7 -0
- package/src/modules/customer_accounts/subscribers/autoLinkCrm.ts +75 -8
- package/src/modules/customer_accounts/widgets/injection/account-status/widget.client.tsx +2 -2
- package/src/modules/customer_accounts/widgets/injection/portal-ai-assistant-trigger/widget.client.tsx +1 -3
- package/src/modules/customer_accounts/widgets/injection-table.ts +4 -1
- package/src/modules/customers/analytics.ts +3 -0
- package/src/modules/customers/api/companies/[id]/route.ts +3 -4
- package/src/modules/customers/api/deals/[id]/people/route.ts +3 -0
- package/src/modules/customers/api/deals/[id]/route.ts +10 -2
- package/src/modules/customers/api/deals/aggregate/route.ts +5 -4
- package/src/modules/customers/api/deals/summary/route.ts +15 -162
- package/src/modules/customers/api/people/[id]/companies/enriched/route.ts +3 -2
- package/src/modules/customers/api/utils.ts +25 -37
- package/src/modules/customers/backend/customers/companies/[id]/page.tsx +2 -1
- package/src/modules/customers/backend/customers/companies/page.tsx +2 -1
- package/src/modules/customers/backend/customers/companies-v2/[id]/page.tsx +17 -5
- package/src/modules/customers/backend/customers/deals/[id]/hooks/types.ts +1 -0
- package/src/modules/customers/backend/customers/deals/[id]/page.tsx +19 -12
- package/src/modules/customers/backend/customers/deals/page.tsx +2 -1
- package/src/modules/customers/backend/customers/deals/pipeline/components/QuickDealDialog.tsx +35 -3
- package/src/modules/customers/backend/customers/deals/pipeline/page.tsx +11 -2
- package/src/modules/customers/backend/customers/people/[id]/page.tsx +2 -1
- package/src/modules/customers/backend/customers/people/page.tsx +2 -1
- package/src/modules/customers/backend/customers/people-v2/[id]/page.tsx +29 -10
- package/src/modules/customers/cli.ts +28 -11
- package/src/modules/customers/commands/deals.ts +50 -9
- package/src/modules/customers/commands/people.ts +3 -0
- package/src/modules/customers/components/CustomerTodosTable.tsx +2 -1
- package/src/modules/customers/components/calendar/CalendarEventEditor.tsx +1 -1
- package/src/modules/customers/components/detail/ActiveDealCard.tsx +2 -1
- package/src/modules/customers/components/detail/ActivitiesDayStrip.tsx +2 -3
- package/src/modules/customers/components/detail/CompanyDetailTabs.tsx +30 -7
- package/src/modules/customers/components/detail/CompanyKpiBar.tsx +6 -5
- package/src/modules/customers/components/detail/ConfirmDealLostDialog.tsx +2 -2
- package/src/modules/customers/components/detail/DealDetailTabs.tsx +34 -9
- package/src/modules/customers/components/detail/DealForm.tsx +5 -1
- package/src/modules/customers/components/detail/DealsSection.tsx +1 -1
- package/src/modules/customers/components/detail/MiniWeekCalendar.tsx +8 -57
- package/src/modules/customers/components/detail/PersonDetailTabs.tsx +34 -9
- package/src/modules/customers/components/detail/ScheduleActivityDialog.tsx +29 -14
- package/src/modules/customers/components/detail/dashboard/helpers.ts +4 -3
- package/src/modules/customers/components/detail/legacyActivities.ts +79 -0
- package/src/modules/customers/components/formConfig.tsx +12 -8
- package/src/modules/customers/data/entities.ts +9 -1
- package/src/modules/customers/data/validators.ts +6 -1
- package/src/modules/customers/extension-points.ts +40 -0
- package/src/modules/customers/i18n/de.json +72 -0
- package/src/modules/customers/i18n/en.json +72 -0
- package/src/modules/customers/i18n/es.json +72 -0
- package/src/modules/customers/i18n/ko.json +2855 -0
- package/src/modules/customers/i18n/pl.json +72 -0
- package/src/modules/customers/lib/calendar/format.ts +10 -4
- package/src/modules/customers/lib/dealStatus.ts +48 -0
- package/src/modules/customers/lib/dealsSummaryQueries.ts +211 -0
- package/src/modules/customers/lib/optionalBaseCurrency.ts +34 -0
- package/src/modules/customers/lib/visibilityFilter.ts +7 -5
- package/src/modules/customers/migrations/.snapshot-open-mercato.json +27 -1
- package/src/modules/customers/migrations/Migration20260723210000_customers.ts +15 -0
- package/src/modules/customers/search.ts +59 -27
- package/src/modules/customers/utils/phoneDuplicates.ts +6 -3
- package/src/modules/dashboards/api/layout/[itemId]/route.ts +6 -3
- package/src/modules/dashboards/api/layout/route.ts +22 -9
- package/src/modules/dashboards/api/roles/widgets/route.ts +9 -3
- package/src/modules/dashboards/api/users/widgets/route.ts +9 -3
- package/src/modules/dashboards/api/widgets/catalog.ts +6 -3
- package/src/modules/dashboards/api/widgets/data/batch/route.ts +12 -1
- package/src/modules/dashboards/api/widgets/data/route.ts +29 -1
- package/src/modules/dashboards/api/widgets/data/schema.ts +49 -19
- package/src/modules/dashboards/components/UnlabelledAmountNotice.tsx +43 -0
- package/src/modules/dashboards/i18n/de.json +5 -0
- package/src/modules/dashboards/i18n/en.json +5 -0
- package/src/modules/dashboards/i18n/es.json +5 -0
- package/src/modules/dashboards/i18n/ko.json +118 -0
- package/src/modules/dashboards/i18n/pl.json +5 -0
- package/src/modules/dashboards/lib/access.ts +5 -3
- package/src/modules/dashboards/lib/aggregations.ts +198 -48
- package/src/modules/dashboards/lib/exactDecimal.ts +96 -0
- package/src/modules/dashboards/lib/formatters.ts +137 -12
- package/src/modules/dashboards/lib/optionalBaseCurrency.ts +22 -0
- package/src/modules/dashboards/services/widgetDataService.ts +453 -12
- package/src/modules/dashboards/subscribers/invalidateWidgetDataCache.ts +32 -0
- package/src/modules/dashboards/widgets/dashboard/aov-kpi/widget.client.tsx +9 -3
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/config.ts +86 -0
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/widget.client.tsx +42 -21
- package/src/modules/dashboards/widgets/dashboard/pipeline-summary/widget.ts +2 -2
- package/src/modules/dashboards/widgets/dashboard/revenue-kpi/widget.client.tsx +9 -3
- package/src/modules/dashboards/widgets/dashboard/revenue-trend/widget.client.tsx +7 -2
- package/src/modules/dashboards/widgets/dashboard/sales-by-region/widget.client.tsx +25 -15
- package/src/modules/dashboards/widgets/dashboard/top-customers/widget.client.tsx +21 -11
- package/src/modules/dashboards/widgets/dashboard/top-products/widget.client.tsx +9 -3
- package/src/modules/data_sync/AGENTS.md +1 -0
- package/src/modules/data_sync/api/mappings/[id]/route.ts +22 -9
- package/src/modules/data_sync/api/mappings/route.ts +13 -4
- package/src/modules/data_sync/api/options.ts +7 -2
- package/src/modules/data_sync/api/run.ts +7 -2
- package/src/modules/data_sync/api/runs/[id]/cancel.ts +8 -3
- package/src/modules/data_sync/api/runs/[id]/retry.ts +7 -2
- package/src/modules/data_sync/api/runs/[id]/route.ts +8 -3
- package/src/modules/data_sync/api/runs.ts +7 -2
- package/src/modules/data_sync/api/schedules/[id]/route.ts +19 -6
- package/src/modules/data_sync/api/schedules/route.ts +13 -4
- package/src/modules/data_sync/api/validate.ts +9 -4
- package/src/modules/data_sync/backend/data-sync/page.tsx +5 -4
- package/src/modules/data_sync/components/IntegrationScheduleTab.tsx +5 -5
- package/src/modules/data_sync/extension-points.ts +10 -0
- package/src/modules/data_sync/i18n/ko.json +125 -0
- package/src/modules/data_sync/lib/adapter.ts +18 -0
- package/src/modules/data_sync/lib/queue-policy.ts +30 -0
- package/src/modules/data_sync/lib/queue.ts +19 -1
- package/src/modules/data_sync/lib/start-run.ts +2 -1
- package/src/modules/data_sync/lib/sync-engine.ts +46 -0
- package/src/modules/data_sync/lib/sync-run-service.ts +82 -1
- package/src/modules/data_sync/workers/sync-export.ts +8 -1
- package/src/modules/data_sync/workers/sync-import.ts +8 -1
- package/src/modules/design_system/AGENTS.md +34 -0
- package/src/modules/design_system/acl.ts +5 -0
- package/src/modules/design_system/backend/design-system/page.meta.ts +11 -0
- package/src/modules/design_system/backend/design-system/page.tsx +14 -0
- package/src/modules/design_system/gallery/components/CodeSnippet.tsx +55 -0
- package/src/modules/design_system/gallery/components/EntryCard.tsx +95 -0
- package/src/modules/design_system/gallery/components/GalleryShell.tsx +206 -0
- package/src/modules/design_system/gallery/components/VariantPreview.tsx +15 -0
- package/src/modules/design_system/gallery/entries/banners.tsx +226 -0
- package/src/modules/design_system/gallery/entries/buttons.tsx +422 -0
- package/src/modules/design_system/gallery/entries/charts.tsx +518 -0
- package/src/modules/design_system/gallery/entries/dates.tsx +325 -0
- package/src/modules/design_system/gallery/entries/detail.tsx +403 -0
- package/src/modules/design_system/gallery/entries/display.tsx +893 -0
- package/src/modules/design_system/gallery/entries/feedback.tsx +746 -0
- package/src/modules/design_system/gallery/entries/filters.tsx +570 -0
- package/src/modules/design_system/gallery/entries/foundations.tsx +529 -0
- package/src/modules/design_system/gallery/entries/icons.tsx +168 -0
- package/src/modules/design_system/gallery/entries/inputs.tsx +1516 -0
- package/src/modules/design_system/gallery/entries/messages.tsx +339 -0
- package/src/modules/design_system/gallery/entries/navigation.tsx +573 -0
- package/src/modules/design_system/gallery/entries/notifications.tsx +285 -0
- package/src/modules/design_system/gallery/entries/overlays.tsx +677 -0
- package/src/modules/design_system/gallery/entries/scaffolding.tsx +430 -0
- package/src/modules/design_system/gallery/entries/schedule.tsx +307 -0
- package/src/modules/design_system/gallery/registry.ts +152 -0
- package/src/modules/design_system/gallery/types.ts +32 -0
- package/src/modules/design_system/i18n/.hardcoded-allowlist.json +71 -0
- package/src/modules/design_system/i18n/de.json +58 -0
- package/src/modules/design_system/i18n/en.json +58 -0
- package/src/modules/design_system/i18n/es.json +58 -0
- package/src/modules/design_system/i18n/ko.json +58 -0
- package/src/modules/design_system/i18n/pl.json +58 -0
- package/src/modules/design_system/index.ts +7 -0
- package/src/modules/design_system/setup.ts +12 -0
- package/src/modules/dictionaries/api/[dictionaryId]/entries/route.ts +39 -11
- package/src/modules/dictionaries/api/openapi.ts +19 -0
- package/src/modules/dictionaries/components/DictionaryEntrySelect.tsx +1 -1
- package/src/modules/dictionaries/components/hooks/useDictionaryEntries.ts +35 -36
- package/src/modules/dictionaries/data/validators.ts +14 -0
- package/src/modules/dictionaries/i18n/ko.json +130 -0
- package/src/modules/dictionaries/lib/clientEntries.ts +4 -3
- package/src/modules/dictionaries/lib/fetchAllEntries.ts +72 -0
- package/src/modules/directory/api/organization-branding/route.ts +12 -1
- package/src/modules/directory/api/organization-switcher/route.ts +97 -26
- package/src/modules/directory/api/organizations/route.ts +7 -0
- package/src/modules/directory/api/tenants/route.ts +9 -1
- package/src/modules/directory/backend/directory/branding/page.tsx +34 -9
- package/src/modules/directory/backend/directory/organizations/[id]/edit/page.tsx +10 -14
- package/src/modules/directory/backend/directory/organizations/page.tsx +2 -1
- package/src/modules/directory/backend/directory/tenants/page.tsx +2 -1
- package/src/modules/directory/commands/organizations.ts +9 -1
- package/src/modules/directory/commands/tenants.ts +6 -0
- package/src/modules/directory/data/entities.ts +3 -0
- package/src/modules/directory/data/validators.ts +2 -0
- package/src/modules/directory/extension-points.ts +11 -0
- package/src/modules/directory/i18n/de.json +4 -1
- package/src/modules/directory/i18n/en.json +4 -1
- package/src/modules/directory/i18n/es.json +4 -1
- package/src/modules/directory/i18n/ko.json +105 -0
- package/src/modules/directory/i18n/pl.json +4 -1
- package/src/modules/directory/migrations/.snapshot-open-mercato.json +18 -1
- package/src/modules/directory/migrations/Migration20260626145500_directory_logo_preserve_aspect_ratio.ts +13 -0
- package/src/modules/directory/subscribers/invalidateOrgScopeCache.ts +4 -1
- package/src/modules/directory/utils/organizationScope.ts +9 -3
- package/src/modules/entities/api/definitions.ts +55 -3
- package/src/modules/entities/api/entities.ts +30 -2
- package/src/modules/entities/api/entity-settings.ts +66 -22
- package/src/modules/entities/api/records.ts +15 -31
- package/src/modules/entities/api/sidebar-entities.ts +43 -14
- package/src/modules/entities/backend/config/settings/page.meta.ts +34 -0
- package/src/modules/entities/backend/config/settings/page.tsx +12 -0
- package/src/modules/entities/backend/entities/user/[entityId]/page.tsx +1 -1
- package/src/modules/entities/backend/entities/user/[entityId]/records/page.tsx +96 -75
- package/src/modules/entities/backend/entities/user/create/page.tsx +16 -7
- package/src/modules/entities/cli.ts +238 -21
- package/src/modules/entities/components/EntitySettingsManager.tsx +160 -0
- package/src/modules/entities/components/RecordListRelationCell.tsx +90 -0
- package/src/modules/entities/components/SystemEntitiesTable.tsx +2 -1
- package/src/modules/entities/components/UserEntitiesTable.tsx +2 -1
- package/src/modules/entities/components/recordListRelationDisplays.ts +109 -0
- package/src/modules/entities/extension-points.ts +18 -0
- package/src/modules/entities/i18n/de.json +9 -0
- package/src/modules/entities/i18n/en.json +9 -0
- package/src/modules/entities/i18n/es.json +9 -0
- package/src/modules/entities/i18n/ko.json +260 -0
- package/src/modules/entities/i18n/pl.json +9 -0
- package/src/modules/entities/lib/entityAcl.ts +98 -11
- package/src/modules/feature_toggles/components/FeatureGuard.tsx +9 -2
- package/src/modules/feature_toggles/components/FeatureToggleOverrideCard.tsx +1 -1
- package/src/modules/feature_toggles/components/hooks/staleTime.ts +5 -0
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagBoolean.ts +13 -1
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagJson.ts +12 -3
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagNumber.ts +10 -1
- package/src/modules/feature_toggles/components/hooks/useFeatureFlagString.ts +10 -1
- package/src/modules/feature_toggles/i18n/ko.json +96 -0
- package/src/modules/inbox_ops/ai-tools.ts +5 -3
- package/src/modules/inbox_ops/api/proposals/[id]/actions/[actionId]/route.ts +17 -1
- package/src/modules/inbox_ops/api/proposals/route.ts +20 -1
- package/src/modules/inbox_ops/api/webhook/inbound.ts +14 -12
- package/src/modules/inbox_ops/backend/inbox-ops/log/page.tsx +6 -6
- package/src/modules/inbox_ops/components/proposals/EditActionDialog.tsx +24 -19
- package/src/modules/inbox_ops/components/proposals/types.ts +1 -0
- package/src/modules/inbox_ops/i18n/de.json +3 -0
- package/src/modules/inbox_ops/i18n/en.json +3 -0
- package/src/modules/inbox_ops/i18n/es.json +3 -0
- package/src/modules/inbox_ops/i18n/ko.json +196 -0
- package/src/modules/inbox_ops/i18n/pl.json +3 -0
- package/src/modules/inbox_ops/search.ts +20 -4
- package/src/modules/inbox_ops/subscribers/search-reindex-proposal-created.ts +39 -0
- package/src/modules/integrations/api/[id]/credentials/route.ts +11 -5
- package/src/modules/integrations/api/[id]/health/route.ts +6 -3
- package/src/modules/integrations/api/[id]/route.ts +6 -3
- package/src/modules/integrations/api/[id]/state/route.ts +6 -3
- package/src/modules/integrations/api/[id]/version/route.ts +6 -3
- package/src/modules/integrations/api/logs/route.ts +6 -3
- package/src/modules/integrations/api/route.ts +6 -3
- package/src/modules/integrations/api/umes-read.ts +2 -2
- package/src/modules/integrations/backend/integrations/[id]/page.tsx +2 -2
- package/src/modules/integrations/extension-points.ts +27 -0
- package/src/modules/integrations/i18n/ko.json +129 -0
- package/src/modules/integrations/lib/organization-scope.ts +5 -25
- package/src/modules/integrations/widgets/injection/external-ids/widget.client.tsx +0 -5
- package/src/modules/integrations/widgets/injection/external-ids/widget.ts +13 -0
- package/src/modules/messages/api/[id]/route.ts +21 -0
- package/src/modules/messages/api/route.ts +109 -9
- package/src/modules/messages/components/ComposeMessagePageClient.tsx +2 -1
- package/src/modules/messages/components/MessageDetailPageClient.tsx +3 -2
- package/src/modules/messages/components/MessagesInboxPageClient.tsx +2 -1
- package/src/modules/messages/components/message-detail/panels/dialogs.tsx +1 -1
- package/src/modules/messages/extension-points.ts +13 -0
- package/src/modules/messages/i18n/de.json +2 -0
- package/src/modules/messages/i18n/en.json +2 -0
- package/src/modules/messages/i18n/es.json +2 -0
- package/src/modules/messages/i18n/ko.json +263 -0
- package/src/modules/messages/i18n/pl.json +2 -0
- package/src/modules/messages/lib/participantScope.ts +64 -0
- package/src/modules/messages/lib/routeHelpers.ts +4 -6
- package/src/modules/messages/lib/searchLookup.ts +11 -34
- package/src/modules/messages/search.ts +11 -5
- package/src/modules/notifications/api/route.ts +123 -3
- package/src/modules/notifications/api/unread-count/route.ts +42 -5
- package/src/modules/notifications/di.ts +1 -1
- package/src/modules/notifications/events.ts +2 -0
- package/src/modules/notifications/i18n/ko.json +55 -0
- package/src/modules/notifications/lib/notificationRecipients.ts +6 -8
- package/src/modules/notifications/lib/notificationScope.ts +40 -0
- package/src/modules/notifications/lib/notificationService.ts +63 -1
- package/src/modules/notifications/lib/routeHelpers.ts +19 -2
- package/src/modules/payment_gateways/api/capture/route.ts +1 -1
- package/src/modules/payment_gateways/api/sessions/route.ts +6 -3
- package/src/modules/payment_gateways/api/webhook/[provider]/route.ts +13 -1
- package/src/modules/payment_gateways/backend/payment-gateways/page.tsx +3 -2
- package/src/modules/payment_gateways/data/entities.ts +13 -2
- package/src/modules/payment_gateways/di.ts +28 -2
- package/src/modules/payment_gateways/extension-points.ts +16 -0
- package/src/modules/payment_gateways/i18n/de.json +8 -1
- package/src/modules/payment_gateways/i18n/en.json +8 -1
- package/src/modules/payment_gateways/i18n/es.json +8 -1
- package/src/modules/payment_gateways/i18n/ko.json +87 -0
- package/src/modules/payment_gateways/i18n/pl.json +8 -1
- package/src/modules/payment_gateways/lib/capture-ledger.ts +260 -0
- package/src/modules/payment_gateways/lib/gateway-service.ts +114 -18
- package/src/modules/payment_gateways/lib/order-amount-reconciliation.ts +93 -0
- package/src/modules/payment_gateways/lib/payment-operation-idempotency.ts +1 -0
- package/src/modules/payment_gateways/lib/session-idempotency.ts +36 -0
- package/src/modules/payment_gateways/migrations/.snapshot-open-mercato.json +44 -1
- package/src/modules/payment_gateways/migrations/Migration20260725101500_payment_gateways.ts +21 -0
- package/src/modules/payment_gateways/migrations/Migration20260803103035_payment_gateways.ts +17 -0
- package/src/modules/payment_gateways/setup.ts +62 -0
- package/src/modules/payment_gateways/workers/session-initialization-prune.ts +63 -0
- package/src/modules/planner/components/AvailabilityRulesEditor.tsx +4 -4
- package/src/modules/planner/components/unavailabilityReasons.ts +3 -3
- package/src/modules/planner/i18n/ko.json +565 -0
- package/src/modules/portal/extension-points.ts +30 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/dashboard/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/invite/page.meta.ts +9 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/invite/page.tsx +164 -0
- package/src/modules/portal/frontend/[orgSlug]/portal/login/page.tsx +4 -4
- package/src/modules/portal/frontend/[orgSlug]/portal/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/profile/page.tsx +3 -3
- package/src/modules/portal/frontend/[orgSlug]/portal/reset-password/page.tsx +5 -5
- package/src/modules/portal/frontend/[orgSlug]/portal/signup/page.tsx +4 -4
- package/src/modules/portal/frontend/[orgSlug]/portal/verify/page.tsx +1 -1
- package/src/modules/portal/i18n/de.json +18 -0
- package/src/modules/portal/i18n/en.json +18 -0
- package/src/modules/portal/i18n/es.json +18 -0
- package/src/modules/portal/i18n/ko.json +143 -0
- package/src/modules/portal/i18n/pl.json +18 -0
- package/src/modules/portal/lib/navigation.ts +3 -0
- package/src/modules/progress/AGENTS.md +11 -1
- package/src/modules/progress/i18n/ko.json +20 -0
- package/src/modules/progress/lib/progressService.ts +1 -0
- package/src/modules/progress/lib/progressServiceImpl.ts +385 -117
- package/src/modules/query_index/api/openapi.ts +12 -0
- package/src/modules/query_index/api/reindex.ts +15 -0
- package/src/modules/query_index/api/status.ts +238 -136
- package/src/modules/query_index/cli.ts +180 -1
- package/src/modules/query_index/components/QueryIndexesTable.tsx +194 -47
- package/src/modules/query_index/data/entities.ts +7 -0
- package/src/modules/query_index/di.ts +6 -0
- package/src/modules/query_index/events.ts +17 -0
- package/src/modules/query_index/extension-points.ts +10 -0
- package/src/modules/query_index/i18n/de.json +5 -3
- package/src/modules/query_index/i18n/en.json +5 -3
- package/src/modules/query_index/i18n/es.json +5 -3
- package/src/modules/query_index/i18n/ko.json +69 -0
- package/src/modules/query_index/i18n/pl.json +5 -3
- package/src/modules/query_index/lib/batch.ts +11 -4
- package/src/modules/query_index/lib/coverage.ts +47 -14
- package/src/modules/query_index/lib/document.ts +35 -4
- package/src/modules/query_index/lib/engine.ts +136 -59
- package/src/modules/query_index/lib/indexer.ts +130 -21
- package/src/modules/query_index/lib/reindexer.ts +62 -40
- package/src/modules/query_index/lib/search-tokens.ts +48 -16
- package/src/modules/query_index/lib/subscriber-scope.ts +2 -7
- package/src/modules/query_index/migrations/.snapshot-open-mercato.json +12 -0
- package/src/modules/query_index/migrations/Migration20260731105052_query_index.ts +35 -0
- package/src/modules/query_index/subscribers/coverage_refresh.ts +4 -0
- package/src/modules/query_index/subscribers/delete_one.ts +65 -1
- package/src/modules/query_index/subscribers/upsert_one.ts +68 -1
- package/src/modules/resources/api/resources.ts +2 -0
- package/src/modules/resources/backend/resources/resource-types/page.tsx +2 -1
- package/src/modules/resources/backend/resources/resources/[id]/page.tsx +9 -3
- package/src/modules/resources/backend/resources/resources/page.tsx +2 -1
- package/src/modules/resources/commands/resources.ts +10 -0
- package/src/modules/resources/components/detail/dictionaries.ts +3 -3
- package/src/modules/resources/data/entities.ts +3 -0
- package/src/modules/resources/data/validators.ts +5 -0
- package/src/modules/resources/extension-points.ts +11 -0
- package/src/modules/resources/i18n/ko.json +770 -0
- package/src/modules/resources/lib/seeds.ts +16 -9
- package/src/modules/resources/migrations/.snapshot-open-mercato.json +17 -1
- package/src/modules/resources/migrations/Migration20260608231000.ts +13 -0
- package/src/modules/sales/analytics.ts +4 -0
- package/src/modules/sales/api/document-history/route.ts +1 -0
- package/src/modules/sales/api/documents/factory.ts +28 -3
- package/src/modules/sales/backend/sales/documents/[id]/page.tsx +11 -3
- package/src/modules/sales/backend/sales/documents/create/page.tsx +2 -4
- package/src/modules/sales/commands/documents.ts +298 -31
- package/src/modules/sales/components/documents/ItemsSection.tsx +34 -11
- package/src/modules/sales/components/documents/LineItemDialog.tsx +13 -5
- package/src/modules/sales/components/documents/SalesDocumentForm.tsx +48 -6
- package/src/modules/sales/components/documents/SalesDocumentsTable.tsx +6 -1
- package/src/modules/sales/components/documents/SalesOrderDraftLines.tsx +198 -0
- package/src/modules/sales/components/documents/lineItemTypes.ts +1 -0
- package/src/modules/sales/components/useSalesChannelsEnabled.ts +2 -48
- package/src/modules/sales/data/validators.ts +59 -6
- package/src/modules/sales/di.ts +9 -0
- package/src/modules/sales/events.ts +1 -0
- package/src/modules/sales/extension-points.ts +33 -0
- package/src/modules/sales/i18n/de.json +22 -0
- package/src/modules/sales/i18n/en.json +22 -0
- package/src/modules/sales/i18n/es.json +22 -0
- package/src/modules/sales/i18n/ko.json +1442 -0
- package/src/modules/sales/i18n/pl.json +22 -0
- package/src/modules/sales/lib/historyHelpers.ts +88 -1
- package/src/modules/sales/services/paymentOrderTotalResolver.ts +67 -0
- package/src/modules/sales/widgets/injection/document-history/widget.client.tsx +64 -3
- package/src/modules/sales/workflows.ts +10 -7
- package/src/modules/shipping_carriers/api/webhook/[provider]/route.ts +11 -1
- package/src/modules/shipping_carriers/i18n/ko.json +85 -0
- package/src/modules/shipping_carriers/lib/shipment-wizard/components/PackageEditor.tsx +1 -1
- package/src/modules/staff/api/interceptors.ts +6 -4
- package/src/modules/staff/api/leave-requests.ts +54 -47
- package/src/modules/staff/components/detail/dictionaries.ts +3 -3
- package/src/modules/staff/i18n/ko.json +1162 -0
- package/src/modules/sync_excel/api/upload/route.ts +15 -2
- package/src/modules/sync_excel/i18n/ko.json +107 -0
- package/src/modules/sync_excel/widgets/injection/upload-config/widget.client.tsx +1 -1
- package/src/modules/translations/i18n/ko.json +45 -0
- package/src/modules/wms/components/backend/ReleaseReservationDialog.tsx +1 -1
- package/src/modules/wms/components/backend/WmsConfigurationPage.tsx +5 -4
- package/src/modules/wms/components/backend/WmsInventoryConsolePage.tsx +4 -3
- package/src/modules/wms/components/backend/WmsLocationDetailPage.tsx +3 -2
- package/src/modules/wms/components/backend/WmsLotDetailPage.tsx +3 -2
- package/src/modules/wms/components/backend/WmsLotsListPage.tsx +2 -1
- package/src/modules/wms/components/backend/WmsSkuDetailPage.tsx +3 -2
- package/src/modules/wms/extension-points.ts +23 -0
- package/src/modules/wms/i18n/de.json +2 -0
- package/src/modules/wms/i18n/en.json +2 -0
- package/src/modules/wms/i18n/es.json +2 -0
- package/src/modules/wms/i18n/ko.json +1053 -0
- package/src/modules/wms/i18n/pl.json +2 -0
- package/src/modules/workflows/backend/definitions/[id]/page.tsx +2 -2
- package/src/modules/workflows/backend/definitions/create/page.tsx +1 -1
- package/src/modules/workflows/backend/definitions/page.tsx +3 -2
- package/src/modules/workflows/backend/definitions/visual-editor/page.tsx +16 -7
- package/src/modules/workflows/backend/instances/page.tsx +10 -9
- package/src/modules/workflows/backend/tasks/page.tsx +8 -7
- package/src/modules/workflows/components/ActivitiesEditor.tsx +98 -14
- package/src/modules/workflows/components/BusinessRulesSelector.tsx +1 -1
- package/src/modules/workflows/components/DefinitionTriggersEditor.tsx +3 -3
- package/src/modules/workflows/components/EdgeEditDialogCrudForm.tsx +1 -2
- package/src/modules/workflows/components/NodeEditDialog.tsx +3 -3
- package/src/modules/workflows/components/NodeEditDialogCrudForm.tsx +4 -5
- package/src/modules/workflows/components/StepsEditor.tsx +2 -2
- package/src/modules/workflows/components/TransitionsEditor.tsx +78 -20
- package/src/modules/workflows/components/WorkflowGraphImpl.tsx +1 -1
- package/src/modules/workflows/components/WorkflowLegend.tsx +1 -1
- package/src/modules/workflows/components/WorkflowSelector.tsx +1 -1
- package/src/modules/workflows/components/fields/BusinessRuleConditionsEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/FormFieldArrayEditor.tsx +2 -2
- package/src/modules/workflows/components/fields/MappingArrayEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/StartPreConditionsEditor.tsx +1 -1
- package/src/modules/workflows/components/fields/WorkflowSelectorField.tsx +4 -4
- package/src/modules/workflows/data/validators.ts +52 -1
- package/src/modules/workflows/events.ts +1 -0
- package/src/modules/workflows/extension-points.ts +12 -0
- package/src/modules/workflows/i18n/de.json +3 -0
- package/src/modules/workflows/i18n/en.json +3 -0
- package/src/modules/workflows/i18n/es.json +3 -0
- package/src/modules/workflows/i18n/ko.json +1204 -0
- package/src/modules/workflows/i18n/pl.json +3 -0
- package/src/modules/workflows/lib/activity-executor.ts +99 -20
- package/src/modules/workflows/lib/format-validation-error.ts +60 -0
- package/src/modules/workflows/widgets/injection/order-approval/context-keys.ts +18 -0
- package/src/modules/workflows/widgets/injection/order-approval/widget.client.tsx +27 -11
|
@@ -0,0 +1,1053 @@
|
|
|
1
|
+
{
|
|
2
|
+
"wms.audit.inventory.receive": "재고 수령",
|
|
3
|
+
"wms.audit.salesOrder.assignWarehouse": "주문할 창고 지정",
|
|
4
|
+
"wms.audit.salesOrder.reRunReservation": "주문 예약 재실행",
|
|
5
|
+
"wms.audit.salesOrder.unassignWarehouse": "주문에서 창고 할당 제거",
|
|
6
|
+
"wms.backend.config.actions.addLocation": "위치 추가",
|
|
7
|
+
"wms.backend.config.actions.addProfile": "프로필 추가",
|
|
8
|
+
"wms.backend.config.actions.addWarehouse": "창고 추가",
|
|
9
|
+
"wms.backend.config.actions.addZone": "영역 추가",
|
|
10
|
+
"wms.backend.config.description": "창고, 보관 위치 및 재고 추적 정책에 대한 1단계 운영 구성입니다.",
|
|
11
|
+
"wms.backend.config.locations.columns.capacityUnits": "용량 단위",
|
|
12
|
+
"wms.backend.config.locations.columns.code": "위치",
|
|
13
|
+
"wms.backend.config.locations.columns.status": "상태",
|
|
14
|
+
"wms.backend.config.locations.columns.type": "유형",
|
|
15
|
+
"wms.backend.config.locations.columns.warehouse": "창고",
|
|
16
|
+
"wms.backend.config.locations.confirmDelete": "아카이브 위치 \"{code}\"?",
|
|
17
|
+
"wms.backend.config.locations.description": "운영 재고를 보관하는 통로/빈/도크 수준 토폴로지 버킷을 유지관리합니다.",
|
|
18
|
+
"wms.backend.config.locations.dialog.create": "위치 생성",
|
|
19
|
+
"wms.backend.config.locations.dialog.edit": "위치 수정",
|
|
20
|
+
"wms.backend.config.locations.empty.description": "잔액, 예약 및 이동 원장 행에 사용되는 버킷을 정의하는 위치를 만듭니다.",
|
|
21
|
+
"wms.backend.config.locations.empty.title": "위치 없음",
|
|
22
|
+
"wms.backend.config.locations.errors.delete": "위치를 보관하지 못했습니다.",
|
|
23
|
+
"wms.backend.config.locations.errors.load": "위치를 로드하지 못했습니다.",
|
|
24
|
+
"wms.backend.config.locations.errors.save": "위치를 저장하지 못했습니다.",
|
|
25
|
+
"wms.backend.config.locations.flash.created": "위치가 생성되었습니다.",
|
|
26
|
+
"wms.backend.config.locations.flash.deleted": "위치가 보관되었습니다.",
|
|
27
|
+
"wms.backend.config.locations.flash.updated": "위치가 업데이트되었습니다.",
|
|
28
|
+
"wms.backend.config.locations.form.active": "활동적인",
|
|
29
|
+
"wms.backend.config.locations.form.capacityUnits": "용량 단위",
|
|
30
|
+
"wms.backend.config.locations.form.capacityWeight": "용량 중량",
|
|
31
|
+
"wms.backend.config.locations.form.code": "암호",
|
|
32
|
+
"wms.backend.config.locations.form.type": "유형",
|
|
33
|
+
"wms.backend.config.locations.form.warehouse": "창고",
|
|
34
|
+
"wms.backend.config.locations.search": "위치 검색",
|
|
35
|
+
"wms.backend.config.locations.title": "위치",
|
|
36
|
+
"wms.backend.config.locations.type.aisle": "통로",
|
|
37
|
+
"wms.backend.config.locations.type.bin": "큰 상자",
|
|
38
|
+
"wms.backend.config.locations.type.dock": "독",
|
|
39
|
+
"wms.backend.config.locations.type.rack": "고문",
|
|
40
|
+
"wms.backend.config.locations.type.slot": "슬롯",
|
|
41
|
+
"wms.backend.config.locations.type.staging": "각색",
|
|
42
|
+
"wms.backend.config.locations.type.zone": "존",
|
|
43
|
+
"wms.backend.config.nav.title": "WMS 구성",
|
|
44
|
+
"wms.backend.config.profiles.allVariants": "모든 변형",
|
|
45
|
+
"wms.backend.config.profiles.columns.product": "제품",
|
|
46
|
+
"wms.backend.config.profiles.columns.reorderPoint": "재주문 지점",
|
|
47
|
+
"wms.backend.config.profiles.columns.safetyStock": "안전 재고",
|
|
48
|
+
"wms.backend.config.profiles.columns.strategy": "전략",
|
|
49
|
+
"wms.backend.config.profiles.columns.uom": "어옴",
|
|
50
|
+
"wms.backend.config.profiles.columns.variant": "변종",
|
|
51
|
+
"wms.backend.config.profiles.confirmDelete": "인벤토리 프로필 \"{id}\"를 보관하시겠습니까?",
|
|
52
|
+
"wms.backend.config.profiles.description": "제품 범위별로 추적 전략, 재주문 임계값 및 로트/일련 동작을 구성합니다.",
|
|
53
|
+
"wms.backend.config.profiles.dialog.create": "인벤토리 프로필 생성",
|
|
54
|
+
"wms.backend.config.profiles.dialog.edit": "인벤토리 프로필 수정",
|
|
55
|
+
"wms.backend.config.profiles.empty.description": "예약 전략, 로트/일련 추적 및 재고 부족 기준을 제어하는 프로필을 생성합니다.",
|
|
56
|
+
"wms.backend.config.profiles.empty.title": "인벤토리 프로필 없음",
|
|
57
|
+
"wms.backend.config.profiles.errors.delete": "인벤토리 프로필을 보관하지 못했습니다.",
|
|
58
|
+
"wms.backend.config.profiles.errors.load": "인벤토리 프로필을 로드하지 못했습니다.",
|
|
59
|
+
"wms.backend.config.profiles.errors.save": "인벤토리 프로필을 저장하지 못했습니다.",
|
|
60
|
+
"wms.backend.config.profiles.flash.created": "인벤토리 프로필이 생성되었습니다.",
|
|
61
|
+
"wms.backend.config.profiles.flash.deleted": "인벤토리 프로필이 보관되었습니다.",
|
|
62
|
+
"wms.backend.config.profiles.flash.updated": "인벤토리 프로필이 업데이트되었습니다.",
|
|
63
|
+
"wms.backend.config.profiles.form.product": "제품",
|
|
64
|
+
"wms.backend.config.profiles.form.reorderPoint": "재주문 지점",
|
|
65
|
+
"wms.backend.config.profiles.form.safetyStock": "안전 재고",
|
|
66
|
+
"wms.backend.config.profiles.form.strategy": "순환 전략",
|
|
67
|
+
"wms.backend.config.profiles.form.trackExpiration": "만료 추적",
|
|
68
|
+
"wms.backend.config.profiles.form.trackLot": "트랙 로트",
|
|
69
|
+
"wms.backend.config.profiles.form.trackSerial": "연재물 추적",
|
|
70
|
+
"wms.backend.config.profiles.form.uom": "기본 UOM",
|
|
71
|
+
"wms.backend.config.profiles.form.variant": "변종",
|
|
72
|
+
"wms.backend.config.profiles.title": "인벤토리 프로필",
|
|
73
|
+
"wms.backend.config.profiles.validation.fefoRequired": "만료 추적이 활성화된 경우 FEFO가 필요합니다.",
|
|
74
|
+
"wms.backend.config.title": "WMS 구성",
|
|
75
|
+
"wms.backend.config.viewAll": "모두 보기 →",
|
|
76
|
+
"wms.backend.config.warehouses.columns.city": "도시",
|
|
77
|
+
"wms.backend.config.warehouses.columns.code": "암호",
|
|
78
|
+
"wms.backend.config.warehouses.columns.country": "국가",
|
|
79
|
+
"wms.backend.config.warehouses.columns.name": "창고",
|
|
80
|
+
"wms.backend.config.warehouses.columns.primary": "주요한",
|
|
81
|
+
"wms.backend.config.warehouses.columns.status": "상태",
|
|
82
|
+
"wms.backend.config.warehouses.confirmDelete": "보관 창고 \"{name}\"?",
|
|
83
|
+
"wms.backend.config.warehouses.description": "WMS 예약 및 재고 이동에 사용되는 높은 수준의 창고 노드를 관리합니다.",
|
|
84
|
+
"wms.backend.config.warehouses.dialog.create": "창고 생성",
|
|
85
|
+
"wms.backend.config.warehouses.dialog.edit": "창고 편집",
|
|
86
|
+
"wms.backend.config.warehouses.empty.description": "WMS에서 토폴로지 및 인벤토리 할당을 공개하는 첫 번째 창고를 만듭니다.",
|
|
87
|
+
"wms.backend.config.warehouses.empty.title": "창고 없음",
|
|
88
|
+
"wms.backend.config.warehouses.errors.delete": "창고를 보관하지 못했습니다.",
|
|
89
|
+
"wms.backend.config.warehouses.errors.load": "창고를 로드하지 못했습니다.",
|
|
90
|
+
"wms.backend.config.warehouses.errors.save": "창고를 저장하지 못했습니다.",
|
|
91
|
+
"wms.backend.config.warehouses.flash.created": "창고가 생성되었습니다.",
|
|
92
|
+
"wms.backend.config.warehouses.flash.deleted": "창고 보관됨",
|
|
93
|
+
"wms.backend.config.warehouses.flash.updated": "창고가 업데이트되었습니다.",
|
|
94
|
+
"wms.backend.config.warehouses.form.active": "활동적인",
|
|
95
|
+
"wms.backend.config.warehouses.form.city": "도시",
|
|
96
|
+
"wms.backend.config.warehouses.form.code": "암호",
|
|
97
|
+
"wms.backend.config.warehouses.form.country": "국가",
|
|
98
|
+
"wms.backend.config.warehouses.form.name": "이름",
|
|
99
|
+
"wms.backend.config.warehouses.form.primary": "1차 창고",
|
|
100
|
+
"wms.backend.config.warehouses.form.timezone": "시간대",
|
|
101
|
+
"wms.backend.config.warehouses.primary.yes": "주요한",
|
|
102
|
+
"wms.backend.config.warehouses.search": "창고 검색",
|
|
103
|
+
"wms.backend.config.warehouses.title": "창고",
|
|
104
|
+
"wms.backend.config.zones.columns.code": "암호",
|
|
105
|
+
"wms.backend.config.zones.columns.name": "존",
|
|
106
|
+
"wms.backend.config.zones.columns.priority": "우선 사항",
|
|
107
|
+
"wms.backend.config.zones.columns.warehouse": "창고",
|
|
108
|
+
"wms.backend.config.zones.confirmDelete": "아카이브 영역 \"{name}\"?",
|
|
109
|
+
"wms.backend.config.zones.description": "라우팅 및 우선순위를 높이기 위해 위치를 기능 영역(예: 수신, 선택, 대량)으로 그룹화합니다.",
|
|
110
|
+
"wms.backend.config.zones.dialog.create": "영역 생성",
|
|
111
|
+
"wms.backend.config.zones.dialog.edit": "구역 편집",
|
|
112
|
+
"wms.backend.config.zones.empty.description": "구역은 위치를 기능 영역으로 그룹화하여 우선순위 선택 및 라우팅 규칙을 구동합니다.",
|
|
113
|
+
"wms.backend.config.zones.empty.title": "구역 없음",
|
|
114
|
+
"wms.backend.config.zones.errors.delete": "영역을 보관하지 못했습니다.",
|
|
115
|
+
"wms.backend.config.zones.errors.load": "영역을 로드하지 못했습니다.",
|
|
116
|
+
"wms.backend.config.zones.errors.save": "영역을 저장하지 못했습니다.",
|
|
117
|
+
"wms.backend.config.zones.flash.created": "영역이 생성되었습니다.",
|
|
118
|
+
"wms.backend.config.zones.flash.deleted": "영역이 보관되었습니다.",
|
|
119
|
+
"wms.backend.config.zones.flash.updated": "영역이 업데이트되었습니다.",
|
|
120
|
+
"wms.backend.config.zones.form.code": "암호",
|
|
121
|
+
"wms.backend.config.zones.form.name": "이름",
|
|
122
|
+
"wms.backend.config.zones.form.priority": "우선 사항",
|
|
123
|
+
"wms.backend.config.zones.form.warehouse": "창고",
|
|
124
|
+
"wms.backend.config.zones.search": "검색 구역",
|
|
125
|
+
"wms.backend.config.zones.title": "구역",
|
|
126
|
+
"wms.backend.dashboard.actions.refresh": "새로 고치다",
|
|
127
|
+
"wms.backend.dashboard.activity.columns.actions": "행위",
|
|
128
|
+
"wms.backend.dashboard.activity.columns.details": "세부",
|
|
129
|
+
"wms.backend.dashboard.activity.columns.event": "이벤트",
|
|
130
|
+
"wms.backend.dashboard.activity.columns.location": "위치",
|
|
131
|
+
"wms.backend.dashboard.activity.columns.time": "시간",
|
|
132
|
+
"wms.backend.dashboard.activity.empty": "최근 동향은 아직 없습니다.",
|
|
133
|
+
"wms.backend.dashboard.activity.open": "오픈 무브먼트",
|
|
134
|
+
"wms.backend.dashboard.activity.reasons.cycleCount": "사이클 수",
|
|
135
|
+
"wms.backend.dashboard.activity.title": "최근 활동",
|
|
136
|
+
"wms.backend.dashboard.activity.titles.adjusted": "조정된 {quantity}× {sku}",
|
|
137
|
+
"wms.backend.dashboard.activity.titles.allocated": "할당된 {quantity}× {sku}",
|
|
138
|
+
"wms.backend.dashboard.activity.titles.generic": "{type} {quantity}× {sku}",
|
|
139
|
+
"wms.backend.dashboard.activity.titles.moved": "{quantity}× {sku} 이동됨",
|
|
140
|
+
"wms.backend.dashboard.activity.titles.received": "{quantity}× {sku}를 받았습니다.",
|
|
141
|
+
"wms.backend.dashboard.activity.titles.reconciled": "재고 조정됨 — {sku}",
|
|
142
|
+
"wms.backend.dashboard.activity.types.adjust": "조정하다",
|
|
143
|
+
"wms.backend.dashboard.activity.types.cycle_count": "화해됨",
|
|
144
|
+
"wms.backend.dashboard.activity.types.pack": "할당하다",
|
|
145
|
+
"wms.backend.dashboard.activity.types.pick": "할당하다",
|
|
146
|
+
"wms.backend.dashboard.activity.types.putaway": "반납",
|
|
147
|
+
"wms.backend.dashboard.activity.types.receipt": "받다",
|
|
148
|
+
"wms.backend.dashboard.activity.types.return_receive": "받다",
|
|
149
|
+
"wms.backend.dashboard.activity.types.ship": "배",
|
|
150
|
+
"wms.backend.dashboard.activity.types.transfer": "이동하다",
|
|
151
|
+
"wms.backend.dashboard.activity.viewAll": "모든 움직임 보기 →",
|
|
152
|
+
"wms.backend.dashboard.errors.load": "대시보드를 로드하지 못했습니다.",
|
|
153
|
+
"wms.backend.dashboard.errors.locations": "위치를 로드하지 못했습니다.",
|
|
154
|
+
"wms.backend.dashboard.errors.warehouses": "창고를 로드하지 못했습니다.",
|
|
155
|
+
"wms.backend.dashboard.expiry.available": "{quantity} 사용 가능",
|
|
156
|
+
"wms.backend.dashboard.expiry.description": "선택한 창고 범위에 보유 재고가 있는 다가오는 로트 및 기한이 지난 로트입니다.",
|
|
157
|
+
"wms.backend.dashboard.expiry.expiringSoon.empty": "향후 30일 이내에 만료되는 로트가 없습니다.",
|
|
158
|
+
"wms.backend.dashboard.expiry.expiringSoon.title": "곧 만료됨",
|
|
159
|
+
"wms.backend.dashboard.expiry.expiringSoon.viewAll": "만료되는 모든 항목 보기 →",
|
|
160
|
+
"wms.backend.dashboard.expiry.openLot": "공개 부지",
|
|
161
|
+
"wms.backend.dashboard.expiry.pastDue.empty": "사용 가능한 재고가 있는 만료된 로트가 없습니다.",
|
|
162
|
+
"wms.backend.dashboard.expiry.pastDue.title": "연체",
|
|
163
|
+
"wms.backend.dashboard.expiry.pastDue.viewAll": "모든 연체 보기 →",
|
|
164
|
+
"wms.backend.dashboard.expiry.title": "만료 시계",
|
|
165
|
+
"wms.backend.dashboard.filters.allWarehouses": "모든 창고",
|
|
166
|
+
"wms.backend.dashboard.firstRun.actions.addLocations": "위치 추가",
|
|
167
|
+
"wms.backend.dashboard.firstRun.actions.createWarehouse": "창고 생성",
|
|
168
|
+
"wms.backend.dashboard.firstRun.actions.receiveStock": "첫 번째 재고 받기",
|
|
169
|
+
"wms.backend.dashboard.firstRun.description": "창고를 만들고 저장 위치를 추가한 다음 첫 번째 재고를 받아 재고 추적을 시작하세요.",
|
|
170
|
+
"wms.backend.dashboard.firstRun.noLocations.description": "창고가 설정되었습니다. 재고를 받기 전에 최소한 하나의 저장 위치를 추가하세요.",
|
|
171
|
+
"wms.backend.dashboard.firstRun.noLocations.title": "저장 위치 추가",
|
|
172
|
+
"wms.backend.dashboard.firstRun.title": "창고 설정",
|
|
173
|
+
"wms.backend.dashboard.kpis.agingReservations.badge": "{count} 노화",
|
|
174
|
+
"wms.backend.dashboard.kpis.agingReservations.caption": "7일보다 오래된 활성 보유",
|
|
175
|
+
"wms.backend.dashboard.kpis.agingReservations.cta": "예약 보기",
|
|
176
|
+
"wms.backend.dashboard.kpis.agingReservations.title": "에이징 예약",
|
|
177
|
+
"wms.backend.dashboard.kpis.expiringSoon.badge": "{count} 묶음",
|
|
178
|
+
"wms.backend.dashboard.kpis.expiringSoon.caption": "로트는 30일 후에 만료됩니다.",
|
|
179
|
+
"wms.backend.dashboard.kpis.expiringSoon.cta": "만료 보기",
|
|
180
|
+
"wms.backend.dashboard.kpis.expiringSoon.title": "곧 만료됨",
|
|
181
|
+
"wms.backend.dashboard.kpis.lowStock.badgeActive": "{count} 활성",
|
|
182
|
+
"wms.backend.dashboard.kpis.lowStock.badgeSinceYesterday": "+{count} 어제부터",
|
|
183
|
+
"wms.backend.dashboard.kpis.lowStock.badgeStable": "안정적인",
|
|
184
|
+
"wms.backend.dashboard.kpis.lowStock.caption": "재주문 지점 아래",
|
|
185
|
+
"wms.backend.dashboard.kpis.lowStock.cta": "낮은 재고 보기",
|
|
186
|
+
"wms.backend.dashboard.kpis.lowStock.title": "재고 부족",
|
|
187
|
+
"wms.backend.dashboard.kpis.pastDue.badge": "{count} 묶음",
|
|
188
|
+
"wms.backend.dashboard.kpis.pastDue.caption": "보유 재고가 있는 만료된 로트",
|
|
189
|
+
"wms.backend.dashboard.kpis.pastDue.cta": "연체 보기",
|
|
190
|
+
"wms.backend.dashboard.kpis.pastDue.title": "연체",
|
|
191
|
+
"wms.backend.dashboard.kpis.reorderCritical.badge": "{count} 중요",
|
|
192
|
+
"wms.backend.dashboard.kpis.reorderCritical.caption": "안전재고 이하",
|
|
193
|
+
"wms.backend.dashboard.kpis.reorderCritical.cta": "중요한 보기",
|
|
194
|
+
"wms.backend.dashboard.kpis.reorderCritical.title": "중요 재정렬",
|
|
195
|
+
"wms.backend.dashboard.kpis.todaysMoves.badgeDown": "{count} 대 어제",
|
|
196
|
+
"wms.backend.dashboard.kpis.todaysMoves.badgeUp": "+{count} vs 어제",
|
|
197
|
+
"wms.backend.dashboard.kpis.todaysMoves.caption": "오늘 게시된 움직임",
|
|
198
|
+
"wms.backend.dashboard.kpis.todaysMoves.cta": "원장 보기",
|
|
199
|
+
"wms.backend.dashboard.kpis.todaysMoves.title": "오늘의 움직임",
|
|
200
|
+
"wms.backend.dashboard.loading": "대시보드 로드 중…",
|
|
201
|
+
"wms.backend.dashboard.quickActions.adjust": "재고 조정",
|
|
202
|
+
"wms.backend.dashboard.quickActions.cycleCount": "사이클 수",
|
|
203
|
+
"wms.backend.dashboard.quickActions.description": "대시보드를 떠나지 않고 서랍 열기",
|
|
204
|
+
"wms.backend.dashboard.quickActions.inventory": "인벤토리 콘솔 열기",
|
|
205
|
+
"wms.backend.dashboard.quickActions.movements": "움직임 보기",
|
|
206
|
+
"wms.backend.dashboard.quickActions.receive": "재고 수령",
|
|
207
|
+
"wms.backend.dashboard.quickActions.title": "빠른 작업",
|
|
208
|
+
"wms.backend.dashboard.subtitle": "오늘의 실시간 활동 · 60초 자동 새로고침 · 마지막 업데이트 {time}",
|
|
209
|
+
"wms.backend.dashboard.subtitleLoading": "오늘의 실시간 활동 · 자동 새로고침 60초",
|
|
210
|
+
"wms.backend.dashboard.title": "운영 대시보드",
|
|
211
|
+
"wms.backend.dashboard.trends.allocate": "할당하다",
|
|
212
|
+
"wms.backend.dashboard.trends.empty": "아직 움직임 동향이 없습니다.",
|
|
213
|
+
"wms.backend.dashboard.trends.receive": "받다",
|
|
214
|
+
"wms.backend.dashboard.trends.title": "월간 동향",
|
|
215
|
+
"wms.backend.inventory.adjust.dialog.description": "원장에 서명된 델타 추가",
|
|
216
|
+
"wms.backend.inventory.adjust.dialog.shortcutSave": "저장하다",
|
|
217
|
+
"wms.backend.inventory.adjust.dialog.submit": "조정 저장",
|
|
218
|
+
"wms.backend.inventory.adjust.dialog.title": "재고 조정",
|
|
219
|
+
"wms.backend.inventory.adjust.errors.deltaZero": "재고 델타는 0이 아니어야 합니다.",
|
|
220
|
+
"wms.backend.inventory.adjust.errors.lot": "재고 로트를 해결하지 못했습니다.",
|
|
221
|
+
"wms.backend.inventory.adjust.errors.previewBalance": "미리보기 로드 밸런싱에 실패했습니다.",
|
|
222
|
+
"wms.backend.inventory.adjust.errors.submit": "인벤토리 조정에 실패했습니다.",
|
|
223
|
+
"wms.backend.inventory.adjust.errors.warehouse": "먼저 창고를 선택하세요.",
|
|
224
|
+
"wms.backend.inventory.adjust.flash.success": "재고 조정됨",
|
|
225
|
+
"wms.backend.inventory.adjust.form.decrease": "수량 감소",
|
|
226
|
+
"wms.backend.inventory.adjust.form.delta": "조정",
|
|
227
|
+
"wms.backend.inventory.adjust.form.increase": "수량 늘리기",
|
|
228
|
+
"wms.backend.inventory.adjust.form.location": "위치",
|
|
229
|
+
"wms.backend.inventory.adjust.form.locationPlaceholder": "위치 선택",
|
|
230
|
+
"wms.backend.inventory.adjust.form.lot": "많은",
|
|
231
|
+
"wms.backend.inventory.adjust.form.lotPlaceholder": "로트 선택(선택사항)",
|
|
232
|
+
"wms.backend.inventory.adjust.form.notes": "메모",
|
|
233
|
+
"wms.backend.inventory.adjust.form.notesPlaceholder": "선택 사항 - 감사자를 위한 컨텍스트",
|
|
234
|
+
"wms.backend.inventory.adjust.form.reason": "이유",
|
|
235
|
+
"wms.backend.inventory.adjust.form.reasonPlaceholder": "이유를 선택하세요",
|
|
236
|
+
"wms.backend.inventory.adjust.form.serial": "일련번호",
|
|
237
|
+
"wms.backend.inventory.adjust.form.serialHelp": "변형 프로필이 연재물을 추적할 때 사용합니다.",
|
|
238
|
+
"wms.backend.inventory.adjust.form.serialPlaceholder": "선택 사항 — 연속 추적 변형의 경우",
|
|
239
|
+
"wms.backend.inventory.adjust.form.variant": "변종",
|
|
240
|
+
"wms.backend.inventory.adjust.form.variantPlaceholder": "변형 또는 SKU 검색",
|
|
241
|
+
"wms.backend.inventory.adjust.form.warehouse": "창고",
|
|
242
|
+
"wms.backend.inventory.adjust.form.warehousePlaceholder": "창고 선택",
|
|
243
|
+
"wms.backend.inventory.adjust.preview.belowReorder": "아래 재주문",
|
|
244
|
+
"wms.backend.inventory.adjust.preview.loading": "상쾌한 밸런스…",
|
|
245
|
+
"wms.backend.inventory.adjust.preview.onHandLabel": "보유",
|
|
246
|
+
"wms.backend.inventory.adjust.preview.title": "잔액 미리보기",
|
|
247
|
+
"wms.backend.inventory.adjust.reasons.correction": "보정",
|
|
248
|
+
"wms.backend.inventory.adjust.reasons.damaged": "손상됨",
|
|
249
|
+
"wms.backend.inventory.adjust.reasons.found": "재고 발견",
|
|
250
|
+
"wms.backend.inventory.adjust.reasons.other": "다른",
|
|
251
|
+
"wms.backend.inventory.adjust.reasons.shrinkage": "수축",
|
|
252
|
+
"wms.backend.inventory.allocate.errors.submit": "예약 할당에 실패했습니다.",
|
|
253
|
+
"wms.backend.inventory.allocate.flash.success": "예약이 할당됨",
|
|
254
|
+
"wms.backend.inventory.balances.actions.move": "이동하다",
|
|
255
|
+
"wms.backend.inventory.balances.columns.allocated": "할당됨",
|
|
256
|
+
"wms.backend.inventory.balances.columns.available": "사용 가능",
|
|
257
|
+
"wms.backend.inventory.balances.columns.location": "위치",
|
|
258
|
+
"wms.backend.inventory.balances.columns.lot": "많은",
|
|
259
|
+
"wms.backend.inventory.balances.columns.reserved": "예약된",
|
|
260
|
+
"wms.backend.inventory.balances.columns.variant": "변종",
|
|
261
|
+
"wms.backend.inventory.balances.columns.warehouse": "창고",
|
|
262
|
+
"wms.backend.inventory.balances.description": "버켓별 현재 보유 수량, 예약 수량, 할당 수량, 가용 수량입니다.",
|
|
263
|
+
"wms.backend.inventory.balances.empty.description": "입고, 조정 또는 이동으로 인해 재고 버킷이 생성된 후에 잔액이 나타납니다.",
|
|
264
|
+
"wms.backend.inventory.balances.empty.importCsv": "CSV 가져오기",
|
|
265
|
+
"wms.backend.inventory.balances.empty.receive": "재고 수령",
|
|
266
|
+
"wms.backend.inventory.balances.empty.title": "잔액 버킷 없음",
|
|
267
|
+
"wms.backend.inventory.balances.lotLink": "부지보기",
|
|
268
|
+
"wms.backend.inventory.balances.search": "잔액 검색",
|
|
269
|
+
"wms.backend.inventory.balances.title": "재고 잔고",
|
|
270
|
+
"wms.backend.inventory.common.notAvailable": "—",
|
|
271
|
+
"wms.backend.inventory.console.scopeBar.allVariants": "모든 SKU",
|
|
272
|
+
"wms.backend.inventory.console.scopeBar.allWarehouses": "모든 창고",
|
|
273
|
+
"wms.backend.inventory.console.scopeBar.clearAll": "분명한",
|
|
274
|
+
"wms.backend.inventory.console.scopeBar.label": "범위",
|
|
275
|
+
"wms.backend.inventory.console.scopeBar.warehouse": "창고",
|
|
276
|
+
"wms.backend.inventory.cycleCount.dialog.title": "사이클 수",
|
|
277
|
+
"wms.backend.inventory.cycleCount.errors.ambiguousLot": "이 위치에서 여러 로트가 발견되었습니다. 계속하려면 로트를 선택하세요.",
|
|
278
|
+
"wms.backend.inventory.cycleCount.errors.autoAdjustRequired": "차이를 커밋하려면 자동 조정을 활성화하세요.",
|
|
279
|
+
"wms.backend.inventory.cycleCount.errors.balance": "현재 시스템을 로드하지 못했습니다.",
|
|
280
|
+
"wms.backend.inventory.cycleCount.errors.scope": "설정을 완료하고 카운트 위치를 선택하세요.",
|
|
281
|
+
"wms.backend.inventory.cycleCount.errors.scopeEstimate": "개수 범위를 예측하지 못했습니다.",
|
|
282
|
+
"wms.backend.inventory.cycleCount.errors.submit": "주기 수를 게시하지 못했습니다.",
|
|
283
|
+
"wms.backend.inventory.cycleCount.errors.warehouse": "먼저 창고를 선택하세요.",
|
|
284
|
+
"wms.backend.inventory.cycleCount.errors.zoneWarehouse": "선택한 구역은 이 창고에 속하지 않습니다.",
|
|
285
|
+
"wms.backend.inventory.cycleCount.flash.success": "게시된 주기 수({delta})",
|
|
286
|
+
"wms.backend.inventory.cycleCount.form.assignee": "양수인",
|
|
287
|
+
"wms.backend.inventory.cycleCount.form.assigneeLocked": "사용자 디렉터리 액세스 없이 현재 사용자만 할당할 수 있습니다.",
|
|
288
|
+
"wms.backend.inventory.cycleCount.form.assigneePlaceholder": "담당자 선택",
|
|
289
|
+
"wms.backend.inventory.cycleCount.form.autoAdjust": "커밋 시 자동 조정",
|
|
290
|
+
"wms.backend.inventory.cycleCount.form.autoAdjustHint": "예 - 커밋 시 주기 계산 이동을 기록합니다.",
|
|
291
|
+
"wms.backend.inventory.cycleCount.form.autoAdjustHintOff": "아니요 - 커밋 시 원장이 변경되지 않음",
|
|
292
|
+
"wms.backend.inventory.cycleCount.form.autoAdjustNoVariance": "원장 쓰기가 필요하지 않습니다. 개수가 일치합니다.",
|
|
293
|
+
"wms.backend.inventory.cycleCount.form.countNotes": "메모",
|
|
294
|
+
"wms.backend.inventory.cycleCount.form.countNotesPlaceholder": "선택 사항 - 결함, 포장 메모",
|
|
295
|
+
"wms.backend.inventory.cycleCount.form.counted": "계산됨",
|
|
296
|
+
"wms.backend.inventory.cycleCount.form.currentlyScanning": "현재 스캔 중",
|
|
297
|
+
"wms.backend.inventory.cycleCount.form.decrease": "수량 감소",
|
|
298
|
+
"wms.backend.inventory.cycleCount.form.decreaseExpectedSkus": "예상 SKU 감소",
|
|
299
|
+
"wms.backend.inventory.cycleCount.form.expectedSkus": "예상 SKU",
|
|
300
|
+
"wms.backend.inventory.cycleCount.form.expectedSkusLoading": "범위 추정 중…",
|
|
301
|
+
"wms.backend.inventory.cycleCount.form.fromBin": "빈에서",
|
|
302
|
+
"wms.backend.inventory.cycleCount.form.fromBinPlaceholder": "시작함",
|
|
303
|
+
"wms.backend.inventory.cycleCount.form.increase": "수량 늘리기",
|
|
304
|
+
"wms.backend.inventory.cycleCount.form.increaseExpectedSkus": "예상 SKU 증가",
|
|
305
|
+
"wms.backend.inventory.cycleCount.form.location": "위치",
|
|
306
|
+
"wms.backend.inventory.cycleCount.form.locationPlaceholder": "위치 선택",
|
|
307
|
+
"wms.backend.inventory.cycleCount.form.lot": "많은",
|
|
308
|
+
"wms.backend.inventory.cycleCount.form.lotPlaceholder": "로트 선택(선택사항)",
|
|
309
|
+
"wms.backend.inventory.cycleCount.form.reason": "이유",
|
|
310
|
+
"wms.backend.inventory.cycleCount.form.reasonPlaceholder": "차이에 필수 — 감사자 컨텍스트",
|
|
311
|
+
"wms.backend.inventory.cycleCount.form.schedule": "일정",
|
|
312
|
+
"wms.backend.inventory.cycleCount.form.scheduleImmediate": "즉시 시작",
|
|
313
|
+
"wms.backend.inventory.cycleCount.form.schedulePlaceholder": "날짜 및 시간 선택",
|
|
314
|
+
"wms.backend.inventory.cycleCount.form.setupNotes": "메모",
|
|
315
|
+
"wms.backend.inventory.cycleCount.form.setupNotesPlaceholder": "선택 사항 - 사전 계산 지침",
|
|
316
|
+
"wms.backend.inventory.cycleCount.form.toBin": "빈으로",
|
|
317
|
+
"wms.backend.inventory.cycleCount.form.toBinPlaceholder": "엔드 빈",
|
|
318
|
+
"wms.backend.inventory.cycleCount.form.variant": "변형/SKU",
|
|
319
|
+
"wms.backend.inventory.cycleCount.form.variantPlaceholder": "변형 또는 SKU 검색",
|
|
320
|
+
"wms.backend.inventory.cycleCount.form.variantScanPlaceholder": "스캔을 시작하려면 변형을 선택하세요.",
|
|
321
|
+
"wms.backend.inventory.cycleCount.form.warehouse": "창고",
|
|
322
|
+
"wms.backend.inventory.cycleCount.form.warehousePlaceholder": "창고 선택",
|
|
323
|
+
"wms.backend.inventory.cycleCount.form.zone": "존",
|
|
324
|
+
"wms.backend.inventory.cycleCount.form.zonePlaceholder": "구역 선택",
|
|
325
|
+
"wms.backend.inventory.cycleCount.form.zonePlaceholderDisabled": "먼저 창고를 선택하세요",
|
|
326
|
+
"wms.backend.inventory.cycleCount.form.zoneScopeHint": "{warehouse} · {expectedSkus} SKU · 범위 내 {binCount} 저장소",
|
|
327
|
+
"wms.backend.inventory.cycleCount.form.zoneSelectWarehouse": "구역을 선택하려면 창고를 선택하세요.",
|
|
328
|
+
"wms.backend.inventory.cycleCount.form.zoneWarehouseHint": "{warehouse} 내의 기능 영역",
|
|
329
|
+
"wms.backend.inventory.cycleCount.review.commitSummary.movement": "{delta} 순 · 1 원장 쓰기",
|
|
330
|
+
"wms.backend.inventory.cycleCount.review.commitSummary.noMovement": "이동 없음 · 원장은 변경되지 않음",
|
|
331
|
+
"wms.backend.inventory.cycleCount.review.commitSummary.ready": "준비가 된",
|
|
332
|
+
"wms.backend.inventory.cycleCount.review.commitSummary.title": "커밋 요약",
|
|
333
|
+
"wms.backend.inventory.cycleCount.review.counted": "계산됨",
|
|
334
|
+
"wms.backend.inventory.cycleCount.review.matches": "성냥",
|
|
335
|
+
"wms.backend.inventory.cycleCount.review.matchesNone": "일치하지 않음",
|
|
336
|
+
"wms.backend.inventory.cycleCount.review.matchesWithinTolerance": "허용오차 이내",
|
|
337
|
+
"wms.backend.inventory.cycleCount.review.noVariance": "개수가 원장과 일치합니다. 게시해도 움직임이 생성되지는 않습니다.",
|
|
338
|
+
"wms.backend.inventory.cycleCount.review.progress.loading": "상쾌한 밸런스…",
|
|
339
|
+
"wms.backend.inventory.cycleCount.review.progress.match": "성냥",
|
|
340
|
+
"wms.backend.inventory.cycleCount.review.progress.summary": "시스템 {system} · 계산된 {counted}",
|
|
341
|
+
"wms.backend.inventory.cycleCount.review.progress.title": "진전",
|
|
342
|
+
"wms.backend.inventory.cycleCount.review.system": "시스템 보유",
|
|
343
|
+
"wms.backend.inventory.cycleCount.review.totalCounted": "계산된 총계",
|
|
344
|
+
"wms.backend.inventory.cycleCount.review.totalCountedSummary": "{counted} 장치 · {location} · {variant}",
|
|
345
|
+
"wms.backend.inventory.cycleCount.review.variance": "조정 델타",
|
|
346
|
+
"wms.backend.inventory.cycleCount.review.varianceDetail": "변화",
|
|
347
|
+
"wms.backend.inventory.cycleCount.review.varianceLine": "계산된 {counted} 대 예상 {expected} · {delta}",
|
|
348
|
+
"wms.backend.inventory.cycleCount.review.variances": "차이",
|
|
349
|
+
"wms.backend.inventory.cycleCount.review.variancesNone": "없음",
|
|
350
|
+
"wms.backend.inventory.cycleCount.steps.back": "뒤쪽에",
|
|
351
|
+
"wms.backend.inventory.cycleCount.steps.counting.finish": "세션 종료({count})",
|
|
352
|
+
"wms.backend.inventory.cycleCount.steps.counting.finishComplete": "세션 닫기",
|
|
353
|
+
"wms.backend.inventory.cycleCount.steps.counting.finishConfirm": "완료 확인",
|
|
354
|
+
"wms.backend.inventory.cycleCount.steps.counting.finishTooltip": "{count} 라인이 이미 커밋되었습니다. 이를 잃지 않고 닫으려면 클릭하세요.",
|
|
355
|
+
"wms.backend.inventory.cycleCount.steps.counting.finishWarning": "{remaining} 항목이 아직 범위 내에 있습니다. 조기 완료를 확인하세요.",
|
|
356
|
+
"wms.backend.inventory.cycleCount.steps.counting.progressSkus": "{posted} / {expected} SKU 계산됨",
|
|
357
|
+
"wms.backend.inventory.cycleCount.steps.counting.queueComplete": "모든 {total} 항목이 계산됨 — 세션 완료",
|
|
358
|
+
"wms.backend.inventory.cycleCount.steps.counting.queueEmpty": "범위에 항목이 없습니다. 위치를 수동으로 입력하세요.",
|
|
359
|
+
"wms.backend.inventory.cycleCount.steps.counting.queueError": "범위를 로드하지 못했습니다. 위치를 수동으로 입력하세요.",
|
|
360
|
+
"wms.backend.inventory.cycleCount.steps.counting.queueItem": "{total}의 아이템 {current}",
|
|
361
|
+
"wms.backend.inventory.cycleCount.steps.counting.queueLoading": "카운트 범위 로드 중…",
|
|
362
|
+
"wms.backend.inventory.cycleCount.steps.counting.shortcut": "계속하다",
|
|
363
|
+
"wms.backend.inventory.cycleCount.steps.counting.submit": "차이 검토",
|
|
364
|
+
"wms.backend.inventory.cycleCount.steps.counting.subtitle": "3단계 중 2단계 · 항목 스캔 및 집계",
|
|
365
|
+
"wms.backend.inventory.cycleCount.steps.counting.subtitleWithPosted": "3단계 중 2단계 · {count} 라인 게시됨 - 다음 SKU 계산",
|
|
366
|
+
"wms.backend.inventory.cycleCount.steps.review.shortcut": "저지르다",
|
|
367
|
+
"wms.backend.inventory.cycleCount.steps.review.submit": "커밋 및 다음 계산",
|
|
368
|
+
"wms.backend.inventory.cycleCount.steps.review.subtitle": "3단계 중 3단계 · 차이 검토 및 커밋",
|
|
369
|
+
"wms.backend.inventory.cycleCount.steps.setup.shortcut": "시작하다",
|
|
370
|
+
"wms.backend.inventory.cycleCount.steps.setup.submit": "계산 시작",
|
|
371
|
+
"wms.backend.inventory.cycleCount.steps.setup.subtitle": "3단계 중 1단계 · 범위 및 기대치 설정",
|
|
372
|
+
"wms.backend.inventory.errors.balances": "부하 분산에 실패했습니다.",
|
|
373
|
+
"wms.backend.inventory.errors.movements": "움직임을 로드하지 못했습니다.",
|
|
374
|
+
"wms.backend.inventory.errors.reservations": "예약을 로드하지 못했습니다.",
|
|
375
|
+
"wms.backend.inventory.import.actions.apply": "가져오기 적용",
|
|
376
|
+
"wms.backend.inventory.import.actions.applying": "가져오는 중…",
|
|
377
|
+
"wms.backend.inventory.import.actions.autoMap": "자동 지도",
|
|
378
|
+
"wms.backend.inventory.import.actions.back": "뒤쪽에",
|
|
379
|
+
"wms.backend.inventory.import.actions.cancel": "취소",
|
|
380
|
+
"wms.backend.inventory.import.actions.chooseDifferent": "다른 파일 선택",
|
|
381
|
+
"wms.backend.inventory.import.actions.chooseFile": "CSV 파일 선택",
|
|
382
|
+
"wms.backend.inventory.import.actions.hideDetails": "세부정보 숨기기",
|
|
383
|
+
"wms.backend.inventory.import.actions.importRows": "{count} 행 가져오기",
|
|
384
|
+
"wms.backend.inventory.import.actions.next": "다음",
|
|
385
|
+
"wms.backend.inventory.import.actions.template": "템플릿 다운로드",
|
|
386
|
+
"wms.backend.inventory.import.actions.validate": "검증",
|
|
387
|
+
"wms.backend.inventory.import.actions.validating": "검증 중…",
|
|
388
|
+
"wms.backend.inventory.import.actions.viewDetails": "세부정보 보기 →",
|
|
389
|
+
"wms.backend.inventory.import.columns.delta": "델타",
|
|
390
|
+
"wms.backend.inventory.import.columns.issues": "문제",
|
|
391
|
+
"wms.backend.inventory.import.columns.location": "위치",
|
|
392
|
+
"wms.backend.inventory.import.columns.row": "열",
|
|
393
|
+
"wms.backend.inventory.import.columns.sku": "SKU",
|
|
394
|
+
"wms.backend.inventory.import.columns.status": "상태",
|
|
395
|
+
"wms.backend.inventory.import.defaultReason": "CSV 가져오기 재고 수령",
|
|
396
|
+
"wms.backend.inventory.import.defaultReasonReconcile": "CSV 가져오기 기초 잔액",
|
|
397
|
+
"wms.backend.inventory.import.dialog.description": "영수증 행을 업로드하고 검증한 다음 WMS 원장에 수량을 추가합니다.",
|
|
398
|
+
"wms.backend.inventory.import.dialog.title": "CSV 가져오기",
|
|
399
|
+
"wms.backend.inventory.import.errors.apply": "가져오기에 실패했습니다.",
|
|
400
|
+
"wms.backend.inventory.import.errors.csvFileRequired": "CSV 파일이 필요합니다.",
|
|
401
|
+
"wms.backend.inventory.import.errors.file": "먼저 CSV 파일을 선택하세요.",
|
|
402
|
+
"wms.backend.inventory.import.errors.scope": "가져오기 전에 조직 범위를 선택하세요.",
|
|
403
|
+
"wms.backend.inventory.import.errors.validate": "유효성 검사에 실패했습니다.",
|
|
404
|
+
"wms.backend.inventory.import.errors.validationFailed": "유효성 검사에 실패했습니다.",
|
|
405
|
+
"wms.backend.inventory.import.flash.applied": "가져오기가 완료되었습니다({applied} 적용, {skipped} 건너뛰기).",
|
|
406
|
+
"wms.backend.inventory.import.flash.appliedPartial": "가져오기가 오류와 함께 완료되었습니다({applied} 적용, {skipped} 건너뛰기, {failed} 실패).",
|
|
407
|
+
"wms.backend.inventory.import.flash.validated": "CSV 검증됨 - 적용하기 전에 행을 검토하세요.",
|
|
408
|
+
"wms.backend.inventory.import.flash.validationErrors": "적용하기 전에 유효성 검사 오류를 수정하세요.",
|
|
409
|
+
"wms.backend.inventory.import.mapping.csvColumn": "CSV 열",
|
|
410
|
+
"wms.backend.inventory.import.mapping.fields.catalogVariantId": "Catalog_variant_id",
|
|
411
|
+
"wms.backend.inventory.import.mapping.fields.locationCode": "위치_코드",
|
|
412
|
+
"wms.backend.inventory.import.mapping.fields.locationId": "위치_ID",
|
|
413
|
+
"wms.backend.inventory.import.mapping.fields.lotId": "lot_id",
|
|
414
|
+
"wms.backend.inventory.import.mapping.fields.lotNumber": "lot_number",
|
|
415
|
+
"wms.backend.inventory.import.mapping.fields.quantity": "수량",
|
|
416
|
+
"wms.backend.inventory.import.mapping.fields.serialNumber": "일련번호",
|
|
417
|
+
"wms.backend.inventory.import.mapping.fields.sku": "sku",
|
|
418
|
+
"wms.backend.inventory.import.mapping.fields.warehouseCode": "창고_코드",
|
|
419
|
+
"wms.backend.inventory.import.mapping.fields.warehouseId": "창고_ID",
|
|
420
|
+
"wms.backend.inventory.import.mapping.skipColumn": "— 열 건너뛰기",
|
|
421
|
+
"wms.backend.inventory.import.mapping.status": "상태",
|
|
422
|
+
"wms.backend.inventory.import.mapping.status.mapped": "매핑됨",
|
|
423
|
+
"wms.backend.inventory.import.mapping.status.skipped": "건너뛰었습니다.",
|
|
424
|
+
"wms.backend.inventory.import.mapping.summary": "{total} 열 중 {mapped}가 매핑됨 · {rows} 행이 감지됨",
|
|
425
|
+
"wms.backend.inventory.import.mapping.targetField": "대상 분야",
|
|
426
|
+
"wms.backend.inventory.import.review.banner.rowIssue": "행 {row}: {issue}",
|
|
427
|
+
"wms.backend.inventory.import.review.banner.title": "가져오기 시 {count} 행을 건너뜁니다.",
|
|
428
|
+
"wms.backend.inventory.import.review.overwriteBanner.rowDetail": "행 {row}: {location} — {current} → {quantity} ({delta})",
|
|
429
|
+
"wms.backend.inventory.import.review.overwriteBanner.title": "{count} 행은 기존 재고 수준을 변경합니다.",
|
|
430
|
+
"wms.backend.inventory.import.review.preview.empty": "미리보기 행을 사용할 수 없습니다.",
|
|
431
|
+
"wms.backend.inventory.import.review.preview.lot": "많은",
|
|
432
|
+
"wms.backend.inventory.import.review.preview.qty": "수량",
|
|
433
|
+
"wms.backend.inventory.import.review.preview.title": "미리보기 · 처음 3개 행",
|
|
434
|
+
"wms.backend.inventory.import.review.skipDuplicates": "중복 건너뛰기",
|
|
435
|
+
"wms.backend.inventory.import.review.skipDuplicatesHint": "유효성 검사에 실패하는 대신 CSV 파일의 중복 행을 건너뜁니다.",
|
|
436
|
+
"wms.backend.inventory.import.review.stats.columns": "매핑된 열",
|
|
437
|
+
"wms.backend.inventory.import.review.stats.issues": "유효성 검사 문제",
|
|
438
|
+
"wms.backend.inventory.import.review.stats.rows": "가져올 행",
|
|
439
|
+
"wms.backend.inventory.import.review.writeLedger": "원장에 쓰기",
|
|
440
|
+
"wms.backend.inventory.import.review.writeLedgerHint": "각 행은 WMS 원장에 감사 항목을 생성합니다.",
|
|
441
|
+
"wms.backend.inventory.import.shortcut.continue": "계속하다",
|
|
442
|
+
"wms.backend.inventory.import.shortcut.import": "수입하다",
|
|
443
|
+
"wms.backend.inventory.import.steps.mapping.subtitle": "3단계 중 2단계 · CSV 열을 필드에 매핑",
|
|
444
|
+
"wms.backend.inventory.import.steps.review.subtitle": "3단계 중 3단계 · 검토 및 가져오기",
|
|
445
|
+
"wms.backend.inventory.import.steps.upload.subtitle": "3단계 중 1단계 · 파일 업로드",
|
|
446
|
+
"wms.backend.inventory.import.summary": "{total} 행 · 유효한 {valid} · {errors} 오류 · {warnings} 경고 · {skipped} 건너뛰기",
|
|
447
|
+
"wms.backend.inventory.import.upload.dropzoneEmpty": "CSV 파일을 선택하거나 여기에 드롭하세요.",
|
|
448
|
+
"wms.backend.inventory.import.upload.encoding": "부호화",
|
|
449
|
+
"wms.backend.inventory.import.upload.encodingValue": "UTF-8(자동 감지)",
|
|
450
|
+
"wms.backend.inventory.import.upload.fileMeta": "{rows} 행 · {size} · 감지됨",
|
|
451
|
+
"wms.backend.inventory.import.upload.format": "체재",
|
|
452
|
+
"wms.backend.inventory.import.upload.formatValue": "CSV · 쉼표로 구분",
|
|
453
|
+
"wms.backend.inventory.import.upload.hasHeader": "첫 번째 행은 열 머리글입니다.",
|
|
454
|
+
"wms.backend.inventory.import.upload.hasHeaderOn": "켜짐 - 가져올 때 첫 번째 행 건너뛰기",
|
|
455
|
+
"wms.backend.inventory.import.upload.quantityHint": "수량 열은 해당 창고/위치에 이미 존재하는 재고에 추가되며 이는 목표 잔액이 아닙니다.",
|
|
456
|
+
"wms.backend.inventory.import.upload.reconcileMode": "정확한 잔액으로 조정",
|
|
457
|
+
"wms.backend.inventory.import.upload.reconcileModeHint": "각 위치의 기존 재고는 축소를 포함하여 파일과 정확하게 일치하도록 덮어쓰여집니다. 전체 재고 조사 또는 기초 잔액 가져오기에 이 기능을 사용하세요. 대신 기존 재고에 수량을 추가하려면 그대로 두세요.",
|
|
458
|
+
"wms.backend.inventory.import.upload.skuHint": "SKU 열은 조직의 기존 카탈로그 제품 변형과 일치해야 합니다. 창고 및 위치 코드는 WMS에 이미 존재해야 합니다.",
|
|
459
|
+
"wms.backend.inventory.import.validation.catalog_variant_not_found": "카탈로그 변형을 찾을 수 없습니다.",
|
|
460
|
+
"wms.backend.inventory.import.validation.duplicate_of_row": "{row} 행이 중복되었습니다.",
|
|
461
|
+
"wms.backend.inventory.import.validation.duplicate_row": "파일에 중복된 행이 있습니다.",
|
|
462
|
+
"wms.backend.inventory.import.validation.insufficient_available_for_negative_delta": "마이너스 조정을 위한 가용 재고가 부족함",
|
|
463
|
+
"wms.backend.inventory.import.validation.location_not_found": "위치를 찾을 수 없습니다",
|
|
464
|
+
"wms.backend.inventory.import.validation.location_required": "위치는 필수 항목입니다.",
|
|
465
|
+
"wms.backend.inventory.import.validation.lot_not_found": "로트를 찾을 수 없습니다",
|
|
466
|
+
"wms.backend.inventory.import.validation.overwriting_existing_balance": "기존 잔액을 덮어씁니다.",
|
|
467
|
+
"wms.backend.inventory.import.validation.quantity_invalid": "수량은 0 이상이어야 합니다.",
|
|
468
|
+
"wms.backend.inventory.import.validation.quantity_required": "수량은 필수 항목입니다.",
|
|
469
|
+
"wms.backend.inventory.import.validation.sku_ambiguous": "여러 카탈로그 변형이 이 SKU를 공유합니다.",
|
|
470
|
+
"wms.backend.inventory.import.validation.sku_not_found": "카탈로그에서 SKU를 찾을 수 없습니다.",
|
|
471
|
+
"wms.backend.inventory.import.validation.sku_required": "SKU가 필요합니다",
|
|
472
|
+
"wms.backend.inventory.import.validation.warehouse_not_found": "창고를 찾을 수 없습니다",
|
|
473
|
+
"wms.backend.inventory.import.validation.warehouse_required": "창고가 필요합니다",
|
|
474
|
+
"wms.backend.inventory.move.dialog.description": "동일한 창고 내의 위치 간에 사용 가능한 재고를 이전합니다.",
|
|
475
|
+
"wms.backend.inventory.move.dialog.shortcutSave": "저장하다",
|
|
476
|
+
"wms.backend.inventory.move.dialog.submit": "재고 이동",
|
|
477
|
+
"wms.backend.inventory.move.dialog.title": "재고 이동",
|
|
478
|
+
"wms.backend.inventory.move.dialog.titlePutaway": "최종통에 버리세요",
|
|
479
|
+
"wms.backend.inventory.move.errors.insufficientAvailable": "수량이 소스 위치에서 사용 가능한 재고를 초과합니다.",
|
|
480
|
+
"wms.backend.inventory.move.errors.previewBalance": "사용 가능한 수량을 로드하지 못했습니다.",
|
|
481
|
+
"wms.backend.inventory.move.errors.quantityPositive": "이동 수량은 0보다 커야 합니다.",
|
|
482
|
+
"wms.backend.inventory.move.errors.sameLocation": "대상은 원본 위치와 달라야 합니다.",
|
|
483
|
+
"wms.backend.inventory.move.errors.submit": "인벤토리를 이동하지 못했습니다.",
|
|
484
|
+
"wms.backend.inventory.move.flash.success": "재고가 이동되었습니다",
|
|
485
|
+
"wms.backend.inventory.move.form.fromLocation": "출발지",
|
|
486
|
+
"wms.backend.inventory.move.form.fromLocationPlaceholder": "소스 위치 선택",
|
|
487
|
+
"wms.backend.inventory.move.form.notes": "메모",
|
|
488
|
+
"wms.backend.inventory.move.form.notesPlaceholder": "선택 사항 - 감사자를 위한 컨텍스트",
|
|
489
|
+
"wms.backend.inventory.move.form.quantity": "수량",
|
|
490
|
+
"wms.backend.inventory.move.form.reason": "이유",
|
|
491
|
+
"wms.backend.inventory.move.form.reasonPlaceholder": "이유를 선택하세요",
|
|
492
|
+
"wms.backend.inventory.move.form.toLocation": "위치로",
|
|
493
|
+
"wms.backend.inventory.move.form.toLocationPlaceholder": "목적지 위치 선택",
|
|
494
|
+
"wms.backend.inventory.move.form.variant": "변종",
|
|
495
|
+
"wms.backend.inventory.move.form.variantPlaceholder": "변형 또는 SKU 검색",
|
|
496
|
+
"wms.backend.inventory.move.form.warehouse": "창고",
|
|
497
|
+
"wms.backend.inventory.move.form.warehousePlaceholder": "창고 선택",
|
|
498
|
+
"wms.backend.inventory.move.preview.availableLabel": "사용 가능",
|
|
499
|
+
"wms.backend.inventory.move.preview.capacity": "{used} / {capacity} 사용 대수 · {remaining} 남음",
|
|
500
|
+
"wms.backend.inventory.move.preview.capacityExceeded": "이 이동은 대상 용량을 {quantity} 단위만큼 초과합니다.",
|
|
501
|
+
"wms.backend.inventory.move.preview.capacityLoading": "대상 용량 로드 중…",
|
|
502
|
+
"wms.backend.inventory.move.preview.capacityUnset": "이 위치에 설정된 용량 제한이 없습니다.",
|
|
503
|
+
"wms.backend.inventory.move.preview.destEmpty": "0개(빈 상자)",
|
|
504
|
+
"wms.backend.inventory.move.preview.destLoading": "대상 로드 중…",
|
|
505
|
+
"wms.backend.inventory.move.preview.destTitle": "목적지 현재 재고",
|
|
506
|
+
"wms.backend.inventory.move.preview.destUnit": "유닛은 이미 여기에 있습니다",
|
|
507
|
+
"wms.backend.inventory.move.preview.loading": "상쾌한 가용성…",
|
|
508
|
+
"wms.backend.inventory.move.preview.title": "소스 가용성",
|
|
509
|
+
"wms.backend.inventory.move.reasons.consolidation": "강화",
|
|
510
|
+
"wms.backend.inventory.move.reasons.correction": "보정",
|
|
511
|
+
"wms.backend.inventory.move.reasons.other": "다른",
|
|
512
|
+
"wms.backend.inventory.move.reasons.replenishment": "채움",
|
|
513
|
+
"wms.backend.inventory.move.reasons.transfer": "옮기다",
|
|
514
|
+
"wms.backend.inventory.movements.columns.locationFrom": "에서",
|
|
515
|
+
"wms.backend.inventory.movements.columns.locationTo": "에게",
|
|
516
|
+
"wms.backend.inventory.movements.columns.performedAt": "수행 시간",
|
|
517
|
+
"wms.backend.inventory.movements.columns.quantity": "수량",
|
|
518
|
+
"wms.backend.inventory.movements.columns.referenceType": "참조 유형",
|
|
519
|
+
"wms.backend.inventory.movements.columns.type": "유형",
|
|
520
|
+
"wms.backend.inventory.movements.columns.variant": "변종",
|
|
521
|
+
"wms.backend.inventory.movements.columns.warehouse": "창고",
|
|
522
|
+
"wms.backend.inventory.movements.description": "영수증, 이전, 조정 및 주기 계산에 대한 불변의 이동 내역입니다.",
|
|
523
|
+
"wms.backend.inventory.movements.empty.description": "이동 행은 영수증, 예약, 이동 및 조정 작업에 의해 생성됩니다.",
|
|
524
|
+
"wms.backend.inventory.movements.empty.title": "재고 이동 없음",
|
|
525
|
+
"wms.backend.inventory.movements.search": "검색 이동 원장",
|
|
526
|
+
"wms.backend.inventory.movements.title": "재고 이동 원장",
|
|
527
|
+
"wms.backend.inventory.mutations.errors.scope": "재고 변경 사항을 게시하기 전에 조직을 선택하고 로그인하세요.",
|
|
528
|
+
"wms.backend.inventory.nav.title": "목록",
|
|
529
|
+
"wms.backend.inventory.operations.adjust": "재고 조정",
|
|
530
|
+
"wms.backend.inventory.operations.cycleCount": "사이클 수",
|
|
531
|
+
"wms.backend.inventory.operations.description": "인바운드 재고를 받고, 재고를 예약 또는 이동하고, 조정을 게시하고, 주기 계산을 실행합니다.",
|
|
532
|
+
"wms.backend.inventory.operations.import": "CSV 가져오기",
|
|
533
|
+
"wms.backend.inventory.operations.move": "재고 이동",
|
|
534
|
+
"wms.backend.inventory.operations.receive": "재고 수령",
|
|
535
|
+
"wms.backend.inventory.operations.reserve": "예약하다",
|
|
536
|
+
"wms.backend.inventory.operations.title": "재고 운영",
|
|
537
|
+
"wms.backend.inventory.receive.dialog.description": "입고 이동으로 인바운드 재고를 기록합니다.",
|
|
538
|
+
"wms.backend.inventory.receive.dialog.title": "재고 수령",
|
|
539
|
+
"wms.backend.inventory.receive.errors.lot": "재고 로트를 해결하지 못했습니다.",
|
|
540
|
+
"wms.backend.inventory.receive.errors.lotRequired": "이 변형에는 로트 번호가 필요합니다.",
|
|
541
|
+
"wms.backend.inventory.receive.errors.quantityPositive": "수량은 0보다 커야 합니다.",
|
|
542
|
+
"wms.backend.inventory.receive.errors.serialRequired": "이 변형에는 일련번호가 필요합니다.",
|
|
543
|
+
"wms.backend.inventory.receive.errors.submit": "재고 수령에 실패했습니다.",
|
|
544
|
+
"wms.backend.inventory.receive.flash.success": "입고된 재고",
|
|
545
|
+
"wms.backend.inventory.receive.form.cancel": "취소",
|
|
546
|
+
"wms.backend.inventory.receive.form.decrease": "수량 감소",
|
|
547
|
+
"wms.backend.inventory.receive.form.increase": "수량 늘리기",
|
|
548
|
+
"wms.backend.inventory.receive.form.location": "위치",
|
|
549
|
+
"wms.backend.inventory.receive.form.locationPlaceholder": "위치 선택",
|
|
550
|
+
"wms.backend.inventory.receive.form.lot": "많은",
|
|
551
|
+
"wms.backend.inventory.receive.form.lotPlaceholder": "로트 선택 또는 생성(선택 사항)",
|
|
552
|
+
"wms.backend.inventory.receive.form.lotRequiredPlaceholder": "로트번호를 입력하세요",
|
|
553
|
+
"wms.backend.inventory.receive.form.notes": "메모",
|
|
554
|
+
"wms.backend.inventory.receive.form.notesPlaceholder": "선택적 메모 또는 참조 번호",
|
|
555
|
+
"wms.backend.inventory.receive.form.quantity": "수령 수량",
|
|
556
|
+
"wms.backend.inventory.receive.form.referenceType": "영수증 종류",
|
|
557
|
+
"wms.backend.inventory.receive.form.serial": "일련번호",
|
|
558
|
+
"wms.backend.inventory.receive.form.serialPlaceholder": "선택 사항 — 연속 추적 변형의 경우",
|
|
559
|
+
"wms.backend.inventory.receive.form.serialRequiredPlaceholder": "일련번호를 입력하세요",
|
|
560
|
+
"wms.backend.inventory.receive.form.shortcut": "받다",
|
|
561
|
+
"wms.backend.inventory.receive.form.submit": "받다",
|
|
562
|
+
"wms.backend.inventory.receive.form.submitting": "전수…",
|
|
563
|
+
"wms.backend.inventory.receive.form.variant": "변종",
|
|
564
|
+
"wms.backend.inventory.receive.form.variantPlaceholder": "변형 또는 SKU 검색",
|
|
565
|
+
"wms.backend.inventory.receive.form.warehouse": "창고",
|
|
566
|
+
"wms.backend.inventory.receive.form.warehousePlaceholder": "창고 선택",
|
|
567
|
+
"wms.backend.inventory.receive.referenceTypes.manual": "수동 수령",
|
|
568
|
+
"wms.backend.inventory.receive.referenceTypes.po": "구매 주문",
|
|
569
|
+
"wms.backend.inventory.receive.referenceTypes.qc": "QC 출시",
|
|
570
|
+
"wms.backend.inventory.receive.referenceTypes.rma": "RMA/반품",
|
|
571
|
+
"wms.backend.inventory.receive.referenceTypes.so": "판매 수익",
|
|
572
|
+
"wms.backend.inventory.receive.referenceTypes.transfer": "옮기다",
|
|
573
|
+
"wms.backend.inventory.referenceTypes.manual": "수동",
|
|
574
|
+
"wms.backend.inventory.referenceTypes.po": "구매 주문",
|
|
575
|
+
"wms.backend.inventory.referenceTypes.qc": "품질 관리",
|
|
576
|
+
"wms.backend.inventory.referenceTypes.rma": "RMA",
|
|
577
|
+
"wms.backend.inventory.referenceTypes.so": "판매 주문",
|
|
578
|
+
"wms.backend.inventory.referenceTypes.transfer": "옮기다",
|
|
579
|
+
"wms.backend.inventory.release.dialog.description": "예약된 수량을 이 버킷의 사용 가능한 재고로 반환합니다.",
|
|
580
|
+
"wms.backend.inventory.release.dialog.shortcutSave": "확인하기",
|
|
581
|
+
"wms.backend.inventory.release.dialog.submit": "발매 예약",
|
|
582
|
+
"wms.backend.inventory.release.dialog.title": "발매 예약",
|
|
583
|
+
"wms.backend.inventory.release.errors.balanceIntegrityViolation": "잔액 무결성 오류 - \"mercato wms verify-balances --repair\"를 실행하여 재시도하기 전에 드리프트를 진단하고 수정하세요.",
|
|
584
|
+
"wms.backend.inventory.release.errors.missingReservation": "예약 컨텍스트가 누락되었습니다. 대화 상자를 닫고 예약 표에서 다시 시도하세요.",
|
|
585
|
+
"wms.backend.inventory.release.errors.submit": "예약을 해제하지 못했습니다.",
|
|
586
|
+
"wms.backend.inventory.release.flash.success": "예약이 해제되었습니다",
|
|
587
|
+
"wms.backend.inventory.release.form.notes": "메모",
|
|
588
|
+
"wms.backend.inventory.release.form.notesPlaceholder": "선택 사항 - 추가 컨텍스트",
|
|
589
|
+
"wms.backend.inventory.release.form.reason": "이유",
|
|
590
|
+
"wms.backend.inventory.release.form.reasonPlaceholder": "이유를 선택하세요",
|
|
591
|
+
"wms.backend.inventory.release.reasons.correction": "보정",
|
|
592
|
+
"wms.backend.inventory.release.reasons.manual_release": "수동 해제",
|
|
593
|
+
"wms.backend.inventory.release.reasons.order_cancelled": "주문이 취소됨",
|
|
594
|
+
"wms.backend.inventory.release.reasons.other": "다른",
|
|
595
|
+
"wms.backend.inventory.release.summary.quantity": "수량",
|
|
596
|
+
"wms.backend.inventory.release.summary.source": "원천",
|
|
597
|
+
"wms.backend.inventory.release.summary.variant": "변종",
|
|
598
|
+
"wms.backend.inventory.release.summary.warehouse": "창고",
|
|
599
|
+
"wms.backend.inventory.release.warning": "이 작업은 취소할 수 없습니다. 예약된 수량은 즉시 해제됩니다.",
|
|
600
|
+
"wms.backend.inventory.reservationStatuses.active": "활동적인",
|
|
601
|
+
"wms.backend.inventory.reservationStatuses.fulfilled": "이행됨",
|
|
602
|
+
"wms.backend.inventory.reservationStatuses.released": "출시된",
|
|
603
|
+
"wms.backend.inventory.reservations.actions.allocate": "할당하다",
|
|
604
|
+
"wms.backend.inventory.reservations.actions.release": "풀어 주다",
|
|
605
|
+
"wms.backend.inventory.reservations.columns.quantity": "수량",
|
|
606
|
+
"wms.backend.inventory.reservations.columns.sourceId": "원천",
|
|
607
|
+
"wms.backend.inventory.reservations.columns.sourceType": "소스 유형",
|
|
608
|
+
"wms.backend.inventory.reservations.columns.status": "상태",
|
|
609
|
+
"wms.backend.inventory.reservations.columns.variant": "변종",
|
|
610
|
+
"wms.backend.inventory.reservations.columns.warehouse": "창고",
|
|
611
|
+
"wms.backend.inventory.reservations.description": "수동 API 호출 또는 판매 라이프사이클 자동화를 통해 생성된 활성 및 과거 예약 기록입니다.",
|
|
612
|
+
"wms.backend.inventory.reservations.empty.description": "예약에는 주문, 양도 또는 수동 보류에 약정된 재고가 표시됩니다.",
|
|
613
|
+
"wms.backend.inventory.reservations.empty.title": "예약 불가",
|
|
614
|
+
"wms.backend.inventory.reservations.filter.activeOnly": "활성 전용",
|
|
615
|
+
"wms.backend.inventory.reservations.filter.showAll": "모두 표시",
|
|
616
|
+
"wms.backend.inventory.reservations.search": "예약 검색",
|
|
617
|
+
"wms.backend.inventory.reservations.title": "재고 예약",
|
|
618
|
+
"wms.backend.inventory.reserve.cancel": "취소",
|
|
619
|
+
"wms.backend.inventory.reserve.description": "사용 가능한 재고에서 재고를 확정합니다. 시스템은 구성된 순환 전략을 사용하여 할당합니다.",
|
|
620
|
+
"wms.backend.inventory.reserve.errors.failed": "인벤토리 예약에 실패했습니다.",
|
|
621
|
+
"wms.backend.inventory.reserve.errors.insufficientStock": "이 예약을 이행할 수 있는 재고가 충분하지 않습니다.",
|
|
622
|
+
"wms.backend.inventory.reserve.errors.lotRequired": "이 변형에 대해 로트를 선택하십시오.",
|
|
623
|
+
"wms.backend.inventory.reserve.errors.quantityInvalid": "양수 수량을 입력하세요.",
|
|
624
|
+
"wms.backend.inventory.reserve.errors.serialRequired": "이 이형 상품의 일련번호를 입력하세요.",
|
|
625
|
+
"wms.backend.inventory.reserve.errors.variantRequired": "변형을 선택하세요.",
|
|
626
|
+
"wms.backend.inventory.reserve.errors.warehouseRequired": "창고를 선택하세요.",
|
|
627
|
+
"wms.backend.inventory.reserve.fields.lot": "로트(선택사항)",
|
|
628
|
+
"wms.backend.inventory.reserve.fields.lotPlaceholder": "모든 로트(시스템 선택)…",
|
|
629
|
+
"wms.backend.inventory.reserve.fields.lotRequiredPlaceholder": "부지를 선택하세요…",
|
|
630
|
+
"wms.backend.inventory.reserve.fields.quantity": "수량",
|
|
631
|
+
"wms.backend.inventory.reserve.fields.serial": "일련번호",
|
|
632
|
+
"wms.backend.inventory.reserve.fields.serialPlaceholder": "일련번호를 입력하세요…",
|
|
633
|
+
"wms.backend.inventory.reserve.fields.sourceType": "예약 유형",
|
|
634
|
+
"wms.backend.inventory.reserve.fields.variant": "변형/SKU",
|
|
635
|
+
"wms.backend.inventory.reserve.fields.variantPlaceholder": "SKU 또는 이름을 검색하세요…",
|
|
636
|
+
"wms.backend.inventory.reserve.fields.warehouse": "창고",
|
|
637
|
+
"wms.backend.inventory.reserve.fields.warehousePlaceholder": "창고를 선택하세요…",
|
|
638
|
+
"wms.backend.inventory.reserve.sourceType.manual": "수동 보류",
|
|
639
|
+
"wms.backend.inventory.reserve.sourceType.order": "주문하다",
|
|
640
|
+
"wms.backend.inventory.reserve.sourceType.transfer": "옮기다",
|
|
641
|
+
"wms.backend.inventory.reserve.submit": "예약하다",
|
|
642
|
+
"wms.backend.inventory.reserve.submitting": "예약 중…",
|
|
643
|
+
"wms.backend.inventory.reserve.success": "예약이 성공적으로 생성되었습니다.",
|
|
644
|
+
"wms.backend.inventory.reserve.title": "재고 예약",
|
|
645
|
+
"wms.backend.inventory.sourceTypes.manual": "수동",
|
|
646
|
+
"wms.backend.inventory.sourceTypes.order": "판매 주문",
|
|
647
|
+
"wms.backend.inventory.sourceTypes.transfer": "옮기다",
|
|
648
|
+
"wms.backend.location.actions.adjust": "재고 조정",
|
|
649
|
+
"wms.backend.location.actions.backToLocations": "위치로 돌아가기",
|
|
650
|
+
"wms.backend.location.activity.columns.details": "세부",
|
|
651
|
+
"wms.backend.location.activity.columns.event": "이벤트",
|
|
652
|
+
"wms.backend.location.activity.columns.location": "위치",
|
|
653
|
+
"wms.backend.location.activity.columns.time": "시간",
|
|
654
|
+
"wms.backend.location.activity.empty": "이 위치에는 최근 움직임이 없습니다.",
|
|
655
|
+
"wms.backend.location.activity.title": "최근 활동",
|
|
656
|
+
"wms.backend.location.activity.types.adjust": "조정하다",
|
|
657
|
+
"wms.backend.location.activity.types.cycle_count": "조정하다",
|
|
658
|
+
"wms.backend.location.activity.types.pack": "할당하다",
|
|
659
|
+
"wms.backend.location.activity.types.pick": "할당하다",
|
|
660
|
+
"wms.backend.location.activity.types.putaway": "반납",
|
|
661
|
+
"wms.backend.location.activity.types.receipt": "받다",
|
|
662
|
+
"wms.backend.location.activity.types.return_receive": "받다",
|
|
663
|
+
"wms.backend.location.activity.types.ship": "배",
|
|
664
|
+
"wms.backend.location.activity.types.transfer": "이동하다",
|
|
665
|
+
"wms.backend.location.activity.viewAll": "모든 움직임 보기 →",
|
|
666
|
+
"wms.backend.location.detail.breadcrumb": "위치",
|
|
667
|
+
"wms.backend.location.detail.pageTitle": "위치 보기",
|
|
668
|
+
"wms.backend.location.errors.balances": "위치에 항목을 로드하지 못했습니다.",
|
|
669
|
+
"wms.backend.location.errors.invalidId": "잘못된 위치 식별자입니다.",
|
|
670
|
+
"wms.backend.location.errors.load": "위치 보기를 로드하지 못했습니다.",
|
|
671
|
+
"wms.backend.location.errors.location": "위치를 로드하지 못했습니다.",
|
|
672
|
+
"wms.backend.location.errors.lots": "로트를 로드하지 못했습니다.",
|
|
673
|
+
"wms.backend.location.errors.movements": "최근 활동을 로드하지 못했습니다.",
|
|
674
|
+
"wms.backend.location.errors.notFound": "위치를 찾을 수 없습니다.",
|
|
675
|
+
"wms.backend.location.header.active": "활동적인",
|
|
676
|
+
"wms.backend.location.header.inactive": "비활성",
|
|
677
|
+
"wms.backend.location.header.lastCounted": "마지막으로 계산된 {when}",
|
|
678
|
+
"wms.backend.location.header.neverCounted": "계산되지 않음",
|
|
679
|
+
"wms.backend.location.header.zone": "구역 {code}",
|
|
680
|
+
"wms.backend.location.items.actions.adjustSelected": "선택됨 조정({count})",
|
|
681
|
+
"wms.backend.location.items.actions.cycleCountZone": "사이클 카운트 구역",
|
|
682
|
+
"wms.backend.location.items.actions.exportCsv": "CSV 내보내기",
|
|
683
|
+
"wms.backend.location.items.columns.lot": "많은",
|
|
684
|
+
"wms.backend.location.items.columns.onHand": "보유",
|
|
685
|
+
"wms.backend.location.items.columns.reserved": "예약된",
|
|
686
|
+
"wms.backend.location.items.columns.select": "선택하다",
|
|
687
|
+
"wms.backend.location.items.columns.sku": "SKU",
|
|
688
|
+
"wms.backend.location.items.columns.status": "상태",
|
|
689
|
+
"wms.backend.location.items.columns.variant": "변형 이름",
|
|
690
|
+
"wms.backend.location.items.empty.description": "다른 필터를 사용하거나 영수증이나 조정을 통해 재고를 게시하세요.",
|
|
691
|
+
"wms.backend.location.items.empty.title": "이 보기에는 항목이 없습니다.",
|
|
692
|
+
"wms.backend.location.items.filters.all": "모든 항목",
|
|
693
|
+
"wms.backend.location.items.filters.nearExpiry": "만료 임박",
|
|
694
|
+
"wms.backend.location.items.filters.picking": "선발",
|
|
695
|
+
"wms.backend.location.items.filters.sellable": "판매 가능",
|
|
696
|
+
"wms.backend.location.items.footer.showing": "{total} 항목 중 {shown} 표시 중",
|
|
697
|
+
"wms.backend.location.items.footer.viewAll": "모든 항목 보기 →",
|
|
698
|
+
"wms.backend.location.items.status.available": "사용 가능",
|
|
699
|
+
"wms.backend.location.items.status.expired": "만료됨",
|
|
700
|
+
"wms.backend.location.items.status.lowStock": "재고 부족",
|
|
701
|
+
"wms.backend.location.items.status.nearExpiry": "만료 임박",
|
|
702
|
+
"wms.backend.location.items.status.reserved": "예약된",
|
|
703
|
+
"wms.backend.location.items.title": "이 위치의 항목",
|
|
704
|
+
"wms.backend.location.kpis.activeLots.badge": "{count} 묶음",
|
|
705
|
+
"wms.backend.location.kpis.activeLots.caption": "보유 수량을 포함한 로트",
|
|
706
|
+
"wms.backend.location.kpis.activeLots.cta": "항목 보기",
|
|
707
|
+
"wms.backend.location.kpis.activeLots.title": "활성 부지",
|
|
708
|
+
"wms.backend.location.kpis.capacityUsed.badgeHigh": "한계에 가까워",
|
|
709
|
+
"wms.backend.location.kpis.capacityUsed.badgeOk": "수용 인원 내",
|
|
710
|
+
"wms.backend.location.kpis.capacityUsed.caption": "보유 대 위치 용량",
|
|
711
|
+
"wms.backend.location.kpis.capacityUsed.cta": "위치 수정",
|
|
712
|
+
"wms.backend.location.kpis.capacityUsed.title": "사용 용량",
|
|
713
|
+
"wms.backend.location.kpis.lastCounted.badgeNever": "절대",
|
|
714
|
+
"wms.backend.location.kpis.lastCounted.badgeRecent": "최근의",
|
|
715
|
+
"wms.backend.location.kpis.lastCounted.badgeStale": "곧 마감",
|
|
716
|
+
"wms.backend.location.kpis.lastCounted.caption": "가장 최근의 주기 수",
|
|
717
|
+
"wms.backend.location.kpis.lastCounted.cta": "사이클 카운트 시작",
|
|
718
|
+
"wms.backend.location.kpis.lastCounted.daysAgo": "{days}일 전",
|
|
719
|
+
"wms.backend.location.kpis.lastCounted.title": "마지막 계산",
|
|
720
|
+
"wms.backend.location.kpis.lastCounted.today": "오늘",
|
|
721
|
+
"wms.backend.location.kpis.pendingPicks.badge": "{count} 장치",
|
|
722
|
+
"wms.backend.location.kpis.pendingPicks.caption": "예약 및 할당 단위",
|
|
723
|
+
"wms.backend.location.kpis.pendingPicks.cta": "예약 보기",
|
|
724
|
+
"wms.backend.location.kpis.pendingPicks.title": "보류중인 추천",
|
|
725
|
+
"wms.backend.location.kpis.skusOccupied.badge": "{count} 활성",
|
|
726
|
+
"wms.backend.location.kpis.skusOccupied.caption": "재고가 있는 고유한 변형",
|
|
727
|
+
"wms.backend.location.kpis.skusOccupied.cta": "항목 보기",
|
|
728
|
+
"wms.backend.location.kpis.skusOccupied.title": "점유된 SKU",
|
|
729
|
+
"wms.backend.location.loading": "위치 보기 로드 중…",
|
|
730
|
+
"wms.backend.location.quickActions.adjust": "재고 조정",
|
|
731
|
+
"wms.backend.location.quickActions.cycleCount": "사이클 수",
|
|
732
|
+
"wms.backend.location.quickActions.description": "이 위치 보기를 벗어나지 않고 일반적인 재고 작업 실행",
|
|
733
|
+
"wms.backend.location.quickActions.move": "재고 이동",
|
|
734
|
+
"wms.backend.location.quickActions.openLedger": "원장 열기",
|
|
735
|
+
"wms.backend.location.quickActions.title": "빠른 작업",
|
|
736
|
+
"wms.backend.location.types.aisle": "통로",
|
|
737
|
+
"wms.backend.location.types.bin": "큰 상자",
|
|
738
|
+
"wms.backend.location.types.dock": "독",
|
|
739
|
+
"wms.backend.location.types.rack": "고문",
|
|
740
|
+
"wms.backend.location.types.slot": "슬롯",
|
|
741
|
+
"wms.backend.location.types.staging": "각색",
|
|
742
|
+
"wms.backend.location.types.zone": "존",
|
|
743
|
+
"wms.backend.locations.nav.title": "위치",
|
|
744
|
+
"wms.backend.lot.actions.adjust": "재고 조정",
|
|
745
|
+
"wms.backend.lot.actions.backToLots": "로트로 돌아가기",
|
|
746
|
+
"wms.backend.lot.activity.columns.details": "세부",
|
|
747
|
+
"wms.backend.lot.activity.columns.event": "이벤트",
|
|
748
|
+
"wms.backend.lot.activity.columns.location": "위치",
|
|
749
|
+
"wms.backend.lot.activity.columns.time": "시간",
|
|
750
|
+
"wms.backend.lot.activity.empty": "이 부지에는 최근 동향이 없습니다.",
|
|
751
|
+
"wms.backend.lot.activity.title": "최근 활동",
|
|
752
|
+
"wms.backend.lot.activity.titles.adjusted": "조정된 {quantity}× {lot}",
|
|
753
|
+
"wms.backend.lot.activity.titles.allocated": "할당된 {quantity}× {lot}",
|
|
754
|
+
"wms.backend.lot.activity.titles.generic": "{type} {quantity}× {lot}",
|
|
755
|
+
"wms.backend.lot.activity.titles.moved": "{quantity}× {lot} 이동됨",
|
|
756
|
+
"wms.backend.lot.activity.titles.received": "{quantity}× {lot}를 받았습니다.",
|
|
757
|
+
"wms.backend.lot.activity.titles.reconciled": "{lot}의 사이클 수",
|
|
758
|
+
"wms.backend.lot.activity.types.adjust": "조정하다",
|
|
759
|
+
"wms.backend.lot.activity.types.cycle_count": "조정하다",
|
|
760
|
+
"wms.backend.lot.activity.types.pack": "할당하다",
|
|
761
|
+
"wms.backend.lot.activity.types.pick": "할당하다",
|
|
762
|
+
"wms.backend.lot.activity.types.putaway": "반납",
|
|
763
|
+
"wms.backend.lot.activity.types.receipt": "받다",
|
|
764
|
+
"wms.backend.lot.activity.types.return_receive": "받다",
|
|
765
|
+
"wms.backend.lot.activity.types.ship": "배",
|
|
766
|
+
"wms.backend.lot.activity.types.transfer": "이동하다",
|
|
767
|
+
"wms.backend.lot.activity.viewAll": "모든 움직임 보기 →",
|
|
768
|
+
"wms.backend.lot.changeStatus.dialog.description": "이 로트의 품질/보류 상태를 업데이트하세요. 변경 사항은 즉시 기록됩니다.",
|
|
769
|
+
"wms.backend.lot.changeStatus.dialog.title": "로트 상태 변경",
|
|
770
|
+
"wms.backend.lot.changeStatus.errors.submit": "로트 상태를 업데이트하지 못했습니다.",
|
|
771
|
+
"wms.backend.lot.changeStatus.flash.success": "로트 상태가 업데이트되었습니다.",
|
|
772
|
+
"wms.backend.lot.changeStatus.form.cancel": "취소",
|
|
773
|
+
"wms.backend.lot.changeStatus.form.notes": "메모",
|
|
774
|
+
"wms.backend.lot.changeStatus.form.notesPlaceholder": "상태 변경에 대한 선택적 이유",
|
|
775
|
+
"wms.backend.lot.changeStatus.form.shortcut": "저장하다",
|
|
776
|
+
"wms.backend.lot.changeStatus.form.status": "새로운 상태",
|
|
777
|
+
"wms.backend.lot.changeStatus.form.submit": "업데이트 상태",
|
|
778
|
+
"wms.backend.lot.changeStatus.form.submitting": "절약…",
|
|
779
|
+
"wms.backend.lot.detail.breadcrumb": "많은",
|
|
780
|
+
"wms.backend.lot.detail.pageTitle": "로트 세부정보",
|
|
781
|
+
"wms.backend.lot.distribution.actions.adjustSelected": "선택됨 조정({count})",
|
|
782
|
+
"wms.backend.lot.distribution.actions.cycleCountZone": "사이클 카운트 구역",
|
|
783
|
+
"wms.backend.lot.distribution.actions.exportCsv": "CSV 내보내기",
|
|
784
|
+
"wms.backend.lot.distribution.columns.lastMove": "마지막 움직임",
|
|
785
|
+
"wms.backend.lot.distribution.columns.location": "위치",
|
|
786
|
+
"wms.backend.lot.distribution.columns.onHand": "보유",
|
|
787
|
+
"wms.backend.lot.distribution.columns.reserved": "예약된",
|
|
788
|
+
"wms.backend.lot.distribution.columns.select": "선택하다",
|
|
789
|
+
"wms.backend.lot.distribution.columns.status": "상태",
|
|
790
|
+
"wms.backend.lot.distribution.columns.warehouse": "창고",
|
|
791
|
+
"wms.backend.lot.distribution.empty.description": "다른 필터를 사용하거나 영수증이나 조정을 통해 재고를 게시하세요.",
|
|
792
|
+
"wms.backend.lot.distribution.empty.title": "이 보기에는 위치가 없습니다.",
|
|
793
|
+
"wms.backend.lot.distribution.filters.all": "모든 위치",
|
|
794
|
+
"wms.backend.lot.distribution.filters.nearExpiry": "만료 임박",
|
|
795
|
+
"wms.backend.lot.distribution.filters.picking": "선발",
|
|
796
|
+
"wms.backend.lot.distribution.filters.sellable": "판매 가능",
|
|
797
|
+
"wms.backend.lot.distribution.footer.openLedger": "이 로트에 대한 원장 열기 →",
|
|
798
|
+
"wms.backend.lot.distribution.footer.showing": "{total} 위치 중 {shown} 표시 중",
|
|
799
|
+
"wms.backend.lot.distribution.lastMove.daysAgo": "{days}일 전",
|
|
800
|
+
"wms.backend.lot.distribution.lastMove.today": "오늘 {time}",
|
|
801
|
+
"wms.backend.lot.distribution.lastMove.yesterday": "어제",
|
|
802
|
+
"wms.backend.lot.distribution.status.available": "사용 가능",
|
|
803
|
+
"wms.backend.lot.distribution.status.expired": "만료됨",
|
|
804
|
+
"wms.backend.lot.distribution.status.lowStock": "재고 부족",
|
|
805
|
+
"wms.backend.lot.distribution.status.nearExpiry": "만료 임박",
|
|
806
|
+
"wms.backend.lot.distribution.status.reserved": "예약된",
|
|
807
|
+
"wms.backend.lot.distribution.title": "이 부지가 사는 곳",
|
|
808
|
+
"wms.backend.lot.errors.balances": "부지 위치를 로드하지 못했습니다.",
|
|
809
|
+
"wms.backend.lot.errors.invalidId": "잘못된 로트 식별자입니다.",
|
|
810
|
+
"wms.backend.lot.errors.load": "부지 보기를 로드하지 못했습니다.",
|
|
811
|
+
"wms.backend.lot.errors.lot": "로트를 로드하지 못했습니다.",
|
|
812
|
+
"wms.backend.lot.errors.movements": "최근 활동을 로드하지 못했습니다.",
|
|
813
|
+
"wms.backend.lot.errors.notFound": "로트를 찾을 수 없습니다.",
|
|
814
|
+
"wms.backend.lot.errors.profile": "인벤토리 프로필을 로드하지 못했습니다.",
|
|
815
|
+
"wms.backend.lot.errors.variant": "SKU를 로드하지 못했습니다.",
|
|
816
|
+
"wms.backend.lot.errors.warehouses": "창고를 로드하지 못했습니다.",
|
|
817
|
+
"wms.backend.lot.filters.allWarehouses": "모든 창고",
|
|
818
|
+
"wms.backend.lot.header.daysRemaining": "{days}일 남음",
|
|
819
|
+
"wms.backend.lot.header.expires": "경험치 {date}",
|
|
820
|
+
"wms.backend.lot.header.received": "{date}를 받았습니다.",
|
|
821
|
+
"wms.backend.lot.kpis.daysToExpiry.badgeOk": "창 내",
|
|
822
|
+
"wms.backend.lot.kpis.daysToExpiry.badgeSoon": "곧 만료됨",
|
|
823
|
+
"wms.backend.lot.kpis.daysToExpiry.caption": "유효기간까지",
|
|
824
|
+
"wms.backend.lot.kpis.daysToExpiry.cta": "SKU 프로필 보기",
|
|
825
|
+
"wms.backend.lot.kpis.daysToExpiry.title": "만료까지 남은 일수",
|
|
826
|
+
"wms.backend.lot.kpis.lotAge.badgeAged": "오래된 주식",
|
|
827
|
+
"wms.backend.lot.kpis.lotAge.badgeFresh": "신선한 로트",
|
|
828
|
+
"wms.backend.lot.kpis.lotAge.caption": "로트가 생성되었기 때문에",
|
|
829
|
+
"wms.backend.lot.kpis.lotAge.cta": "움직임 보기",
|
|
830
|
+
"wms.backend.lot.kpis.lotAge.title": "로트 연령",
|
|
831
|
+
"wms.backend.lot.kpis.lotAge.value": "{days}d",
|
|
832
|
+
"wms.backend.lot.kpis.onHand.badge": "{count} 장치",
|
|
833
|
+
"wms.backend.lot.kpis.onHand.caption": "이 로트의 물리적 수량",
|
|
834
|
+
"wms.backend.lot.kpis.onHand.cta": "위치 보기",
|
|
835
|
+
"wms.backend.lot.kpis.onHand.title": "보유 총액",
|
|
836
|
+
"wms.backend.lot.kpis.qualityStatus.caption": "로트 보류 및 QC 상태",
|
|
837
|
+
"wms.backend.lot.kpis.qualityStatus.cta": "상태 변경",
|
|
838
|
+
"wms.backend.lot.kpis.qualityStatus.notesCaption": "참고: {notes}",
|
|
839
|
+
"wms.backend.lot.kpis.qualityStatus.title": "품질상태",
|
|
840
|
+
"wms.backend.lot.kpis.reserved.badge": "{count} 유닛 보유",
|
|
841
|
+
"wms.backend.lot.kpis.reserved.caption": "이 로트에서 커밋됨",
|
|
842
|
+
"wms.backend.lot.kpis.reserved.cta": "예약 보기",
|
|
843
|
+
"wms.backend.lot.kpis.reserved.title": "예약된",
|
|
844
|
+
"wms.backend.lot.loading": "부지 보기 로드 중…",
|
|
845
|
+
"wms.backend.lot.quickActions.adjust": "재고 조정",
|
|
846
|
+
"wms.backend.lot.quickActions.cycleCount": "사이클 수",
|
|
847
|
+
"wms.backend.lot.quickActions.description": "이 로트 보기를 떠나지 않고 일반적인 재고 작업 실행",
|
|
848
|
+
"wms.backend.lot.quickActions.move": "재고 이동",
|
|
849
|
+
"wms.backend.lot.quickActions.openLedger": "원장 열기",
|
|
850
|
+
"wms.backend.lot.quickActions.title": "빠른 작업",
|
|
851
|
+
"wms.backend.lot.status.available": "사용 가능",
|
|
852
|
+
"wms.backend.lot.status.expired": "만료됨",
|
|
853
|
+
"wms.backend.lot.status.hold": "보류 중",
|
|
854
|
+
"wms.backend.lot.status.nearExpiry": "만료 임박",
|
|
855
|
+
"wms.backend.lot.status.quarantine": "건강격리",
|
|
856
|
+
"wms.backend.lots.actions.changeStatus": "상태 변경",
|
|
857
|
+
"wms.backend.lots.actions.move": "이동하다",
|
|
858
|
+
"wms.backend.lots.columns.expiresAt": "만료",
|
|
859
|
+
"wms.backend.lots.columns.lotNumber": "로트 번호",
|
|
860
|
+
"wms.backend.lots.columns.sku": "SKU",
|
|
861
|
+
"wms.backend.lots.columns.status": "상태",
|
|
862
|
+
"wms.backend.lots.description.all": "만료 상황에 따라 로트 및 배치 기록을 찾아보세요.",
|
|
863
|
+
"wms.backend.lots.description.expiringSoon": "선택한 창고 범위에서 로트가 향후 30일 이내에 만료됩니다.",
|
|
864
|
+
"wms.backend.lots.description.pastDue": "선택한 창고 범위에 보유 재고가 있는 만료 날짜가 지난 로트입니다.",
|
|
865
|
+
"wms.backend.lots.empty.description": "필터를 조정하거나 재고 작업을 통해 로트를 생성합니다.",
|
|
866
|
+
"wms.backend.lots.empty.importCsv": "CSV 가져오기",
|
|
867
|
+
"wms.backend.lots.empty.receive": "재고 수령",
|
|
868
|
+
"wms.backend.lots.empty.title": "로트를 찾을 수 없습니다.",
|
|
869
|
+
"wms.backend.lots.errors.load": "로트를 로드하지 못했습니다.",
|
|
870
|
+
"wms.backend.lots.loading": "로트 로드 중…",
|
|
871
|
+
"wms.backend.lots.nav.title": "많이",
|
|
872
|
+
"wms.backend.lots.search": "로트 검색",
|
|
873
|
+
"wms.backend.lots.title.all": "재고 로트",
|
|
874
|
+
"wms.backend.lots.title.expiringSoon": "곧 만료되는 상품이 많음",
|
|
875
|
+
"wms.backend.lots.title.pastDue": "연체된 로트",
|
|
876
|
+
"wms.backend.movements.nav.title": "동정",
|
|
877
|
+
"wms.backend.nav.title": "WMS",
|
|
878
|
+
"wms.backend.reservations.nav.title": "전세",
|
|
879
|
+
"wms.backend.sku.actions.adjust": "재고 조정",
|
|
880
|
+
"wms.backend.sku.actions.backToInventory": "인벤토리로 돌아가기",
|
|
881
|
+
"wms.backend.sku.activity.columns.details": "세부",
|
|
882
|
+
"wms.backend.sku.activity.columns.event": "이벤트",
|
|
883
|
+
"wms.backend.sku.activity.columns.location": "위치",
|
|
884
|
+
"wms.backend.sku.activity.columns.time": "시간",
|
|
885
|
+
"wms.backend.sku.activity.empty": "이 SKU에 대한 최근 움직임이 없습니다.",
|
|
886
|
+
"wms.backend.sku.activity.title": "최근 활동",
|
|
887
|
+
"wms.backend.sku.activity.types.adjust": "조정하다",
|
|
888
|
+
"wms.backend.sku.activity.types.cycle_count": "조정하다",
|
|
889
|
+
"wms.backend.sku.activity.types.pack": "할당하다",
|
|
890
|
+
"wms.backend.sku.activity.types.pick": "할당하다",
|
|
891
|
+
"wms.backend.sku.activity.types.putaway": "반납",
|
|
892
|
+
"wms.backend.sku.activity.types.receipt": "받다",
|
|
893
|
+
"wms.backend.sku.activity.types.return_receive": "받다",
|
|
894
|
+
"wms.backend.sku.activity.types.ship": "배",
|
|
895
|
+
"wms.backend.sku.activity.types.transfer": "이동하다",
|
|
896
|
+
"wms.backend.sku.activity.viewAll": "모든 움직임 보기 →",
|
|
897
|
+
"wms.backend.sku.detail.breadcrumb": "SKU",
|
|
898
|
+
"wms.backend.sku.detail.pageTitle": "SKU 세부정보",
|
|
899
|
+
"wms.backend.sku.distribution.actions.adjustSelected": "선택됨 조정({count})",
|
|
900
|
+
"wms.backend.sku.distribution.actions.cycleCountZone": "사이클 카운트 구역",
|
|
901
|
+
"wms.backend.sku.distribution.actions.exportCsv": "CSV 내보내기",
|
|
902
|
+
"wms.backend.sku.distribution.columns.location": "위치",
|
|
903
|
+
"wms.backend.sku.distribution.columns.lot": "많은",
|
|
904
|
+
"wms.backend.sku.distribution.columns.onHand": "보유",
|
|
905
|
+
"wms.backend.sku.distribution.columns.reserved": "예약된",
|
|
906
|
+
"wms.backend.sku.distribution.columns.select": "선택하다",
|
|
907
|
+
"wms.backend.sku.distribution.columns.status": "상태",
|
|
908
|
+
"wms.backend.sku.distribution.columns.warehouse": "창고",
|
|
909
|
+
"wms.backend.sku.distribution.empty.description": "다른 필터를 사용하거나 영수증이나 조정을 통해 재고를 게시하세요.",
|
|
910
|
+
"wms.backend.sku.distribution.empty.title": "이 보기에는 위치가 없습니다.",
|
|
911
|
+
"wms.backend.sku.distribution.filters.all": "모든 쓰레기통",
|
|
912
|
+
"wms.backend.sku.distribution.filters.nearExpiry": "만료 임박",
|
|
913
|
+
"wms.backend.sku.distribution.filters.picking": "선발",
|
|
914
|
+
"wms.backend.sku.distribution.filters.sellable": "판매 가능",
|
|
915
|
+
"wms.backend.sku.distribution.footer.showing": "{total} 위치 중 {shown} 표시 중",
|
|
916
|
+
"wms.backend.sku.distribution.footer.viewAll": "모든 위치 보기 →",
|
|
917
|
+
"wms.backend.sku.distribution.status.available": "사용 가능",
|
|
918
|
+
"wms.backend.sku.distribution.status.expired": "만료됨",
|
|
919
|
+
"wms.backend.sku.distribution.status.lowStock": "재고 부족",
|
|
920
|
+
"wms.backend.sku.distribution.status.nearExpiry": "만료 임박",
|
|
921
|
+
"wms.backend.sku.distribution.status.reserved": "예약된",
|
|
922
|
+
"wms.backend.sku.distribution.title": "주식분배",
|
|
923
|
+
"wms.backend.sku.errors.balances": "재고 배포를 로드하지 못했습니다.",
|
|
924
|
+
"wms.backend.sku.errors.invalidId": "SKU 식별자가 잘못되었습니다.",
|
|
925
|
+
"wms.backend.sku.errors.load": "SKU 보기를 로드하지 못했습니다.",
|
|
926
|
+
"wms.backend.sku.errors.lots": "로트를 로드하지 못했습니다.",
|
|
927
|
+
"wms.backend.sku.errors.movements": "최근 활동을 로드하지 못했습니다.",
|
|
928
|
+
"wms.backend.sku.errors.notFound": "SKU를 찾을 수 없습니다.",
|
|
929
|
+
"wms.backend.sku.errors.profile": "인벤토리 프로필을 로드하지 못했습니다.",
|
|
930
|
+
"wms.backend.sku.errors.variant": "SKU를 로드하지 못했습니다.",
|
|
931
|
+
"wms.backend.sku.errors.warehouses": "창고를 로드하지 못했습니다.",
|
|
932
|
+
"wms.backend.sku.filters.allWarehouses": "모든 창고",
|
|
933
|
+
"wms.backend.sku.header.active": "활동적인",
|
|
934
|
+
"wms.backend.sku.header.inactive": "비활성",
|
|
935
|
+
"wms.backend.sku.header.since": "{date} 이후 SKU",
|
|
936
|
+
"wms.backend.sku.kpis.available.badge": "판매 가능",
|
|
937
|
+
"wms.backend.sku.kpis.available.badgeEmpty": "없음",
|
|
938
|
+
"wms.backend.sku.kpis.available.caption": "할당 준비 완료",
|
|
939
|
+
"wms.backend.sku.kpis.available.cta": "재고 조정",
|
|
940
|
+
"wms.backend.sku.kpis.available.title": "사용 가능",
|
|
941
|
+
"wms.backend.sku.kpis.daysOfSupply.badgeShort": "짧은 활주로",
|
|
942
|
+
"wms.backend.sku.kpis.daysOfSupply.caption": "지난 {days} 아웃바운드 일수 기준",
|
|
943
|
+
"wms.backend.sku.kpis.daysOfSupply.cta": "움직임 보기",
|
|
944
|
+
"wms.backend.sku.kpis.daysOfSupply.title": "공급일수",
|
|
945
|
+
"wms.backend.sku.kpis.onHand.badgeLow": "아래 재주문",
|
|
946
|
+
"wms.backend.sku.kpis.onHand.caption": "총 물리량",
|
|
947
|
+
"wms.backend.sku.kpis.onHand.cta": "분포 보기",
|
|
948
|
+
"wms.backend.sku.kpis.onHand.title": "보유",
|
|
949
|
+
"wms.backend.sku.kpis.reorderPoint.badgeSafety": "안전 {count}",
|
|
950
|
+
"wms.backend.sku.kpis.reorderPoint.caption": "인벤토리 프로필에서",
|
|
951
|
+
"wms.backend.sku.kpis.reorderPoint.cta": "프로필 수정",
|
|
952
|
+
"wms.backend.sku.kpis.reorderPoint.title": "재주문 지점",
|
|
953
|
+
"wms.backend.sku.kpis.reserved.badge": "{count} 유닛 보유",
|
|
954
|
+
"wms.backend.sku.kpis.reserved.caption": "주문에 전념",
|
|
955
|
+
"wms.backend.sku.kpis.reserved.cta": "예약 보기",
|
|
956
|
+
"wms.backend.sku.kpis.reserved.title": "예약된",
|
|
957
|
+
"wms.backend.sku.loading": "SKU 보기 로드 중…",
|
|
958
|
+
"wms.backend.sku.quickActions.adjust": "재고 조정",
|
|
959
|
+
"wms.backend.sku.quickActions.cycleCount": "사이클 수",
|
|
960
|
+
"wms.backend.sku.quickActions.description": "이 SKU 보기를 벗어나지 않고 일반 재고 작업 실행",
|
|
961
|
+
"wms.backend.sku.quickActions.move": "재고 이동",
|
|
962
|
+
"wms.backend.sku.quickActions.openLedger": "원장 열기",
|
|
963
|
+
"wms.backend.sku.quickActions.receive": "재고 수령",
|
|
964
|
+
"wms.backend.sku.quickActions.title": "빠른 작업",
|
|
965
|
+
"wms.backend.warehouses.nav.title": "창고",
|
|
966
|
+
"wms.backend.zones.nav.title": "구역",
|
|
967
|
+
"wms.common.active": "활동적인",
|
|
968
|
+
"wms.common.inactive": "비활성",
|
|
969
|
+
"wms.errors.forbidden": "금지됨",
|
|
970
|
+
"wms.errors.forbidden.adjustInventory": "재고를 조정하거나 이동할 권한이 없습니다.",
|
|
971
|
+
"wms.errors.forbidden.cycleCount": "주기 계산을 실행할 권한이 없습니다.",
|
|
972
|
+
"wms.errors.forbidden.import": "인벤토리를 가져올 권한이 없습니다.",
|
|
973
|
+
"wms.errors.forbidden.manageInventory": "인벤토리 프로필을 관리할 권한이 없습니다.",
|
|
974
|
+
"wms.errors.forbidden.manageLocations": "창고 위치를 관리할 권한이 없습니다.",
|
|
975
|
+
"wms.errors.forbidden.manageReservations": "인벤토리 예약을 관리할 권한이 없습니다.",
|
|
976
|
+
"wms.errors.forbidden.manageWarehouses": "창고를 관리할 권한이 없습니다.",
|
|
977
|
+
"wms.errors.forbidden.manageZones": "창고 구역을 관리할 권한이 없습니다.",
|
|
978
|
+
"wms.errors.forbidden.receiveInventory": "인바운드 재고를 받을 권한이 없습니다.",
|
|
979
|
+
"wms.errors.internalServerError": "내부 서버 오류",
|
|
980
|
+
"wms.errors.unauthorized": "승인되지 않은",
|
|
981
|
+
"wms.nav.group": "WMS",
|
|
982
|
+
"wms.notifications.lowStock.body": "재고 부족 경고 — 사용 가능: {availableQuantity}, 재주문 지점: {reorderPoint}, 안전 재고: {safetyStock}",
|
|
983
|
+
"wms.notifications.lowStock.renderer.available": "사용 가능",
|
|
984
|
+
"wms.notifications.lowStock.renderer.belowReorderPoint": "재주문 지점 아래",
|
|
985
|
+
"wms.notifications.lowStock.renderer.belowSafetyStock": "안전재고 이하",
|
|
986
|
+
"wms.notifications.lowStock.renderer.reorderPoint": "재정렬",
|
|
987
|
+
"wms.notifications.lowStock.renderer.viewInventory": "재고 보기",
|
|
988
|
+
"wms.notifications.lowStock.renderer.viewSku": "SKU 보기",
|
|
989
|
+
"wms.notifications.lowStock.title": "재고 부족 경고",
|
|
990
|
+
"wms.notifications.reservationShortfall.body": "{orderNumber} 주문은 완전히 예약될 수 없습니다. {shortfallSku}는 {shortfallQuantity}({shortfallCount} 라인)의 약자입니다.",
|
|
991
|
+
"wms.notifications.reservationShortfall.renderer.lines": "부족한 라인",
|
|
992
|
+
"wms.notifications.reservationShortfall.renderer.order": "주문하다",
|
|
993
|
+
"wms.notifications.reservationShortfall.renderer.shortQty": "짧은 {quantity}",
|
|
994
|
+
"wms.notifications.reservationShortfall.renderer.sku": "SKU",
|
|
995
|
+
"wms.notifications.reservationShortfall.renderer.viewInventory": "재고 보기",
|
|
996
|
+
"wms.notifications.reservationShortfall.renderer.viewOrder": "주문 보기",
|
|
997
|
+
"wms.notifications.reservationShortfall.renderer.viewReservations": "예약 보기",
|
|
998
|
+
"wms.notifications.reservationShortfall.title": "예약 부족",
|
|
999
|
+
"wms.search.badge.inventoryProfile": "재고 프로필",
|
|
1000
|
+
"wms.search.badge.location": "위치",
|
|
1001
|
+
"wms.search.badge.lot": "재고 로트",
|
|
1002
|
+
"wms.search.badge.warehouse": "창고",
|
|
1003
|
+
"wms.search.profile.productScoped": "제품 범위",
|
|
1004
|
+
"wms.search.profile.variantScoped": "변형 범위",
|
|
1005
|
+
"wms.validation.warehouse.inactivePrimary": "비활성 창고는 기본 창고로 표시할 수 없습니다.",
|
|
1006
|
+
"wms.validation.warehouse.primaryConflict": "다른 창고가 이 조직의 기본 창고로 설정되었습니다. 다시 시도해 주세요.",
|
|
1007
|
+
"wms.widgets.catalog.inventoryProfile.defaultStrategy": "순환 전략",
|
|
1008
|
+
"wms.widgets.catalog.inventoryProfile.defaultUom": "기본 UOM",
|
|
1009
|
+
"wms.widgets.catalog.inventoryProfile.errors.defaultUomRequired": "WMS 재고 프로필에 대한 기본 UOM을 제공합니다.",
|
|
1010
|
+
"wms.widgets.catalog.inventoryProfile.errors.fefoRequired": "만료 추적이 활성화된 경우 FEFO가 필요합니다.",
|
|
1011
|
+
"wms.widgets.catalog.inventoryProfile.errors.nonNegative": "음수가 아닌 수량을 사용하십시오.",
|
|
1012
|
+
"wms.widgets.catalog.inventoryProfile.errors.strategyRequired": "WMS 순환 전략을 선택합니다.",
|
|
1013
|
+
"wms.widgets.catalog.inventoryProfile.groupDescription": "이 카탈로그 기록에 대한 WMS 소유 추적 규칙 및 보충 임계값을 구성합니다.",
|
|
1014
|
+
"wms.widgets.catalog.inventoryProfile.groupLabel": "재고 프로필",
|
|
1015
|
+
"wms.widgets.catalog.inventoryProfile.manageInventory": "WMS로 재고 관리",
|
|
1016
|
+
"wms.widgets.catalog.inventoryProfile.reorderPoint": "재주문 지점",
|
|
1017
|
+
"wms.widgets.catalog.inventoryProfile.safetyStock": "안전 재고",
|
|
1018
|
+
"wms.widgets.catalog.inventoryProfile.strategy.fefo": "페포",
|
|
1019
|
+
"wms.widgets.catalog.inventoryProfile.strategy.fifo": "FIFO",
|
|
1020
|
+
"wms.widgets.catalog.inventoryProfile.strategy.lifo": "LIFO",
|
|
1021
|
+
"wms.widgets.catalog.inventoryProfile.trackExpiration": "만료 추적",
|
|
1022
|
+
"wms.widgets.catalog.inventoryProfile.trackLot": "트랙 로트",
|
|
1023
|
+
"wms.widgets.catalog.inventoryProfile.trackSerial": "연재물 추적",
|
|
1024
|
+
"wms.widgets.sales.orderItems.stockColumn.available": "이익.",
|
|
1025
|
+
"wms.widgets.sales.orderItems.stockColumn.header": "창고 재고",
|
|
1026
|
+
"wms.widgets.sales.orderItems.stockColumn.loading": "…",
|
|
1027
|
+
"wms.widgets.sales.orderItems.stockColumn.noData": "—",
|
|
1028
|
+
"wms.widgets.sales.orderItems.stockColumn.reserved": "예약된",
|
|
1029
|
+
"wms.widgets.sales.stockContext.actions.inventory": "인벤토리 콘솔 열기",
|
|
1030
|
+
"wms.widgets.sales.stockContext.actions.rerunReservation": "재실행 예약",
|
|
1031
|
+
"wms.widgets.sales.stockContext.actions.reservations": "예약 열기",
|
|
1032
|
+
"wms.widgets.sales.stockContext.assignError": "창고 할당을 업데이트할 수 없습니다.",
|
|
1033
|
+
"wms.widgets.sales.stockContext.assignSuccess": "창고 할당이 저장되었습니다.",
|
|
1034
|
+
"wms.widgets.sales.stockContext.assignedWarehouse": "지정창고",
|
|
1035
|
+
"wms.widgets.sales.stockContext.available": "사용 가능",
|
|
1036
|
+
"wms.widgets.sales.stockContext.description": "이 판매 주문에 대한 실시간 예약 및 가용성 요약입니다.",
|
|
1037
|
+
"wms.widgets.sales.stockContext.empty": "이 주문에는 아직 WMS 재고 요약이 없습니다.",
|
|
1038
|
+
"wms.widgets.sales.stockContext.explicitAssignmentHint": "명시적 할당은 예약에서 파생된 창고 컨텍스트를 재정의합니다.",
|
|
1039
|
+
"wms.widgets.sales.stockContext.linesTitle": "변형 가용성",
|
|
1040
|
+
"wms.widgets.sales.stockContext.releaseBtn": "풀어 주다",
|
|
1041
|
+
"wms.widgets.sales.stockContext.rerunError": "예약을 다시 실행할 수 없습니다.",
|
|
1042
|
+
"wms.widgets.sales.stockContext.rerunSuccess": "예약 재실행이 시작되었습니다. 주식 상황이 곧 새로 고쳐집니다.",
|
|
1043
|
+
"wms.widgets.sales.stockContext.reservationCount": "예약 기록",
|
|
1044
|
+
"wms.widgets.sales.stockContext.reservationsTitle": "활성 예약",
|
|
1045
|
+
"wms.widgets.sales.stockContext.reserved": "예약된",
|
|
1046
|
+
"wms.widgets.sales.stockContext.status.fully_reserved": "완전 예약됨",
|
|
1047
|
+
"wms.widgets.sales.stockContext.status.partially_reserved": "부분적으로 예약됨",
|
|
1048
|
+
"wms.widgets.sales.stockContext.status.unreserved": "제한 없는",
|
|
1049
|
+
"wms.widgets.sales.stockContext.title": "WMS 주식 상황",
|
|
1050
|
+
"wms.widgets.sales.stockContext.unassignSuccess": "창고 할당이 삭제되었습니다.",
|
|
1051
|
+
"wms.widgets.sales.stockContext.unassigned": "할당되지 않음",
|
|
1052
|
+
"wms.widgets.sales.stockContext.warehousePlaceholder": "창고를 선택하세요"
|
|
1053
|
+
}
|