Browse Source

Update import-transactions.service.ts (#556)

Parse dividend type in import
pull/547/head
Fly Man 4 years ago
committed by Thomas
parent
commit
91eb7804cb
  1. 2
      apps/client/src/app/services/import-transactions.service.ts

2
apps/client/src/app/services/import-transactions.service.ts

@ -218,6 +218,8 @@ export class ImportTransactionsService {
return Type.BUY;
} else if (item[key].toLowerCase() === 'sell') {
return Type.SELL;
} else if (item[key].toLowerCase() === 'dividend') {
return Type.DIVIDEND;
}
}
}

Loading…
Cancel
Save