0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-04-04 21:45:20 +00:00

prevent invalid sql

This commit is contained in:
Kevin Papst 2021-11-16 21:16:36 +01:00
parent 28e8c91003
commit 82ab13afdf
2 changed files with 5 additions and 3 deletions

View file

@ -228,6 +228,8 @@ class TeamRepository extends EntityRepository
$qb->setParameter('teamIds', array_unique($ids));
}
$qb->andWhere($or);
if ($or->count() > 0) {
$qb->andWhere($or);
}
}
}

View file

@ -533,8 +533,8 @@ class TimesheetRepository extends EntityRepository
$or->add($qb->expr()->between('t.end', ':begin', ':end'));
$qb->select('t, p, a, c')
->from(Timesheet::class, 't')
->andWhere($qb->expr()->isNotNull('t.end'))
->from(Timesheet::class, 't')
->andWhere($qb->expr()->isNotNull('t.end'))
->andWhere($or)
->orderBy('t.begin', 'DESC')
->setParameter('begin', $begin)