Bugix/fix dividend import from data provider for holdings without account (#3606)
* Fix dividend import for holdings without account * Update changelog
This commit is contained in:
parent
f3f359bcfb
commit
cec55127c8
@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- Fixed the dividend import from a data provider for holdings without an account
|
||||||
- Fixed an issue in the public page related to a non-existent access
|
- Fixed an issue in the public page related to a non-existent access
|
||||||
|
|
||||||
## 2.97.0 - 2024-07-20
|
## 2.97.0 - 2024-07-20
|
||||||
|
@ -72,9 +72,13 @@ export class ImportService {
|
|||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const accounts = orders.map((order) => {
|
const accounts = orders
|
||||||
return order.Account;
|
.filter(({ Account }) => {
|
||||||
});
|
return !!Account;
|
||||||
|
})
|
||||||
|
.map(({ Account }) => {
|
||||||
|
return Account;
|
||||||
|
});
|
||||||
|
|
||||||
const Account = this.isUniqueAccount(accounts) ? accounts[0] : undefined;
|
const Account = this.isUniqueAccount(accounts) ? accounts[0] : undefined;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user