core/common/mo-name-cache.service.ts
Properties |
Methods |
constructor(inventoryService: InventoryService)
|
||||||
Parameters :
|
resetCacheTimer | ||||
resetCacheTimer(id)
|
||||
Parameters :
Returns :
void
|
getMoName |
Default value : memoize(async id => {
const { data } = await this.inventoryService.detail(id);
return data.name ? data.name : '';
})
|