feat: additional attribute for synced with bpn status including filtering by

closes #869anf53g
This commit is contained in:
Björn Fromme
2025-09-30 18:36:08 +02:00
parent 4b8971e194
commit e23a5097ef
10 changed files with 127 additions and 1 deletions
+7
View File
@@ -185,6 +185,13 @@ class AssignmentRepository extends ServiceEntityRepository
->setParameter('country', $country)
;
}
if (true === $filterDto->isSyncedWithBusProNet()) {
$qb
->andWhere($qb->expr()->eq('disposition.syncedWithBusProNet', ':syncedWithBusProNet'))
->setParameter('syncedWithBusProNet', true)
;
}
}
public function getBookmarkQueryForTeamer(Teamer $teamer): Query