mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-20 11:19:16 +00:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
fa1a1b084b | ||
|
387e44b8b9 | ||
|
6dafa89a15 | ||
|
5b5b8008b0 |
@@ -3,6 +3,12 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## 6.1.3 - 2024-01-03
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- [Issue 8326](https://github.com/firefly-iii/firefly-iii/issues/8326) Asking for non-zero foreign amount despite not being used
|
||||||
|
|
||||||
## 6.1.2 - 2024-01-03
|
## 6.1.2 - 2024-01-03
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@@ -114,7 +114,7 @@ return [
|
|||||||
'handle_debts' => true,
|
'handle_debts' => true,
|
||||||
// see cer.php for exchange rates feature flag.
|
// see cer.php for exchange rates feature flag.
|
||||||
],
|
],
|
||||||
'version' => '6.1.2',
|
'version' => '6.1.3',
|
||||||
'api_version' => '2.0.12',
|
'api_version' => '2.0.12',
|
||||||
'db_version' => 22,
|
'db_version' => 22,
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
@@ -451,7 +451,7 @@ export default {
|
|||||||
if (typeof window.expectedSourceTypes === 'undefined') {
|
if (typeof window.expectedSourceTypes === 'undefined') {
|
||||||
console.error('window.expectedSourceTypes is unexpectedly empty.')
|
console.error('window.expectedSourceTypes is unexpectedly empty.')
|
||||||
}
|
}
|
||||||
this.transactions.push({
|
let result = {
|
||||||
transaction_journal_id: transaction.transaction_journal_id,
|
transaction_journal_id: transaction.transaction_journal_id,
|
||||||
description: transaction.description,
|
description: transaction.description,
|
||||||
date: transaction.date.substring(0, 16),
|
date: transaction.date.substring(0, 16),
|
||||||
@@ -521,7 +521,11 @@ export default {
|
|||||||
currency_decimal_places: transaction.currency_decimal_places,
|
currency_decimal_places: transaction.currency_decimal_places,
|
||||||
allowed_types: window.expectedSourceTypes.destination[this.ucFirst(transaction.type)]
|
allowed_types: window.expectedSourceTypes.destination[this.ucFirst(transaction.type)]
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
|
if(null === transaction.foreign_amount) {
|
||||||
|
result.foreign_amount.amount = '';
|
||||||
|
}
|
||||||
|
this.transactions.push(result);
|
||||||
},
|
},
|
||||||
limitSourceType: function (type) {
|
limitSourceType: function (type) {
|
||||||
// let i;
|
// let i;
|
||||||
|
Reference in New Issue
Block a user