Browse Source
Feature/support bonds in import dividend dialog (#3775)
* Support bonds
* Update changelog
pull/3768/head^2
Thomas Kaul
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/import-activities-dialog/import-activities-dialog.component.ts
|
|
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
|
|
- Added support for bonds in the import dividends dialog |
|
|
|
- Added the current market price column to the historical market data table of the admin control |
|
|
|
- Introduced filters (`dataSource` and `symbol`) in the accounts endpoint |
|
|
|
|
|
|
|
|
|
@ -93,6 +93,10 @@ export class ImportActivitiesDialog implements OnDestroy { |
|
|
|
{ |
|
|
|
id: AssetClass.EQUITY, |
|
|
|
type: 'ASSET_CLASS' |
|
|
|
}, |
|
|
|
{ |
|
|
|
id: AssetClass.FIXED_INCOME, |
|
|
|
type: 'ASSET_CLASS' |
|
|
|
} |
|
|
|
], |
|
|
|
range: 'max' |
|
|
|