Bugfix/fix query to filter activities of excluded accounts (#3059)

* Fix query to filter activities of excluded accounts

* Update changelog
pull/3061/head
Thomas Kaul 3 months ago committed by GitHub
parent f2d431a6b8
commit d3679d41b3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed the query to filter activities of excluded accounts
- Improved the asset profile validation in the activities import
## 2.57.0 - 2024-02-25

@ -292,19 +292,14 @@ export class OrderService {
}
if (types) {
where.OR = types.map((type) => {
return {
type: {
equals: type
}
};
});
where.type = { in: types };
}
if (withExcludedAccounts === false) {
where.Account = {
NOT: { isExcluded: true }
};
where.OR = [
{ Account: null },
{ Account: { NOT: { isExcluded: true } } }
];
}
const [orders, count] = await Promise.all([

Loading…
Cancel
Save