Add ability to move stuff around, fix spelling.

This commit is contained in:
James Cole
2022-09-24 17:43:49 +02:00
parent 600fa388c1
commit a9f2741282
14 changed files with 344 additions and 53 deletions

View File

@@ -841,4 +841,13 @@ class GroupCollector implements GroupCollectorInterface
$this->query->where('source.reconciled', 1)->where('destination.reconciled', 1);
return $this;
}
/**
* @inheritDoc
*/
public function exists(): GroupCollectorInterface
{
$this->query->whereNull('transaction_groups.deleted_at');
return $this;
}
}