@revenexx/cover 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +39 -0
- package/app/api/account.ts +8 -0
- package/app/api/categories.ts +3 -0
- package/app/api/checkout.ts +6 -0
- package/app/api/images.ts +4 -0
- package/app/api/markets.ts +3 -0
- package/app/api/product.ts +3 -0
- package/app/api/products.ts +4 -0
- package/app/api/search.ts +4 -0
- package/app/app.config.ts +29 -0
- package/app/assets/css/cover.css +25 -0
- package/app/components/account/AccountMenu.vue +30 -0
- package/app/components/account/AccountShell.vue +18 -0
- package/app/components/account/AccountSidebar.vue +90 -0
- package/app/components/account/address/AccountAddressCard.vue +287 -0
- package/app/components/account/carts/AccountCartsTable.vue +284 -0
- package/app/components/account/dashboard/AccountDashboard.vue +351 -0
- package/app/components/account/directorder/AccountDirectOrder.vue +512 -0
- package/app/components/account/governance/AccountApprovalLimitsTable.vue +221 -0
- package/app/components/account/governance/AccountCostCenterDetail.vue +276 -0
- package/app/components/account/governance/AccountCostCentersTable.vue +252 -0
- package/app/components/account/governance/AccountRequisitionDetail.vue +295 -0
- package/app/components/account/governance/AccountRequisitionsTable.vue +255 -0
- package/app/components/account/governance/AccountWorkflowDetail.vue +215 -0
- package/app/components/account/governance/AccountWorkflowsTable.vue +168 -0
- package/app/components/account/governance/GovernanceApprovalLimitModal.vue +183 -0
- package/app/components/account/governance/GovernanceCostCenterModal.vue +188 -0
- package/app/components/account/governance/GovernanceWorkflowModal.vue +191 -0
- package/app/components/account/orderlists/AccountOrderListDetail.vue +349 -0
- package/app/components/account/orderlists/AccountOrderListsTable.vue +352 -0
- package/app/components/account/orders/AccountOrderDetail.vue +376 -0
- package/app/components/account/orders/AccountOrdersTable.vue +281 -0
- package/app/components/account/preferences/AccountPreferences.vue +50 -0
- package/app/components/auth/AuthForgotPasswordPanel.vue +88 -0
- package/app/components/auth/AuthLoginPanel.vue +103 -0
- package/app/components/auth/AuthLoginTeaser.vue +24 -0
- package/app/components/auth/AuthPageHeader.vue +21 -0
- package/app/components/auth/AuthRegisterPanel.vue +431 -0
- package/app/components/auth/AuthRegisterTeaser.vue +24 -0
- package/app/components/auth/AuthResetPasswordPanel.vue +115 -0
- package/app/components/cart/CartButton.vue +42 -0
- package/app/components/cart/actions/CartCostCenterModal.vue +110 -0
- package/app/components/cart/actions/CartExportModal.vue +82 -0
- package/app/components/cart/actions/CartPositionTextsModal.vue +92 -0
- package/app/components/cart/actions/CartSaveToListModal.vue +177 -0
- package/app/components/cart/actions/CartWorkflowPickerModal.vue +64 -0
- package/app/components/cart/drawer/CartDrawer.vue +49 -0
- package/app/components/cart/item/CartItem.vue +318 -0
- package/app/components/cart/manage/CartNameModal.vue +68 -0
- package/app/components/cart/position/CartPosition.vue +369 -0
- package/app/components/cart/quickadd/CartQuickAdd.vue +145 -0
- package/app/components/cart/recommend/CartCrossSell.vue +102 -0
- package/app/components/cart/recommend/CartRecommendCard.vue +59 -0
- package/app/components/cart/recommend/CartReorderStrip.vue +108 -0
- package/app/components/cart/requisition/CartRequisitionGroup.vue +74 -0
- package/app/components/cart/skeleton/CartSkeleton.vue +18 -0
- package/app/components/cart/summary/CartSummary.vue +25 -0
- package/app/components/cart/summary/CartSummaryBreakdown.vue +35 -0
- package/app/components/cart/switcher/CartSwitcher.vue +147 -0
- package/app/components/cart/target/CartTargetModal.vue +129 -0
- package/app/components/cart/view/CartApprovalsPanel.vue +89 -0
- package/app/components/cart/view/CartListHeader.vue +86 -0
- package/app/components/cart/view/CartPositionList.vue +94 -0
- package/app/components/cart/view/CartSummaryPanel.vue +254 -0
- package/app/components/cart/view/CartView.vue +310 -0
- package/app/components/category/info/CategoryPrice.vue +47 -0
- package/app/components/category/info/CategorySku.vue +15 -0
- package/app/components/category/info/CategoryStock.vue +25 -0
- package/app/components/category/list/CategoryItemCount.vue +27 -0
- package/app/components/category/list/CategoryListPagination.vue +81 -0
- package/app/components/category/skeleton/CategoryDetailSkeleton.vue +12 -0
- package/app/components/category/skeleton/CategoryListSkeleton.vue +65 -0
- package/app/components/category/view/CategoryViewToggle.vue +33 -0
- package/app/components/category/view/GridView.vue +78 -0
- package/app/components/category/view/ListView.vue +80 -0
- package/app/components/checkout/confirmation/CheckoutConfirmationView.vue +289 -0
- package/app/components/checkout/form/CheckoutSchemaForm.vue +72 -0
- package/app/components/checkout/onepage/CheckoutAddressPickerModal.vue +260 -0
- package/app/components/checkout/onepage/CheckoutAddressSection.vue +186 -0
- package/app/components/checkout/onepage/CheckoutDeliverySection.vue +158 -0
- package/app/components/checkout/onepage/CheckoutGate.vue +67 -0
- package/app/components/checkout/onepage/CheckoutGuestDetailsSection.vue +154 -0
- package/app/components/checkout/onepage/CheckoutNotesSection.vue +62 -0
- package/app/components/checkout/onepage/CheckoutOnePageView.vue +77 -0
- package/app/components/checkout/onepage/CheckoutPaymentSection.vue +181 -0
- package/app/components/checkout/onepage/CheckoutSectionTitle.vue +18 -0
- package/app/components/checkout/onepage/CheckoutSummarySection.vue +211 -0
- package/app/components/checkout/onepage/CheckoutWorkflowPanel.vue +38 -0
- package/app/components/layout/AppLogo.vue +21 -0
- package/app/components/layout/footer/Footer.vue +148 -0
- package/app/components/layout/header/AppBar.vue +75 -0
- package/app/components/layout/header/CategoryNav.vue +93 -0
- package/app/components/layout/header/HeaderActionItem.vue +81 -0
- package/app/components/layout/header/LocaleSwitcher.vue +123 -0
- package/app/components/layout/header/MainNav.vue +61 -0
- package/app/components/layout/header/MobileMenu.vue +81 -0
- package/app/components/layout/header/TopBar.vue +63 -0
- package/app/components/listing/ListingView.vue +227 -0
- package/app/components/product/detail/ProductDetailAddToCart.vue +188 -0
- package/app/components/product/detail/ProductDetailDescription.vue +20 -0
- package/app/components/product/detail/ProductDetailImageGallery.vue +58 -0
- package/app/components/product/detail/ProductDetailPricing.vue +108 -0
- package/app/components/product/detail/ProductDetailSaveToList.vue +291 -0
- package/app/components/product/detail/ProductDetailSpecifications.vue +33 -0
- package/app/components/product/detail/ProductDetailStock.vue +36 -0
- package/app/components/search/filter/SearchFacets.vue +256 -0
- package/app/components/search/filter/SearchFacetsDrawer.vue +58 -0
- package/app/components/ui/AppShell.vue +7 -0
- package/app/components/ui/debug/PiniaStateCard.vue +106 -0
- package/app/components/ui/feedback/EmptyState.vue +30 -0
- package/app/components/ui/feedback/ErrorBoundary.vue +44 -0
- package/app/components/ui/feedback/NotFound.vue +34 -0
- package/app/components/ui/forms/CountrySelection.vue +14 -0
- package/app/components/ui/forms/FormKitDatePicker.vue +124 -0
- package/app/components/ui/forms/PasswordInput.vue +136 -0
- package/app/components/ui/forms/SearchInput.vue +213 -0
- package/app/components/ui/table/TableSortButton.vue +51 -0
- package/app/components/ui/table/TableToolbar.vue +66 -0
- package/app/composables/useAccount.ts +27 -0
- package/app/composables/useAccountAddresses.ts +116 -0
- package/app/composables/useAccountOrders.ts +18 -0
- package/app/composables/useAppUrl.ts +38 -0
- package/app/composables/useAuthStore.ts +202 -0
- package/app/composables/useB2BContext.ts +23 -0
- package/app/composables/useCartActions.ts +25 -0
- package/app/composables/useCartCalculation.ts +90 -0
- package/app/composables/useCartSelection.ts +46 -0
- package/app/composables/useCartStore.ts +837 -0
- package/app/composables/useCartSummaryFormatting.ts +28 -0
- package/app/composables/useCategories.ts +29 -0
- package/app/composables/useCheckoutOnePage.ts +438 -0
- package/app/composables/useCheckoutProfileSource.ts +8 -0
- package/app/composables/useCheckoutSchema.ts +28 -0
- package/app/composables/useDataTable.ts +14 -0
- package/app/composables/useFormValidation.ts +29 -0
- package/app/composables/useIcons.ts +17 -0
- package/app/composables/useLocalePreferences.ts +45 -0
- package/app/composables/useMarkets.ts +15 -0
- package/app/composables/useProduct.ts +89 -0
- package/app/composables/useProductCard.ts +8 -0
- package/app/composables/useProductCardActions.ts +106 -0
- package/app/composables/useProductImage.ts +12 -0
- package/app/composables/useProductListing.ts +210 -0
- package/app/composables/useProductUrl.ts +17 -0
- package/app/composables/useProducts.ts +130 -0
- package/app/composables/useSearch.ts +12 -0
- package/app/composables/useThemeStore.ts +81 -0
- package/app/composables/useViewMode.ts +18 -0
- package/app/config/countries.ts +74 -0
- package/app/config/icons.ts +283 -0
- package/app/config/navigation.ts +191 -0
- package/app/config/palette.ts +13 -0
- package/app/config/themes.ts +20 -0
- package/app/formkit.config.ts +50 -0
- package/app/interfaces/account/address-list.ts +34 -0
- package/app/interfaces/account/order-list.ts +47 -0
- package/app/interfaces/account/order-lists.ts +35 -0
- package/app/interfaces/account/profile.ts +17 -0
- package/app/interfaces/account.ts +3 -0
- package/app/interfaces/address.ts +9 -0
- package/app/interfaces/auth.ts +104 -0
- package/app/interfaces/b2b.ts +234 -0
- package/app/interfaces/cart-calculation.ts +131 -0
- package/app/interfaces/cart-item.ts +45 -0
- package/app/interfaces/checkout-draft.ts +4 -0
- package/app/interfaces/checkout.ts +43 -0
- package/app/interfaces/delivery.ts +13 -0
- package/app/interfaces/market.ts +24 -0
- package/app/interfaces/payment.ts +19 -0
- package/app/interfaces/persisted-cart.ts +10 -0
- package/app/interfaces/product-detail.ts +54 -0
- package/app/interfaces/product-list.ts +33 -0
- package/app/interfaces/search-facets.ts +14 -0
- package/app/interfaces/validation.ts +14 -0
- package/app/layouts/default.vue +78 -0
- package/app/layouts/focus.vue +80 -0
- package/app/plugins/formkit-locale.client.ts +23 -0
- package/app/shared/constants.ts +1 -0
- package/app/validations/companyName.ts +18 -0
- package/app/validations/emailFormat.ts +10 -0
- package/app/validations/formValidationConfig.ts +50 -0
- package/app/validations/maxLength.ts +12 -0
- package/app/validations/minLength.ts +9 -0
- package/app/validations/optionalCompanyName.ts +23 -0
- package/app/validations/passwordsMatch.ts +5 -0
- package/app/validations/phoneNumber.ts +19 -0
- package/app/validations/required.ts +11 -0
- package/app/validations/termsRequired.ts +4 -0
- package/app/validations/types.ts +10 -0
- package/app/validations/zipCode.ts +15 -0
- package/i18n/locales/de/account.json +458 -0
- package/i18n/locales/de/auth.json +155 -0
- package/i18n/locales/de/cart.json +263 -0
- package/i18n/locales/de/checkout.json +217 -0
- package/i18n/locales/de/common.json +80 -0
- package/i18n/locales/de/cover.json +33 -0
- package/i18n/locales/de/order.json +1 -0
- package/i18n/locales/de/product.json +71 -0
- package/i18n/locales/de/search.json +54 -0
- package/i18n/locales/de/validation.json +12 -0
- package/i18n/locales/en/account.json +458 -0
- package/i18n/locales/en/auth.json +155 -0
- package/i18n/locales/en/cart.json +263 -0
- package/i18n/locales/en/checkout.json +217 -0
- package/i18n/locales/en/common.json +80 -0
- package/i18n/locales/en/cover.json +33 -0
- package/i18n/locales/en/order.json +1 -0
- package/i18n/locales/en/product.json +71 -0
- package/i18n/locales/en/search.json +54 -0
- package/i18n/locales/en/validation.json +12 -0
- package/nuxt.config.ts +109 -0
- package/package.json +65 -0
- package/public/img/product-placeholder.svg +8 -0
- package/public/templates/direct-order-template.csv +3 -0
- package/public/templates/direct-order-template.xlsx +0 -0
- package/server/api/account/address/[id].delete.ts +51 -0
- package/server/api/account/address/[id].put.ts +83 -0
- package/server/api/account/address/index.post.ts +60 -0
- package/server/api/account/addresses.get.ts +25 -0
- package/server/api/account/context.get.ts +16 -0
- package/server/api/account/governance/[domain]/[id].put.ts +57 -0
- package/server/api/account/governance/[domain].post.ts +111 -0
- package/server/api/account/order-lists/[id].delete.ts +22 -0
- package/server/api/account/order-lists/[id].get.ts +17 -0
- package/server/api/account/order-lists/[id].put.ts +46 -0
- package/server/api/account/order-lists/index.get.ts +14 -0
- package/server/api/account/order-lists/index.post.ts +38 -0
- package/server/api/account/orders/[id].get.ts +35 -0
- package/server/api/account/orders.get.ts +35 -0
- package/server/api/account/profile.get.ts +56 -0
- package/server/api/account/profile.put.ts +128 -0
- package/server/api/account/requisitions/[id].get.ts +15 -0
- package/server/api/account/requisitions.get.ts +23 -0
- package/server/api/auth/login.post.ts +37 -0
- package/server/api/auth/logout.post.ts +4 -0
- package/server/api/auth/me.get.ts +3 -0
- package/server/api/auth/personas.get.ts +7 -0
- package/server/api/auth/recovery.post.ts +32 -0
- package/server/api/auth/recovery.put.ts +37 -0
- package/server/api/auth/register.post.ts +126 -0
- package/server/api/cart/calculate.post.ts +25 -0
- package/server/api/cart/export.post.ts +81 -0
- package/server/api/cart/index.delete.ts +10 -0
- package/server/api/cart/index.get.ts +10 -0
- package/server/api/cart/sync.post.ts +14 -0
- package/server/api/carts/[id]/activate.post.ts +18 -0
- package/server/api/carts/[id]/index.delete.ts +18 -0
- package/server/api/carts/[id]/index.put.ts +19 -0
- package/server/api/carts/[id]/items.post.ts +21 -0
- package/server/api/carts/index.get.ts +14 -0
- package/server/api/carts/index.post.ts +14 -0
- package/server/api/categories/[slug].get.ts +22 -0
- package/server/api/categories/index.get.ts +11 -0
- package/server/api/checkout/profile.get.ts +21 -0
- package/server/api/checkout/schema/[key].get.ts +19 -0
- package/server/api/checkout/session.post.ts +8 -0
- package/server/api/images/detail/[filename].get.ts +18 -0
- package/server/api/images/list/[filename].get.ts +17 -0
- package/server/api/markets.get.ts +9 -0
- package/server/api/orders/index.post.ts +376 -0
- package/server/api/payment/methods.post.ts +65 -0
- package/server/api/product/[id].get.ts +29 -0
- package/server/api/products/[id].get.ts +30 -0
- package/server/api/products/index.get.ts +21 -0
- package/server/api/requisitions/index.post.ts +67 -0
- package/server/api/shipping/rates.post.ts +70 -0
- package/server/api/themes/index.get.ts +9 -0
- package/server/api/typesense/drop.get.ts +22 -0
- package/server/api/typesense/health.get.ts +9 -0
- package/server/api/typesense/search.post.ts +199 -0
- package/server/api/typesense/seed.get.ts +112 -0
- package/server/api/typesense/suggest.post.ts +69 -0
- package/server/config/account/organization.json +146 -0
- package/server/config/account/personas.json +169 -0
- package/server/config/account/user.json +8 -0
- package/server/config/account/workflows.json +19 -0
- package/server/data/account/address-list.json +103 -0
- package/server/data/account/order-list.json +491 -0
- package/server/data/account/order-lists.json +149 -0
- package/server/data/account/profile.json +9 -0
- package/server/data/account/registration-requests.json +3 -0
- package/server/data/account/requisitions.json +686 -0
- package/server/data/categories.json +186 -0
- package/server/data/forms/checkout/add-address.json +24 -0
- package/server/data/list/5137-1.png +0 -0
- package/server/data/list/5498-1.png +0 -0
- package/server/data/list/5498-2.png +0 -0
- package/server/data/list/5498-3.png +0 -0
- package/server/data/list/5498-4.png +0 -0
- package/server/data/list/5498-5.png +0 -0
- package/server/data/list/5498-6.png +0 -0
- package/server/data/list/5519-1.png +0 -0
- package/server/data/list/5713-1.png +0 -0
- package/server/data/list/5789-1.png +0 -0
- package/server/data/list/5930-1.png +0 -0
- package/server/data/list/6127-1.png +0 -0
- package/server/data/list/6234-1.png +0 -0
- package/server/data/list/6238-1.png +0 -0
- package/server/data/list/6246-1.png +0 -0
- package/server/data/list/6270-1.png +0 -0
- package/server/data/list/6330-1.png +0 -0
- package/server/data/list/6336-1.png +0 -0
- package/server/data/list/6360-1.png +0 -0
- package/server/data/list/6363-1.png +0 -0
- package/server/data/list/6375-1.png +0 -0
- package/server/data/list/6385-1.png +0 -0
- package/server/data/list/6413-1.png +0 -0
- package/server/data/list/6418-1.png +0 -0
- package/server/data/list/6465-1.png +0 -0
- package/server/data/list/6477-1.png +0 -0
- package/server/data/list/6509-1.png +0 -0
- package/server/data/list/6545-1.png +0 -0
- package/server/data/list/6548-1.png +0 -0
- package/server/data/list/6566-1.png +0 -0
- package/server/data/list/6581-1.png +0 -0
- package/server/data/list/6609-1.png +0 -0
- package/server/data/list/6611-1.png +0 -0
- package/server/data/list/6641-1.png +0 -0
- package/server/data/list/6659-1.png +0 -0
- package/server/data/list/6662-1.png +0 -0
- package/server/data/list/6689-1.png +0 -0
- package/server/data/list/6698-1.png +0 -0
- package/server/data/list/6701-1.png +0 -0
- package/server/data/list/6752-1.png +0 -0
- package/server/data/list/6755-1.png +0 -0
- package/server/data/list/6837-1.png +0 -0
- package/server/data/list/6841-1.png +0 -0
- package/server/data/list/6844-1.png +0 -0
- package/server/data/list/6846-1.png +0 -0
- package/server/data/list/6886-1.png +0 -0
- package/server/data/list/6895-1.png +0 -0
- package/server/data/list/6897-1.png +0 -0
- package/server/data/list/6919-1.png +0 -0
- package/server/data/list/6977-1.png +0 -0
- package/server/data/list/6983-1.png +0 -0
- package/server/data/list/6984-1.png +0 -0
- package/server/data/list/6985-1.png +0 -0
- package/server/data/list/6986-1.png +0 -0
- package/server/data/list/6989-1.png +0 -0
- package/server/data/list/6995-1.png +0 -0
- package/server/data/list/6998-1.png +0 -0
- package/server/data/markets.json +24 -0
- package/server/data/product-detail.json +2450 -0
- package/server/data/product-list.json +2450 -0
- package/server/data/themes.json +8 -0
- package/server/interfaces/account.ts +20 -0
- package/server/interfaces/auth.ts +32 -0
- package/server/interfaces/b2bContext.ts +23 -0
- package/server/interfaces/cart.ts +46 -0
- package/server/interfaces/cartCalculation.ts +17 -0
- package/server/interfaces/category.ts +12 -0
- package/server/interfaces/checkoutProfile.ts +5 -0
- package/server/interfaces/log.ts +3 -0
- package/server/interfaces/market.ts +10 -0
- package/server/interfaces/product.ts +21 -0
- package/server/interfaces/schema.ts +20 -0
- package/server/interfaces/theme.ts +10 -0
- package/server/services/ApiAuthService.ts +138 -0
- package/server/services/ApiCartService.ts +254 -0
- package/server/services/ApiCategoryService.ts +25 -0
- package/server/services/ApiMarketService.ts +71 -0
- package/server/services/ApiProductService.ts +53 -0
- package/server/services/LocalFileCategoryService.ts +23 -0
- package/server/services/LocalFileCheckoutProfileService.ts +117 -0
- package/server/services/LocalFileProductService.ts +128 -0
- package/server/services/LocalFileSchemaService.ts +70 -0
- package/server/services/LocalFileThemeService.ts +18 -0
- package/server/services/LogService.ts +28 -0
- package/server/services/MockAccountService.ts +58 -0
- package/server/services/MockAuthService.ts +105 -0
- package/server/services/MockB2BContextService.ts +149 -0
- package/server/services/MockCartCalculationService.ts +395 -0
- package/server/services/MockMarketService.ts +18 -0
- package/server/services/SdkAccountService.ts +56 -0
- package/server/services/SdkAuthService.ts +83 -0
- package/server/services/SessionCartService.ts +31 -0
- package/server/utils/accountService.ts +30 -0
- package/server/utils/authCookie.ts +13 -0
- package/server/utils/authService.ts +43 -0
- package/server/utils/b2bService.ts +49 -0
- package/server/utils/cartService.ts +59 -0
- package/server/utils/categoryService.ts +19 -0
- package/server/utils/checkoutProfileService.ts +9 -0
- package/server/utils/checkoutSession.ts +38 -0
- package/server/utils/coverData.ts +84 -0
- package/server/utils/governanceStore.ts +38 -0
- package/server/utils/i18n.ts +76 -0
- package/server/utils/inventoryService.ts +14 -0
- package/server/utils/liveCatalog.ts +234 -0
- package/server/utils/liveInventories.ts +76 -0
- package/server/utils/liveOrders.ts +139 -0
- package/server/utils/livePrices.ts +93 -0
- package/server/utils/locale.ts +39 -0
- package/server/utils/logService.ts +19 -0
- package/server/utils/marketService.ts +24 -0
- package/server/utils/orderService.ts +14 -0
- package/server/utils/paymentService.ts +14 -0
- package/server/utils/priceService.ts +14 -0
- package/server/utils/productService.ts +28 -0
- package/server/utils/productsSchema.ts +30 -0
- package/server/utils/revenexxApi.ts +136 -0
- package/server/utils/schemaService.ts +25 -0
- package/server/utils/serviceMode.ts +70 -0
- package/server/utils/shippingService.ts +14 -0
- package/server/utils/shopSdk.ts +88 -0
- package/server/utils/themeService.ts +16 -0
- package/server/utils/typesense.ts +27 -0
|
@@ -0,0 +1,491 @@
|
|
|
1
|
+
{
|
|
2
|
+
"orders": [
|
|
3
|
+
{
|
|
4
|
+
"id": "ORD-2026-1042",
|
|
5
|
+
"date": "2026-06-08",
|
|
6
|
+
"status": "approval-pending",
|
|
7
|
+
"paymentStatus": "open",
|
|
8
|
+
"total": 4187,
|
|
9
|
+
"currency": "EUR",
|
|
10
|
+
"positions": [
|
|
11
|
+
{
|
|
12
|
+
"id": 6363,
|
|
13
|
+
"sku": "IP-15PM-001-6363",
|
|
14
|
+
"name": "Apple iPhone 15 Pro Max 512 GB Blue Titanium",
|
|
15
|
+
"image": "6363-1.png",
|
|
16
|
+
"quantity": 2,
|
|
17
|
+
"unitPrice": 1479,
|
|
18
|
+
"lineTotal": 2958,
|
|
19
|
+
"categorySlug": "mobile-phones",
|
|
20
|
+
"subcategorySlug": "apple"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": 6336,
|
|
24
|
+
"sku": "IP-16P-001-6336",
|
|
25
|
+
"name": "Apple iPhone 16 Pro 256 GB Desert Titanium",
|
|
26
|
+
"image": "6336-1.png",
|
|
27
|
+
"quantity": 1,
|
|
28
|
+
"unitPrice": 1229,
|
|
29
|
+
"lineTotal": 1229,
|
|
30
|
+
"categorySlug": "mobile-phones",
|
|
31
|
+
"subcategorySlug": "apple"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
35
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
36
|
+
"paymentMethod": "invoice",
|
|
37
|
+
"orderNumber": "PO-2026-0098",
|
|
38
|
+
"approvers": [
|
|
39
|
+
"Achim Approver"
|
|
40
|
+
],
|
|
41
|
+
"progress": [
|
|
42
|
+
{
|
|
43
|
+
"step": "ordered",
|
|
44
|
+
"date": "2026-06-08"
|
|
45
|
+
}
|
|
46
|
+
]
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"id": "ORD-2026-1041",
|
|
50
|
+
"date": "2026-06-05",
|
|
51
|
+
"status": "processing",
|
|
52
|
+
"paymentStatus": "open",
|
|
53
|
+
"total": 3488,
|
|
54
|
+
"currency": "EUR",
|
|
55
|
+
"positions": [
|
|
56
|
+
{
|
|
57
|
+
"id": 6919,
|
|
58
|
+
"sku": "NK-G42-001-6919",
|
|
59
|
+
"name": "Nokia G42 128 GB Purple",
|
|
60
|
+
"image": "6919-1.png",
|
|
61
|
+
"quantity": 10,
|
|
62
|
+
"unitPrice": 249,
|
|
63
|
+
"lineTotal": 2490,
|
|
64
|
+
"categorySlug": "mobile-phones",
|
|
65
|
+
"subcategorySlug": "nokia"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"id": 6755,
|
|
69
|
+
"sku": "OP-N4-001-6755",
|
|
70
|
+
"name": "OnePlus Nord 4 256 GB Mercurial Silver",
|
|
71
|
+
"image": "6755-1.png",
|
|
72
|
+
"quantity": 2,
|
|
73
|
+
"unitPrice": 499,
|
|
74
|
+
"lineTotal": 998,
|
|
75
|
+
"categorySlug": "mobile-phones",
|
|
76
|
+
"subcategorySlug": "oneplus"
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
80
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
81
|
+
"paymentMethod": "invoice",
|
|
82
|
+
"orderNumber": "PO-2026-0095",
|
|
83
|
+
"progress": [
|
|
84
|
+
{
|
|
85
|
+
"step": "ordered",
|
|
86
|
+
"date": "2026-06-05"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"step": "processing",
|
|
90
|
+
"date": "2026-06-05"
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "ORD-2026-1037",
|
|
96
|
+
"date": "2026-05-28",
|
|
97
|
+
"status": "shipped",
|
|
98
|
+
"paymentStatus": "paid",
|
|
99
|
+
"total": 1898,
|
|
100
|
+
"currency": "EUR",
|
|
101
|
+
"positions": [
|
|
102
|
+
{
|
|
103
|
+
"id": 6360,
|
|
104
|
+
"sku": "IP-16-001-6360",
|
|
105
|
+
"name": "Apple iPhone 16 128 GB Black",
|
|
106
|
+
"image": "6360-1.png",
|
|
107
|
+
"quantity": 2,
|
|
108
|
+
"unitPrice": 949,
|
|
109
|
+
"lineTotal": 1898,
|
|
110
|
+
"categorySlug": "mobile-phones",
|
|
111
|
+
"subcategorySlug": "apple"
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
115
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
116
|
+
"paymentMethod": "invoice",
|
|
117
|
+
"orderNumber": "PO-2026-0090",
|
|
118
|
+
"tracking": {
|
|
119
|
+
"carrier": "DHL",
|
|
120
|
+
"trackingNumber": "00340434161094021539"
|
|
121
|
+
},
|
|
122
|
+
"progress": [
|
|
123
|
+
{
|
|
124
|
+
"step": "ordered",
|
|
125
|
+
"date": "2026-05-28"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"step": "processing",
|
|
129
|
+
"date": "2026-05-28"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"step": "shipped",
|
|
133
|
+
"date": "2026-05-30"
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "ORD-2026-1031",
|
|
139
|
+
"date": "2026-05-19",
|
|
140
|
+
"status": "delivered",
|
|
141
|
+
"paymentStatus": "paid",
|
|
142
|
+
"total": 2146,
|
|
143
|
+
"currency": "EUR",
|
|
144
|
+
"positions": [
|
|
145
|
+
{
|
|
146
|
+
"id": 6641,
|
|
147
|
+
"sku": "GP-9P-001-6641",
|
|
148
|
+
"name": "Google Pixel 9 Pro 256 GB Obsidian",
|
|
149
|
+
"image": "6641-1.png",
|
|
150
|
+
"quantity": 1,
|
|
151
|
+
"unitPrice": 1099,
|
|
152
|
+
"lineTotal": 1099,
|
|
153
|
+
"categorySlug": "mobile-phones",
|
|
154
|
+
"subcategorySlug": "google"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"id": 6545,
|
|
158
|
+
"sku": "XI-RN13P-001-6545",
|
|
159
|
+
"name": "Xiaomi Redmi Note 13 Pro 256 GB Midnight Black",
|
|
160
|
+
"image": "6545-1.png",
|
|
161
|
+
"quantity": 3,
|
|
162
|
+
"unitPrice": 349,
|
|
163
|
+
"lineTotal": 1047,
|
|
164
|
+
"categorySlug": "mobile-phones",
|
|
165
|
+
"subcategorySlug": "xiaomi"
|
|
166
|
+
}
|
|
167
|
+
],
|
|
168
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
169
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
170
|
+
"paymentMethod": "invoice",
|
|
171
|
+
"orderNumber": "PO-2026-0084",
|
|
172
|
+
"tracking": {
|
|
173
|
+
"carrier": "UPS",
|
|
174
|
+
"trackingNumber": "1Z999AA10123456784"
|
|
175
|
+
},
|
|
176
|
+
"progress": [
|
|
177
|
+
{
|
|
178
|
+
"step": "ordered",
|
|
179
|
+
"date": "2026-05-19"
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"step": "processing",
|
|
183
|
+
"date": "2026-05-19"
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"step": "shipped",
|
|
187
|
+
"date": "2026-05-20"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"step": "delivered",
|
|
191
|
+
"date": "2026-05-22"
|
|
192
|
+
}
|
|
193
|
+
]
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "ORD-2026-1024",
|
|
197
|
+
"date": "2026-05-07",
|
|
198
|
+
"status": "delivered",
|
|
199
|
+
"paymentStatus": "paid",
|
|
200
|
+
"total": 1796,
|
|
201
|
+
"currency": "EUR",
|
|
202
|
+
"positions": [
|
|
203
|
+
{
|
|
204
|
+
"id": 5519,
|
|
205
|
+
"sku": "SG-S23FE-001-5519",
|
|
206
|
+
"name": "Samsung Galaxy S23 FE 128 GB Mint",
|
|
207
|
+
"image": "5519-1.png",
|
|
208
|
+
"quantity": 4,
|
|
209
|
+
"unitPrice": 449,
|
|
210
|
+
"lineTotal": 1796,
|
|
211
|
+
"categorySlug": "mobile-phones",
|
|
212
|
+
"subcategorySlug": "samsung"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
216
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
217
|
+
"paymentMethod": "invoice",
|
|
218
|
+
"tracking": {
|
|
219
|
+
"carrier": "DPD",
|
|
220
|
+
"trackingNumber": "01445500433283"
|
|
221
|
+
},
|
|
222
|
+
"progress": [
|
|
223
|
+
{
|
|
224
|
+
"step": "ordered",
|
|
225
|
+
"date": "2026-05-07"
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
"step": "processing",
|
|
229
|
+
"date": "2026-05-07"
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"step": "shipped",
|
|
233
|
+
"date": "2026-05-08"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"step": "delivered",
|
|
237
|
+
"date": "2026-05-09"
|
|
238
|
+
}
|
|
239
|
+
]
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"id": "ORD-2026-1019",
|
|
243
|
+
"date": "2026-04-29",
|
|
244
|
+
"status": "cancelled",
|
|
245
|
+
"paymentStatus": "refunded",
|
|
246
|
+
"total": 1499,
|
|
247
|
+
"currency": "EUR",
|
|
248
|
+
"positions": [
|
|
249
|
+
{
|
|
250
|
+
"id": 6986,
|
|
251
|
+
"sku": "AP-IPD129-001-6986",
|
|
252
|
+
"name": "Apple iPad Pro 12.9 1TB Space Gray",
|
|
253
|
+
"image": "6986-1.png",
|
|
254
|
+
"quantity": 1,
|
|
255
|
+
"unitPrice": 1499,
|
|
256
|
+
"lineTotal": 1499,
|
|
257
|
+
"categorySlug": "technology",
|
|
258
|
+
"subcategorySlug": "tablets"
|
|
259
|
+
}
|
|
260
|
+
],
|
|
261
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
262
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
263
|
+
"paymentMethod": "invoice",
|
|
264
|
+
"orderNumber": "PO-2026-0071",
|
|
265
|
+
"progress": [
|
|
266
|
+
{
|
|
267
|
+
"step": "ordered",
|
|
268
|
+
"date": "2026-04-29"
|
|
269
|
+
}
|
|
270
|
+
]
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"id": "ORD-2026-1012",
|
|
274
|
+
"date": "2026-04-15",
|
|
275
|
+
"status": "delivered",
|
|
276
|
+
"paymentStatus": "paid",
|
|
277
|
+
"total": 4142,
|
|
278
|
+
"currency": "EUR",
|
|
279
|
+
"positions": [
|
|
280
|
+
{
|
|
281
|
+
"id": 6701,
|
|
282
|
+
"sku": "OP-12-001-6701",
|
|
283
|
+
"name": "OnePlus 12 512 GB Silky Black",
|
|
284
|
+
"image": "6701-1.png",
|
|
285
|
+
"quantity": 2,
|
|
286
|
+
"unitPrice": 899,
|
|
287
|
+
"lineTotal": 1798,
|
|
288
|
+
"categorySlug": "mobile-phones",
|
|
289
|
+
"subcategorySlug": "oneplus"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": 6477,
|
|
293
|
+
"sku": "XI-14P-001-6477",
|
|
294
|
+
"name": "Xiaomi 14 Pro 512 GB Black",
|
|
295
|
+
"image": "6477-1.png",
|
|
296
|
+
"quantity": 1,
|
|
297
|
+
"unitPrice": 1099,
|
|
298
|
+
"lineTotal": 1099,
|
|
299
|
+
"categorySlug": "mobile-phones",
|
|
300
|
+
"subcategorySlug": "xiaomi"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"id": 6919,
|
|
304
|
+
"sku": "NK-G42-001-6919",
|
|
305
|
+
"name": "Nokia G42 128 GB Purple",
|
|
306
|
+
"image": "6919-1.png",
|
|
307
|
+
"quantity": 5,
|
|
308
|
+
"unitPrice": 249,
|
|
309
|
+
"lineTotal": 1245,
|
|
310
|
+
"categorySlug": "mobile-phones",
|
|
311
|
+
"subcategorySlug": "nokia"
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
315
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
316
|
+
"paymentMethod": "invoice",
|
|
317
|
+
"tracking": {
|
|
318
|
+
"carrier": "DHL",
|
|
319
|
+
"trackingNumber": "00340434161094018273"
|
|
320
|
+
},
|
|
321
|
+
"progress": [
|
|
322
|
+
{
|
|
323
|
+
"step": "ordered",
|
|
324
|
+
"date": "2026-04-15"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"step": "processing",
|
|
328
|
+
"date": "2026-04-15"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"step": "shipped",
|
|
332
|
+
"date": "2026-04-17"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"step": "delivered",
|
|
336
|
+
"date": "2026-04-19"
|
|
337
|
+
}
|
|
338
|
+
]
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
"id": "ORD-2026-1007",
|
|
342
|
+
"date": "2026-04-03",
|
|
343
|
+
"status": "delivered",
|
|
344
|
+
"paymentStatus": "paid",
|
|
345
|
+
"total": 2098,
|
|
346
|
+
"currency": "EUR",
|
|
347
|
+
"positions": [
|
|
348
|
+
{
|
|
349
|
+
"id": 6985,
|
|
350
|
+
"sku": "GL-PIX9P-001-6985",
|
|
351
|
+
"name": "Google Pixel 9 Pro 256 GB Obsidian",
|
|
352
|
+
"image": "6985-1.png",
|
|
353
|
+
"quantity": 1,
|
|
354
|
+
"unitPrice": 1199,
|
|
355
|
+
"lineTotal": 1199,
|
|
356
|
+
"categorySlug": "mobile-phones",
|
|
357
|
+
"subcategorySlug": "google"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"id": 6659,
|
|
361
|
+
"sku": "GP-9-001-6659",
|
|
362
|
+
"name": "Google Pixel 9 128 GB Peony",
|
|
363
|
+
"image": "6659-1.png",
|
|
364
|
+
"quantity": 1,
|
|
365
|
+
"unitPrice": 899,
|
|
366
|
+
"lineTotal": 899,
|
|
367
|
+
"categorySlug": "mobile-phones",
|
|
368
|
+
"subcategorySlug": "google"
|
|
369
|
+
}
|
|
370
|
+
],
|
|
371
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
372
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
373
|
+
"paymentMethod": "po_number",
|
|
374
|
+
"orderNumber": "PO-2026-0058",
|
|
375
|
+
"tracking": {
|
|
376
|
+
"carrier": "DHL",
|
|
377
|
+
"trackingNumber": "00340434161094011007"
|
|
378
|
+
},
|
|
379
|
+
"progress": [
|
|
380
|
+
{
|
|
381
|
+
"step": "ordered",
|
|
382
|
+
"date": "2026-04-03"
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
"step": "processing",
|
|
386
|
+
"date": "2026-04-03"
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"step": "shipped",
|
|
390
|
+
"date": "2026-04-04"
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"step": "delivered",
|
|
394
|
+
"date": "2026-04-07"
|
|
395
|
+
}
|
|
396
|
+
]
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
"id": "ORD-2026-0998",
|
|
400
|
+
"date": "2026-03-21",
|
|
401
|
+
"status": "delivered",
|
|
402
|
+
"paymentStatus": "paid",
|
|
403
|
+
"total": 1298,
|
|
404
|
+
"currency": "EUR",
|
|
405
|
+
"positions": [
|
|
406
|
+
{
|
|
407
|
+
"id": 6886,
|
|
408
|
+
"sku": "MT-E50P-001-6886",
|
|
409
|
+
"name": "Motorola Edge 50 Pro 256 GB Black Beauty",
|
|
410
|
+
"image": "6886-1.png",
|
|
411
|
+
"quantity": 2,
|
|
412
|
+
"unitPrice": 649,
|
|
413
|
+
"lineTotal": 1298,
|
|
414
|
+
"categorySlug": "mobile-phones",
|
|
415
|
+
"subcategorySlug": "motorola"
|
|
416
|
+
}
|
|
417
|
+
],
|
|
418
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
419
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
420
|
+
"paymentMethod": "cost_center",
|
|
421
|
+
"tracking": {
|
|
422
|
+
"carrier": "UPS",
|
|
423
|
+
"trackingNumber": "1Z999AA10123450998"
|
|
424
|
+
},
|
|
425
|
+
"progress": [
|
|
426
|
+
{
|
|
427
|
+
"step": "ordered",
|
|
428
|
+
"date": "2026-03-21"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"step": "processing",
|
|
432
|
+
"date": "2026-03-21"
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
"step": "shipped",
|
|
436
|
+
"date": "2026-03-23"
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
"step": "delivered",
|
|
440
|
+
"date": "2026-03-25"
|
|
441
|
+
}
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"id": "ORD-2026-0991",
|
|
446
|
+
"date": "2026-03-10",
|
|
447
|
+
"status": "delivered",
|
|
448
|
+
"paymentStatus": "paid",
|
|
449
|
+
"total": 2397,
|
|
450
|
+
"currency": "EUR",
|
|
451
|
+
"positions": [
|
|
452
|
+
{
|
|
453
|
+
"id": 6413,
|
|
454
|
+
"sku": "IP-14-001-6413",
|
|
455
|
+
"name": "Apple iPhone 14 256 GB Midnight",
|
|
456
|
+
"image": "6413-1.png",
|
|
457
|
+
"quantity": 3,
|
|
458
|
+
"unitPrice": 799,
|
|
459
|
+
"lineTotal": 2397,
|
|
460
|
+
"categorySlug": "mobile-phones",
|
|
461
|
+
"subcategorySlug": "apple"
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
"deliveryAddress": "Demo GmbH · Musterstraße 1 · 10115 Berlin",
|
|
465
|
+
"billingAddress": "Demo GmbH · Rechnungswesen · Postfach 110234 · 10833 Berlin",
|
|
466
|
+
"paymentMethod": "invoice",
|
|
467
|
+
"tracking": {
|
|
468
|
+
"carrier": "DPD",
|
|
469
|
+
"trackingNumber": "01445500430991"
|
|
470
|
+
},
|
|
471
|
+
"progress": [
|
|
472
|
+
{
|
|
473
|
+
"step": "ordered",
|
|
474
|
+
"date": "2026-03-10"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"step": "processing",
|
|
478
|
+
"date": "2026-03-10"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"step": "shipped",
|
|
482
|
+
"date": "2026-03-11"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
"step": "delivered",
|
|
486
|
+
"date": "2026-03-13"
|
|
487
|
+
}
|
|
488
|
+
]
|
|
489
|
+
}
|
|
490
|
+
]
|
|
491
|
+
}
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "ol-1001",
|
|
4
|
+
"name": "Onboarding-Paket Außendienst",
|
|
5
|
+
"kind": "shopping",
|
|
6
|
+
"public": true,
|
|
7
|
+
"owner": {
|
|
8
|
+
"id": "persona-admin",
|
|
9
|
+
"name": "Ada Admin"
|
|
10
|
+
},
|
|
11
|
+
"positions": [
|
|
12
|
+
{
|
|
13
|
+
"id": 6360,
|
|
14
|
+
"sku": "IP-16-001-6360",
|
|
15
|
+
"name": "Apple iPhone 16 128 GB Black",
|
|
16
|
+
"image": "6360-1.png",
|
|
17
|
+
"unit": "Stück",
|
|
18
|
+
"price": 949,
|
|
19
|
+
"taxRate": 0.07,
|
|
20
|
+
"categorySlug": "mobile-phones",
|
|
21
|
+
"subcategorySlug": "apple",
|
|
22
|
+
"quantity": 1,
|
|
23
|
+
"costCenterId": "cc-1",
|
|
24
|
+
"positionTexts": [
|
|
25
|
+
"Neue Mitarbeiter Vertrieb"
|
|
26
|
+
]
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": 6919,
|
|
30
|
+
"sku": "NK-G42-001-6919",
|
|
31
|
+
"name": "Nokia G42 128 GB Purple",
|
|
32
|
+
"image": "6919-1.png",
|
|
33
|
+
"unit": "Stück",
|
|
34
|
+
"price": 249,
|
|
35
|
+
"taxRate": 0.19,
|
|
36
|
+
"categorySlug": "mobile-phones",
|
|
37
|
+
"subcategorySlug": "nokia",
|
|
38
|
+
"quantity": 1,
|
|
39
|
+
"costCenterId": "cc-1"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": 6986,
|
|
43
|
+
"sku": "AP-IPD129-001-6986",
|
|
44
|
+
"name": "Apple iPad Pro 12.9 1TB Space Gray",
|
|
45
|
+
"image": "6986-1.png",
|
|
46
|
+
"unit": "Stück",
|
|
47
|
+
"price": 1499,
|
|
48
|
+
"taxRate": 0.07,
|
|
49
|
+
"categorySlug": "technology",
|
|
50
|
+
"subcategorySlug": "tablets",
|
|
51
|
+
"quantity": 1,
|
|
52
|
+
"costCenterId": "cc-1"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"createdAt": "2026-05-12T09:00:00Z",
|
|
56
|
+
"updatedAt": "2026-06-02T14:30:00Z"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"id": "ol-1002",
|
|
60
|
+
"name": "Ersatzgeräte Lager Süd",
|
|
61
|
+
"kind": "shopping",
|
|
62
|
+
"public": false,
|
|
63
|
+
"owner": {
|
|
64
|
+
"id": "persona-buyer",
|
|
65
|
+
"name": "Bea Buyer"
|
|
66
|
+
},
|
|
67
|
+
"positions": [
|
|
68
|
+
{
|
|
69
|
+
"id": 6919,
|
|
70
|
+
"sku": "NK-G42-001-6919",
|
|
71
|
+
"name": "Nokia G42 128 GB Purple",
|
|
72
|
+
"image": "6919-1.png",
|
|
73
|
+
"unit": "Stück",
|
|
74
|
+
"price": 249,
|
|
75
|
+
"taxRate": 0.19,
|
|
76
|
+
"categorySlug": "mobile-phones",
|
|
77
|
+
"subcategorySlug": "nokia",
|
|
78
|
+
"quantity": 10,
|
|
79
|
+
"costCenterId": "cc-2",
|
|
80
|
+
"customSku": "ERS-NOK-01"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": 6755,
|
|
84
|
+
"sku": "OP-N4-001-6755",
|
|
85
|
+
"name": "OnePlus Nord 4 256 GB Mercurial Silver",
|
|
86
|
+
"image": "6755-1.png",
|
|
87
|
+
"unit": "Stück",
|
|
88
|
+
"price": 499,
|
|
89
|
+
"taxRate": 0.07,
|
|
90
|
+
"categorySlug": "mobile-phones",
|
|
91
|
+
"subcategorySlug": "oneplus",
|
|
92
|
+
"quantity": 2,
|
|
93
|
+
"costCenterId": "cc-2"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"createdAt": "2026-05-20T11:15:00Z",
|
|
97
|
+
"updatedAt": "2026-06-08T08:45:00Z"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"id": "ol-1003",
|
|
101
|
+
"name": "Inventur-Etiketten Q3",
|
|
102
|
+
"kind": "label",
|
|
103
|
+
"public": false,
|
|
104
|
+
"owner": {
|
|
105
|
+
"id": "persona-buyer",
|
|
106
|
+
"name": "Bea Buyer"
|
|
107
|
+
},
|
|
108
|
+
"positions": [
|
|
109
|
+
{
|
|
110
|
+
"id": 6641,
|
|
111
|
+
"sku": "GP-9P-001-6641",
|
|
112
|
+
"name": "Google Pixel 9 Pro 256 GB Obsidian",
|
|
113
|
+
"image": "6641-1.png",
|
|
114
|
+
"unit": "Stück",
|
|
115
|
+
"price": 1099,
|
|
116
|
+
"taxRate": 0.07,
|
|
117
|
+
"categorySlug": "mobile-phones",
|
|
118
|
+
"subcategorySlug": "google",
|
|
119
|
+
"quantity": 1
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": 6477,
|
|
123
|
+
"sku": "XI-14P-001-6477",
|
|
124
|
+
"name": "Xiaomi 14 Pro 512 GB Black",
|
|
125
|
+
"image": "6477-1.png",
|
|
126
|
+
"unit": "Stück",
|
|
127
|
+
"price": 1099,
|
|
128
|
+
"taxRate": 0.07,
|
|
129
|
+
"categorySlug": "mobile-phones",
|
|
130
|
+
"subcategorySlug": "xiaomi",
|
|
131
|
+
"quantity": 1
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"id": 6509,
|
|
135
|
+
"sku": "XI-13TP-001-6509",
|
|
136
|
+
"name": "Xiaomi 13T Pro 256 GB Meadow Green",
|
|
137
|
+
"image": "6509-1.png",
|
|
138
|
+
"unit": "Stück",
|
|
139
|
+
"price": 699,
|
|
140
|
+
"taxRate": 0.07,
|
|
141
|
+
"categorySlug": "mobile-phones",
|
|
142
|
+
"subcategorySlug": "xiaomi",
|
|
143
|
+
"quantity": 1
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"createdAt": "2026-06-01T10:00:00Z",
|
|
147
|
+
"updatedAt": "2026-06-01T10:00:00Z"
|
|
148
|
+
}
|
|
149
|
+
]
|