SalesChannelLocationService
Service for managing the stock locations of sales channels
constructor
Parameters
__namedParameters
InjectedDependenciesRequiredProperties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>eventBusService_
IEventBusServiceRequiredmanager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredAccessors
activeManager_
Returns
EntityManager
EntityManagerRequiredstockLocationService_
Returns
IStockLocationService
objectRequiredMethods
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.
Type Parameters
TResult
objectRequiredTError
objectRequiredParameters
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> | objectRequiredReturns
boolean
booleanwithTransaction
Parameters
transactionManager
EntityManagerReturns
SalesChannelLocationService
objectRequiredService for managing the stock locations of sales channels
Was this section helpful?