SalesChannelLocationService
Service for managing the stock locations of sales channels
Properties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>manager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredAccessors
activeManager_
Returns
EntityManager
EntityManagerRequiredstockLocationService_
Returns
create
(input: CreateStockLocationInput, context?: SharedContext) => Promise<StockLocationDTO>Requiredlist
(selector: FilterableStockLocationProps, config?: FindConfig<StockLocationDTO>, context?: SharedContext) => Promise<StockLocationDTO[]>RequiredlistAndCount
(selector: FilterableStockLocationProps, config?: FindConfig<StockLocationDTO>, context?: SharedContext) => Promise<[StockLocationDTO[], number]>Requiredretrieve
(id: string, config?: FindConfig<StockLocationDTO>, context?: SharedContext) => Promise<StockLocationDTO>Requiredupdate
(id: string, input: UpdateStockLocationInput, context?: SharedContext) => Promise<StockLocationDTO>RequiredMethods
associateLocation
Associates a sales channel with a stock location.
Parameters
salesChannelId
stringRequiredThe ID of the sales channel.
locationId
stringRequiredThe ID of the stock location.
Returns
Promise
Promise<void>RequiredA promise that resolves when the association has been created.
atomicPhase_
Wraps some work within a transactional block. If the service already has a transaction manager attached this will be reused, otherwise a new transaction manager is created.
Parameters
work
(transactionManager: EntityManager) => Promise<TResult>Requiredthe transactional work to be done
isolationOrErrorHandler
IsolationLevel | (error: TError) => Promise<void | TResult>the isolation level to be used for the work.
maybeErrorHandlerOrDontFail
(error: TError) => Promise<void | TResult>Potential error handler
Returns
Promise
Promise<TResult>Requiredthe result of the transactional work
listLocationIds
Lists the stock locations associated with a sales channel.
Parameters
salesChannelId
string | string[]RequiredThe ID of the sales channel.
Returns
Promise
Promise<string[]>RequiredA promise that resolves with an array of location IDs.
listSalesChannelIds
Lists the sales channels associated with a stock location.
Parameters
locationId
stringRequiredReturns
Promise
Promise<string[]>RequiredA promise that resolves with an array of sales channel IDs.
removeLocation
Removes an association between a sales channel and a stock location.
Parameters
locationId
stringRequiredThe ID of the stock location.
salesChannelId
stringThe ID of the sales channel or undefined if all the sales channel will be affected.
Returns
Promise
Promise<void>RequiredA promise that resolves when the association has been removed.
shouldRetryTransaction_
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
booleanwithTransaction
Parameters
transactionManager
EntityManagerReturns
Was this section helpful?