* docs: migrate ui docs to docs universe * created yarn workspace * added eslint and tsconfig configurations * fix eslint configurations * fixed eslint configurations * shared tailwind configurations * added shared ui package * added more shared components * migrating more components * made details components shared * move InlineCode component * moved InputText * moved Loading component * Moved Modal component * moved Select components * Moved Tooltip component * moved Search components * moved ColorMode provider * Moved Notification components and providers * used icons package * use UI colors in api-reference * moved Navbar component * used Navbar and Search in UI docs * added Feedback to UI docs * general enhancements * fix color mode * added copy colors file from ui-preset * added features and enhancements to UI docs * move Sidebar component and provider * general fixes and preparations for deployment * update docusaurus version * adjusted versions * fix output directory * remove rootDirectory property * fix yarn.lock * moved code component * added vale for all docs MD and MDX * fix tests * fix vale error * fix deployment errors * change ignore commands * add output directory * fix docs test * general fixes * content fixes * fix announcement script * added changeset * fix vale checks * added nofilter option * fix vale error
124 lines
3.5 KiB
Plaintext
124 lines
3.5 KiB
Plaintext
---
|
||
description: "Sales channels are different methods a business offers its products for purchase for the customers. Learn about the available features and guides."
|
||
---
|
||
|
||
import DocCardList from '@theme/DocCardList';
|
||
import DocCard from '@theme/DocCard';
|
||
import Icons from '@theme/Icon';
|
||
|
||
# Sales Channels
|
||
|
||
Sales channels are different methods a business offers its products for purchase for the customers. This overview introduces the available features related to sales channels.
|
||
|
||
:::note
|
||
|
||
Not a developer? Check out the [Sales Channels user guide](../../user-guide/sales-channels/index.md).
|
||
|
||
:::
|
||
|
||
## Features
|
||
|
||
### Sales Channel Management
|
||
|
||
Admins can manage sales channels, creating an unlimited number of them. They specify the products’ availability for each sales channel.
|
||
|
||
<DocCardList colSize={4} items={[
|
||
{
|
||
type: 'link',
|
||
href: '/modules/sales-channels/admin/manage',
|
||
label: 'Admin: Manage Sales Channels',
|
||
customProps: {
|
||
icon: Icons['academic-cap-solid'],
|
||
description: 'Learn how to manage sales channels using the Admin APIs.'
|
||
}
|
||
},
|
||
{
|
||
type: 'link',
|
||
href: '/user-guide/sales-channels/manage',
|
||
label: 'User Guide: Manage Sales Channels',
|
||
customProps: {
|
||
icon: Icons['users-solid'],
|
||
description: 'Learn how to manage sales channels using Medusa Admin.'
|
||
}
|
||
},
|
||
{
|
||
type: 'link',
|
||
href: '/user-guide/sales-channels/products',
|
||
label: 'User Guide: Manage Products',
|
||
customProps: {
|
||
icon: Icons['users-solid'],
|
||
description: 'Learn how to manage products in a sales channel using Medusa Admin.'
|
||
}
|
||
},
|
||
]} />
|
||
|
||
### Sales Channels for Each Platform
|
||
|
||
Developers can associate a platform with a sales channel. For example, associating a storefront with a web sales channel. Only products available in that sales channel will be shown, and all orders placed on that sales channel will be associated with it.
|
||
|
||
Admins can filter orders by a sales channel. This would allow them to handle orders coming from each sales channel differently.
|
||
|
||
<DocCardList colSize={6} items={[
|
||
{
|
||
type: 'link',
|
||
href: '/modules/sales-channels/storefront/use-sales-channels',
|
||
label: 'Storefront: Use Sales Channels',
|
||
customProps: {
|
||
icon: Icons['academic-cap-solid'],
|
||
description: 'Learn how to use sales channels in a storefront.'
|
||
}
|
||
},
|
||
{
|
||
type: 'link',
|
||
href: '/modules/sales-channels/admin/manage#list-orders-by-sales-channels',
|
||
label: 'Admin: Orders by Sales Channels',
|
||
customProps: {
|
||
icon: Icons['academic-cap-solid'],
|
||
description: 'Learn how to filter orders by a sales channel.'
|
||
}
|
||
},
|
||
]} />
|
||
|
||
---
|
||
|
||
## Understand the Architecture
|
||
|
||
Learn how sales channel related entities and concepts are built, their relation to other modules, and more.
|
||
|
||
<DocCard item={{
|
||
type: 'link',
|
||
href: '/modules/sales-channels',
|
||
label: 'Architecture: Sales Channel',
|
||
customProps: {
|
||
icon: Icons['circle-stack-solid'],
|
||
description: 'Learn about the Sales Channels architecture.'
|
||
}
|
||
}}
|
||
/>
|
||
|
||
---
|
||
|
||
## Related Modules
|
||
|
||
Discover Sales Channel’s relation to other modules in Medusa.
|
||
|
||
<DocCardList colSize={6} items={[
|
||
{
|
||
type: 'link',
|
||
href: '/modules/products/overview',
|
||
label: 'Product',
|
||
customProps: {
|
||
icon: Icons['tag-solid'],
|
||
description: 'Products availability can be changed for each sales channel.'
|
||
}
|
||
},
|
||
{
|
||
type: 'link',
|
||
href: '/modules/orders/overview',
|
||
label: 'Orders',
|
||
customProps: {
|
||
icon: Icons['shopping-cart-solid'],
|
||
description: 'Orders can be associated and organized by a sales channel.'
|
||
}
|
||
},
|
||
]} /> |