Browse Source

Bugfix/edit of draft activities (#5974)

* Fix edit of draft activities

* Update changelog
pull/5018/merge
Thomas Kaul 6 days ago
committed by GitHub
parent
commit
0673aa24e6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 1
      apps/api/src/app/order/order.controller.ts

4
CHANGELOG.md

@ -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
- Improved the language localization for German (`de`)
### Fixed
- Fixed an issue with the edit of future activities (drafts)
## 2.218.0 - 2025-11-20
### Added

1
apps/api/src/app/order/order.controller.ts

@ -166,6 +166,7 @@ export class OrderController {
const { activities } = await this.orderService.getOrders({
userCurrency,
includeDrafts: true,
userId: impersonationUserId || this.request.user.id,
withExcludedAccountsAndActivities: true
});

Loading…
Cancel
Save