Browse Source
Merge branch 'main' into translate-zh-fee-ratio
pull/6348/head
Thomas Kaul
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
9 additions and
4 deletions
-
CHANGELOG.md
-
apps/client/src/app/pages/portfolio/activities/create-or-update-activity-dialog/create-or-update-activity-dialog.component.ts
|
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Improved the language localization for Chinese (`zh`) |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue when creating activities of type `FEE`, `INTEREST` or `LIABILITY` |
|
|
|
|
|
|
|
## 2.242.0 - 2026-02-22 |
|
|
|
|
|
|
|
### Changed |
|
|
|
|
|
|
|
@ -501,11 +501,12 @@ export class GfCreateOrUpdateActivityDialogComponent implements OnDestroy { |
|
|
|
comment: this.activityForm.get('comment').value || null, |
|
|
|
currency: this.activityForm.get('currency').value, |
|
|
|
customCurrency: this.activityForm.get('currencyOfUnitPrice').value, |
|
|
|
date: this.activityForm.get('date').value, |
|
|
|
dataSource: |
|
|
|
this.activityForm.get('type').value === 'VALUABLE' |
|
|
|
dataSource: ['FEE', 'INTEREST', 'LIABILITY', 'VALUABLE'].includes( |
|
|
|
this.activityForm.get('type').value |
|
|
|
) |
|
|
|
? 'MANUAL' |
|
|
|
: this.activityForm.get('dataSource').value, |
|
|
|
date: this.activityForm.get('date').value, |
|
|
|
fee: this.activityForm.get('fee').value, |
|
|
|
quantity: this.activityForm.get('quantity').value, |
|
|
|
symbol: |
|
|
|
|