Browse Source
Bugfix/fix duplicate currency conversion in account calculations (#771)
* Fix currency conversion (duplicate)
* Update changelog
pull/772/head
Thomas Kaul
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
18 additions and
12 deletions
-
CHANGELOG.md
-
apps/api/src/app/portfolio/portfolio.service-new.ts
-
apps/api/src/app/portfolio/portfolio.service.ts
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. |
|
|
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
|
|
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
|
|
|
|
|
|
|
## Unreleased |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed an issue with the currency conversion (duplicate) in the account calculations |
|
|
|
|
|
|
|
## 1.129.0 - 26.03.2022 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -111,21 +111,21 @@ export class PortfolioServiceNew { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const value = details.accounts[account.id]?.current ?? 0; |
|
|
|
const valueInBaseCurrency = details.accounts[account.id]?.current ?? 0; |
|
|
|
|
|
|
|
const result = { |
|
|
|
...account, |
|
|
|
transactionCount, |
|
|
|
value, |
|
|
|
valueInBaseCurrency, |
|
|
|
balanceInBaseCurrency: this.exchangeRateDataService.toCurrency( |
|
|
|
account.balance, |
|
|
|
account.currency, |
|
|
|
userCurrency |
|
|
|
), |
|
|
|
valueInBaseCurrency: this.exchangeRateDataService.toCurrency( |
|
|
|
value, |
|
|
|
account.currency, |
|
|
|
userCurrency |
|
|
|
value: this.exchangeRateDataService.toCurrency( |
|
|
|
valueInBaseCurrency, |
|
|
|
userCurrency, |
|
|
|
account.currency |
|
|
|
) |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
@ -106,21 +106,21 @@ export class PortfolioService { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const value = details.accounts[account.id]?.current ?? 0; |
|
|
|
const valueInBaseCurrency = details.accounts[account.id]?.current ?? 0; |
|
|
|
|
|
|
|
const result = { |
|
|
|
...account, |
|
|
|
transactionCount, |
|
|
|
value, |
|
|
|
valueInBaseCurrency, |
|
|
|
balanceInBaseCurrency: this.exchangeRateDataService.toCurrency( |
|
|
|
account.balance, |
|
|
|
account.currency, |
|
|
|
userCurrency |
|
|
|
), |
|
|
|
valueInBaseCurrency: this.exchangeRateDataService.toCurrency( |
|
|
|
value, |
|
|
|
account.currency, |
|
|
|
userCurrency |
|
|
|
value: this.exchangeRateDataService.toCurrency( |
|
|
|
valueInBaseCurrency, |
|
|
|
userCurrency, |
|
|
|
account.currency |
|
|
|
) |
|
|
|
}; |
|
|
|
|
|
|
|