Browse Source
Bugfix/add missing data source in activities import (#1930)
* Add dataSource
* Update changelog
pull/1933/head
Thomas Kaul
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
5 additions and
0 deletions
-
CHANGELOG.md
-
apps/client/src/app/services/import-activities.service.ts
|
@ -18,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
- Upgraded `class-validator` from version `0.13.1` to `0.14.0` |
|
|
- Upgraded `class-validator` from version `0.13.1` to `0.14.0` |
|
|
- Upgraded `prisma` from version `4.12.0` to `4.13.0` |
|
|
- Upgraded `prisma` from version `4.12.0` to `4.13.0` |
|
|
|
|
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
|
|
|
|
- Added the missing `dataSource` attribute to the activities import |
|
|
|
|
|
|
|
|
## 1.265.0 - 2023-05-01 |
|
|
## 1.265.0 - 2023-05-01 |
|
|
|
|
|
|
|
|
### Changed |
|
|
### Changed |
|
|
|
@ -138,6 +138,7 @@ export class ImportActivitiesService { |
|
|
unitPrice, |
|
|
unitPrice, |
|
|
updateAccountBalance, |
|
|
updateAccountBalance, |
|
|
currency: SymbolProfile.currency, |
|
|
currency: SymbolProfile.currency, |
|
|
|
|
|
dataSource: SymbolProfile.dataSource, |
|
|
date: date.toString(), |
|
|
date: date.toString(), |
|
|
symbol: SymbolProfile.symbol |
|
|
symbol: SymbolProfile.symbol |
|
|
}; |
|
|
}; |
|
|