Browse Source
Merge branch 'main' into bugfix/ignore-future-dated-account-balances-in-portfolio-calculation
pull/7436/head
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with
21 additions and
14 deletions
-
CHANGELOG.md
-
apps/client/src/app/components/account-detail-dialog/account-detail-dialog.html
-
apps/client/src/app/components/holding-detail-dialog/holding-detail-dialog.html
|
|
|
@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
- Moved the tags to the overview tab of the account detail dialog (experimental) |
|
|
|
- Moved the tags to the overview tab of the holding detail dialog |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Ignored future-dated account balances in the portfolio calculation |
|
|
|
|
|
|
|
@ -112,6 +112,11 @@ |
|
|
|
>Platform</gf-value |
|
|
|
> |
|
|
|
</div> |
|
|
|
@if (user?.settings?.isExperimentalFeatures) { |
|
|
|
<div class="col-12 mb-3"> |
|
|
|
<gf-tags-selector [readonly]="true" [tags]="tags" /> |
|
|
|
</div> |
|
|
|
} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</mat-tab> |
|
|
|
@ -179,10 +184,6 @@ |
|
|
|
/> |
|
|
|
</mat-tab> |
|
|
|
</mat-tab-group> |
|
|
|
|
|
|
|
@if (user?.settings?.isExperimentalFeatures) { |
|
|
|
<gf-tags-selector [readonly]="true" [tags]="tags" /> |
|
|
|
} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
@ -331,6 +331,17 @@ |
|
|
|
>ISIN</gf-value |
|
|
|
> |
|
|
|
</div> |
|
|
|
<div class="col-12 mb-3"> |
|
|
|
<form [formGroup]="holdingForm"> |
|
|
|
<gf-tags-selector |
|
|
|
formControlName="tags" |
|
|
|
[hasPermissionToCreateTag]="hasPermissionToCreateOwnTag" |
|
|
|
[readonly]="!data.hasPermissionToUpdateActivity" |
|
|
|
[tagsAvailable]="tagsAvailable" |
|
|
|
[tagsReadOnly]="tagsOfAccounts" |
|
|
|
/> |
|
|
|
</form> |
|
|
|
</div> |
|
|
|
|
|
|
|
@if (dataProviderInfo) { |
|
|
|
<div class="col-md-12 mb-3 text-center"> |
|
|
|
@ -419,16 +430,6 @@ |
|
|
|
} |
|
|
|
</mat-tab-group> |
|
|
|
|
|
|
|
<form [formGroup]="holdingForm"> |
|
|
|
<gf-tags-selector |
|
|
|
formControlName="tags" |
|
|
|
[hasPermissionToCreateTag]="hasPermissionToCreateOwnTag" |
|
|
|
[readonly]="!data.hasPermissionToUpdateActivity" |
|
|
|
[tagsAvailable]="tagsAvailable" |
|
|
|
[tagsReadOnly]="tagsOfAccounts" |
|
|
|
/> |
|
|
|
</form> |
|
|
|
|
|
|
|
@if ( |
|
|
|
data.hasPermissionToAccessAdminControl || |
|
|
|
(dataSource?.data.length > 0 && |
|
|
|
|