mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-08-19 01:14:43 -05:00
🤖 Auto commit for release 'develop' on 2026-02-02
This commit is contained in:
@@ -141,12 +141,12 @@ class ProcessesNewTransactionGroup implements ShouldQueue
|
||||
|
||||
private function removePeriodStatistics(Collection $set): void
|
||||
{
|
||||
if(auth()->check()) {
|
||||
Log::debug('Always remove period statistics');
|
||||
if (auth()->check()) {
|
||||
Log::debug('Always remove period statistics');
|
||||
|
||||
/** @var PeriodStatisticRepositoryInterface $repository */
|
||||
$repository = app(PeriodStatisticRepositoryInterface::class);
|
||||
$repository->deleteStatisticsForCollection($set);
|
||||
/** @var PeriodStatisticRepositoryInterface $repository */
|
||||
$repository = app(PeriodStatisticRepositoryInterface::class);
|
||||
$repository->deleteStatisticsForCollection($set);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -255,15 +255,17 @@ class JournalRepository implements JournalRepositoryInterface, UserGroupInterfac
|
||||
#[Override]
|
||||
public function getUncompletedJournals(): Collection
|
||||
{
|
||||
return $this->userGroup->transactionJournals()->where('completed', false)->get(['transaction_journals.*'])
|
||||
return $this->userGroup
|
||||
->transactionJournals()
|
||||
->where('completed', false)
|
||||
->get(['transaction_journals.*'])
|
||||
;
|
||||
}
|
||||
|
||||
#[Override]
|
||||
public function getAllUncompletedJournals(): Collection
|
||||
{
|
||||
return TransactionJournal::where('completed', false)->get(['transaction_journals.*'])
|
||||
;
|
||||
return TransactionJournal::where('completed', false)->get(['transaction_journals.*']);
|
||||
}
|
||||
|
||||
#[Override]
|
||||
|
||||
@@ -53,6 +53,7 @@ interface JournalRepositoryInterface
|
||||
public function destroyGroup(TransactionGroup $transactionGroup): void;
|
||||
|
||||
public function getUncompletedJournals(): Collection;
|
||||
|
||||
public function getAllUncompletedJournals(): Collection;
|
||||
|
||||
public function markAsCompleted(Collection $set): void;
|
||||
|
||||
+1
-1
@@ -79,7 +79,7 @@ return [
|
||||
// see cer.php for exchange rates feature flag.
|
||||
],
|
||||
'version' => 'develop/2026-02-02',
|
||||
'build_time' => 1770040199,
|
||||
'build_time' => 1770044049,
|
||||
'api_version' => '2.1.0', // field is no longer used.
|
||||
'db_version' => 28, // field is no longer used.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user