Browse Source
Bugfix/edit of draft activities (#5974)
* Fix edit of draft activities
* Update changelog
pull/5018/merge
Thomas Kaul
7 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
0 deletions
-
CHANGELOG.md
-
apps/api/src/app/order/order.controller.ts
|
|
@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Resolved the data source of the `GHOSTFOLIO` data provider in the import functionality |
|
|
- Resolved the data source of the `GHOSTFOLIO` data provider in the import functionality |
|
|
- Improved the language localization for German (`de`) |
|
|
- Improved the language localization for German (`de`) |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Fixed an issue with the edit of future activities (drafts) |
|
|
|
|
|
|
|
|
## 2.218.0 - 2025-11-20 |
|
|
## 2.218.0 - 2025-11-20 |
|
|
|
|
|
|
|
|
### Added |
|
|
### Added |
|
|
|
|
|
@ -166,6 +166,7 @@ export class OrderController { |
|
|
|
|
|
|
|
|
const { activities } = await this.orderService.getOrders({ |
|
|
const { activities } = await this.orderService.getOrders({ |
|
|
userCurrency, |
|
|
userCurrency, |
|
|
|
|
|
includeDrafts: true, |
|
|
userId: impersonationUserId || this.request.user.id, |
|
|
userId: impersonationUserId || this.request.user.id, |
|
|
withExcludedAccountsAndActivities: true |
|
|
withExcludedAccountsAndActivities: true |
|
|
}); |
|
|
}); |
|
|
|