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

@@ -9,8 +9,9 @@
namespace App\Controller;
use App\Entity\Timesheet;
use App\Export\ExportItemInterface;
use App\Export\ServiceExport;
use App\Export\TooManyItemsExportException;
use App\Form\Toolbar\ExportToolbarForm;
use App\Repository\Query\ExportQuery;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Security;
@@ -45,6 +46,7 @@ class ExportController extends AbstractController
$query = $this->getDefaultQuery();
$showPreview = false;
$tooManyResults = false;
$maxItemsPreview = 500;
$entries = [];
@@ -56,25 +58,33 @@ class ExportController extends AbstractController
$byCustomer = [];
if ($form->isValid() && ($query->hasBookmark() || $request->query->has('performSearch'))) {
$showPreview = true;
$entries = $this->getEntries($query);
foreach ($entries as $entry) {
$cid = $entry->getProject()->getCustomer()->getId();
if (!isset($byCustomer[$cid])) {
$byCustomer[$cid] = [
'customer' => $entry->getProject()->getCustomer(),
'rate' => 0,
'internalRate' => 0,
'duration' => 0,
];
try {
$showPreview = true;
$entries = $this->getEntries($query);
foreach ($entries as $entry) {
$cid = $entry->getProject()->getCustomer()->getId();
if (!isset($byCustomer[$cid])) {
$byCustomer[$cid] = [
'customer' => $entry->getProject()->getCustomer(),
'rate' => 0,
'internalRate' => 0,
'duration' => 0,
];
}
$byCustomer[$cid]['rate'] += $entry->getRate();
$byCustomer[$cid]['internalRate'] += $entry->getInternalRate();
$byCustomer[$cid]['duration'] += $entry->getDuration();
}
$byCustomer[$cid]['rate'] += $entry->getRate();
$byCustomer[$cid]['internalRate'] += $entry->getInternalRate();
$byCustomer[$cid]['duration'] += $entry->getDuration();
} catch (TooManyItemsExportException $ex) {
$tooManyResults = true;
$showPreview = false;
$entries = [];
$this->logException($ex);
}
}
return $this->render('export/index.html.twig', [
'too_many' => $tooManyResults,
'by_customer' => $byCustomer,
'query' => $query,
'entries' => $entries,
@@ -136,7 +146,7 @@ class ExportController extends AbstractController
/**
* @param ExportQuery $query
* @return Timesheet[]
* @return ExportItemInterface[]
*/
protected function getEntries(ExportQuery $query): array
{