Browse Source

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 7 months ago
committed by GitHub
parent
commit
d3679d41b3
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 15
      apps/api/src/app/order/order.service.ts

1
CHANGELOG.md

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

15
apps/api/src/app/order/order.service.ts

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

Loading…
Cancel
Save