Display too draft periods without creator in periods of a person

This commit is contained in:
2023-04-20 14:54:36 +02:00
parent bef1d6b4a3
commit a59e84b029
3 changed files with 4 additions and 1 deletions

View File

@@ -174,7 +174,8 @@ final class AccompanyingPeriodACLAwareRepository implements AccompanyingPeriodAC
->andWhere(
$qb->expr()->orX(
$qb->expr()->neq('ap.step', ':draft'),
$qb->expr()->eq('ap.createdBy', ':creator')
$qb->expr()->orX($qb->expr()->eq('ap.createdBy', ':creator'),
$qb->expr()->isNull('ap.createdBy'))
)
)
->setParameter('draft', AccompanyingPeriod::STEP_DRAFT)