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_
Inherited from
TransactionBaseService.activeManager_
stockLocationService_
Methods
associateLocation
Associates a sales channel with a stock location.
Parameters
salesChannelIdstringRequiredThe ID of the sales channel.
locationIdstringRequiredThe ID of the stock location.
Returns
PromisePromise<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
isolationOrErrorHandlerIsolationLevel | (error: TError) => Promise<void | TResult>the isolation level to be used for the work.
maybeErrorHandlerOrDontFail(error: TError) => Promise<void | TResult>Potential error handler
Returns
PromisePromise<TResult>Requiredthe result of the transactional work
listLocationIds
Lists the stock locations associated with a sales channel.
Parameters
salesChannelIdstring | string[]RequiredThe ID of the sales channel.
Returns
PromisePromise<string[]>RequiredA promise that resolves with an array of location IDs.
listSalesChannelIds
Lists the sales channels associated with a stock location.
Parameters
locationIdstringRequiredReturns
PromisePromise<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
locationIdstringRequiredThe ID of the stock location.
salesChannelIdstringThe ID of the sales channel or undefined if all the sales channel will be affected.
Returns
PromisePromise<void>RequiredA promise that resolves when the association has been removed.
shouldRetryTransaction_
Parameters
errRecord<string, unknown> | { code: string }RequiredReturns
booleanbooleanwithTransaction
Parameters
transactionManagerEntityManagerReturns
Was this section helpful?