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:
parent
28e8c91003
commit
82ab13afdf
2 changed files with 5 additions and 3 deletions
src/Repository
|
@ -228,6 +228,8 @@ class TeamRepository extends EntityRepository
|
|||
$qb->setParameter('teamIds', array_unique($ids));
|
||||
}
|
||||
|
||||
$qb->andWhere($or);
|
||||
if ($or->count() > 0) {
|
||||
$qb->andWhere($or);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue