ProductTypeService
Properties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>manager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredtypeRepository_
Repository<ProductType> & { findAndCountByDiscountConditionId: Method findAndCountByDiscountConditionId ; upsertType: Method upsertType }RequiredAccessors
activeManager_
Returns
EntityManager
EntityManagerRequiredMethods
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
list
Lists product types
Parameters
selector
Selector<ProductType> & { discount_condition_id?: string ; q?: string }the query object for find
config
FindConfig<ProductType>the config to be used for find
Returns
the result of the find operation
listAndCount
Lists product types and adds count.
Parameters
selector
Selector<ProductType> & { discount_condition_id?: string ; q?: string }the query object for find
config
FindConfig<ProductType>the config to be used for find
Returns
the result of the find operation
retrieve
Gets a product type by id. Throws in case of DB Error and if product was not found.
Parameters
id
stringRequiredid of the product to get.
config
FindConfig<ProductType>object that defines what should be included in the query response
Returns
the result of the find one operation.
shouldRetryTransaction_
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
booleanwithTransaction
Parameters
transactionManager
EntityManagerReturns
Was this section helpful?