Create round-up transaction for same time as original transaction

Instead of creating it for 00:00 on the same day
This commit is contained in:
2025-11-02 10:11:52 +00:00
parent 83c59a7e77
commit 83700b7938

View File

@@ -149,7 +149,7 @@ function createAutoSaveTransaction(array $group, array $arguments): void
'source_id' => $arguments['account'],
'destination_id' => $arguments['destination'],
'description' => '(Round-up transaction)',
'date' => substr($first['date'], 0, 10),
'date' => $first['date'],
'tags' => ['Round-up'],
'currency_code' => $first['currency_code'],
'amount' => $amountToCreate,