diff --git a/apps/api/src/app/export/export.service.ts b/apps/api/src/app/export/export.service.ts index 1ff18ce9c..9c0c7a6fb 100644 --- a/apps/api/src/app/export/export.service.ts +++ b/apps/api/src/app/export/export.service.ts @@ -73,7 +73,8 @@ export class ExportService { quantity, SymbolProfile, type, - unitPrice + unitPrice, + tags }) => { return { accountId, @@ -92,7 +93,8 @@ export class ExportService { type === 'ITEM' || type === 'LIABILITY' ? SymbolProfile.name - : SymbolProfile.symbol + : SymbolProfile.symbol, + tags: tags.map(({ id: tagId }) => tagId) }; } ),