configurable print export (#2657)

This commit is contained in:
Kevin Papst
2021-07-13 10:11:20 +02:00
committed by GitHub
parent 7661d43327
commit 27cea996c0
21 changed files with 571 additions and 228 deletions

View File

@@ -962,6 +962,10 @@ class TimesheetRepository extends EntityRepository
$qb->leftJoin('t.activity', 'a');
}
if ($query->getMaxResults() !== null) {
$qb->setMaxResults($query->getMaxResults());
}
return $qb;
}