2019-03-05 23:52:45 +01:00
|
|
|
<?php
|
2020-02-22 18:14:36 +01:00
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
2022-11-29 22:28:53 +01:00
|
|
|
* Copyright (C) 2019 - 2022 Jan Böhmer (https://github.com/jbtronics)
|
2020-02-22 18:14:36 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-01-05 15:46:58 +01:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2019-03-05 23:52:45 +01:00
|
|
|
namespace App\DataTables;
|
|
|
|
|
2023-07-22 23:51:06 +02:00
|
|
|
use App\DataTables\Adapters\FetchResultsAtOnceORMAdapter;
|
2023-10-06 13:08:46 +02:00
|
|
|
use App\DataTables\Adapters\TwoStepORMAdapter;
|
2023-07-08 23:49:47 +02:00
|
|
|
use App\DataTables\Column\EnumColumn;
|
2023-10-08 21:07:22 +02:00
|
|
|
use App\DataTables\Helpers\ColumnSortHelper;
|
2023-07-29 16:42:27 +02:00
|
|
|
use App\Doctrine\Helpers\FieldHelper;
|
2023-07-08 23:49:47 +02:00
|
|
|
use App\Entity\Parts\ManufacturingStatus;
|
2023-07-22 23:51:06 +02:00
|
|
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
|
|
|
use Doctrine\ORM\Mapping\ClassMetadataInfo;
|
|
|
|
use Doctrine\ORM\Query;
|
2023-07-23 21:48:38 +02:00
|
|
|
use Doctrine\ORM\Tools\Pagination\Paginator;
|
2023-07-22 23:51:06 +02:00
|
|
|
use Omines\DataTablesBundle\Adapter\Doctrine\Event\ORMAdapterQueryEvent;
|
|
|
|
use Omines\DataTablesBundle\Adapter\Doctrine\ORMAdapterEvents;
|
2023-06-11 14:55:06 +02:00
|
|
|
use Symfony\Bundle\SecurityBundle\Security;
|
2023-09-04 22:57:40 +02:00
|
|
|
use App\Entity\Parts\StorageLocation;
|
2019-09-07 15:23:03 +02:00
|
|
|
use App\DataTables\Column\EntityColumn;
|
2020-05-22 22:31:19 +02:00
|
|
|
use App\DataTables\Column\IconLinkColumn;
|
2019-09-07 12:48:49 +02:00
|
|
|
use App\DataTables\Column\LocaleDateTimeColumn;
|
2019-11-10 19:43:55 +01:00
|
|
|
use App\DataTables\Column\MarkdownColumn;
|
2019-11-10 19:16:39 +01:00
|
|
|
use App\DataTables\Column\PartAttachmentsColumn;
|
2022-09-09 00:10:29 +02:00
|
|
|
use App\DataTables\Column\PrettyBoolColumn;
|
2022-12-17 01:19:52 +01:00
|
|
|
use App\DataTables\Column\RowClassColumn;
|
2022-09-10 01:26:09 +02:00
|
|
|
use App\DataTables\Column\SelectColumn;
|
2022-09-10 00:37:47 +02:00
|
|
|
use App\DataTables\Column\SIUnitNumberColumn;
|
2019-11-10 19:38:36 +01:00
|
|
|
use App\DataTables\Column\TagsColumn;
|
2022-08-15 01:01:27 +02:00
|
|
|
use App\DataTables\Filters\PartFilter;
|
2022-09-09 23:33:49 +02:00
|
|
|
use App\DataTables\Filters\PartSearchFilter;
|
2022-12-18 21:58:21 +01:00
|
|
|
use App\DataTables\Helpers\PartDataTableHelper;
|
2019-08-12 18:04:53 +02:00
|
|
|
use App\Entity\Parts\Part;
|
2022-09-04 03:37:54 +02:00
|
|
|
use App\Entity\Parts\PartLot;
|
2022-12-18 17:28:42 +01:00
|
|
|
use App\Services\Formatters\AmountFormatter;
|
2019-03-05 23:52:45 +01:00
|
|
|
use App\Services\EntityURLGenerator;
|
|
|
|
use Doctrine\ORM\QueryBuilder;
|
|
|
|
use Omines\DataTablesBundle\Adapter\Doctrine\ORM\SearchCriteriaProvider;
|
|
|
|
use Omines\DataTablesBundle\Column\TextColumn;
|
|
|
|
use Omines\DataTablesBundle\DataTable;
|
|
|
|
use Omines\DataTablesBundle\DataTableTypeInterface;
|
2020-03-08 13:05:53 +01:00
|
|
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
2019-09-06 18:25:24 +02:00
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
2019-03-05 23:52:45 +01:00
|
|
|
|
2020-01-05 22:49:00 +01:00
|
|
|
final class PartsDataTable implements DataTableTypeInterface
|
2019-03-05 23:52:45 +01:00
|
|
|
{
|
2023-10-08 21:07:22 +02:00
|
|
|
public function __construct(
|
|
|
|
private readonly EntityURLGenerator $urlGenerator,
|
|
|
|
private readonly TranslatorInterface $translator,
|
|
|
|
private readonly AmountFormatter $amountFormatter,
|
|
|
|
private readonly PartDataTableHelper $partDataTableHelper,
|
|
|
|
private readonly Security $security,
|
|
|
|
private readonly string $visible_columns,
|
|
|
|
private readonly ColumnSortHelper $csh,
|
|
|
|
) {
|
2019-03-05 23:52:45 +01:00
|
|
|
}
|
|
|
|
|
2020-03-15 13:56:31 +01:00
|
|
|
public function configureOptions(OptionsResolver $optionsResolver): void
|
2020-03-08 13:05:53 +01:00
|
|
|
{
|
|
|
|
$optionsResolver->setDefaults([
|
2022-09-09 23:33:49 +02:00
|
|
|
'filter' => null,
|
|
|
|
'search' => null
|
2020-03-15 13:56:31 +01:00
|
|
|
]);
|
2020-03-08 13:05:53 +01:00
|
|
|
|
2022-09-09 23:33:49 +02:00
|
|
|
$optionsResolver->setAllowedTypes('filter', [PartFilter::class, 'null']);
|
|
|
|
$optionsResolver->setAllowedTypes('search', [PartSearchFilter::class, 'null']);
|
2020-03-08 13:05:53 +01:00
|
|
|
}
|
|
|
|
|
2020-01-05 15:46:58 +01:00
|
|
|
public function configure(DataTable $dataTable, array $options): void
|
2019-03-05 23:52:45 +01:00
|
|
|
{
|
2020-03-08 13:05:53 +01:00
|
|
|
$resolver = new OptionsResolver();
|
|
|
|
$this->configureOptions($resolver);
|
|
|
|
$options = $resolver->resolve($options);
|
|
|
|
|
2023-10-08 21:07:22 +02:00
|
|
|
$this->csh
|
2022-12-17 01:19:52 +01:00
|
|
|
//Color the table rows depending on the review and favorite status
|
2023-10-08 21:07:22 +02:00
|
|
|
->add('row_color', RowClassColumn::class, [
|
2023-06-11 14:15:46 +02:00
|
|
|
'render' => function ($value, Part $context): string {
|
2022-12-17 01:19:52 +01:00
|
|
|
if ($context->isNeedsReview()) {
|
|
|
|
return 'table-secondary';
|
|
|
|
}
|
|
|
|
if ($context->isFavorite()) {
|
|
|
|
return 'table-info';
|
|
|
|
}
|
|
|
|
|
|
|
|
return ''; //Default coloring otherwise
|
|
|
|
},
|
2023-10-08 21:07:22 +02:00
|
|
|
], visibility_configurable: false)
|
|
|
|
->add('select', SelectColumn::class, visibility_configurable: false)
|
2019-10-03 14:53:50 +02:00
|
|
|
->add('picture', TextColumn::class, [
|
|
|
|
'label' => '',
|
2022-09-10 01:26:09 +02:00
|
|
|
'className' => 'no-colvis',
|
2023-06-11 14:15:46 +02:00
|
|
|
'render' => fn($value, Part $context) => $this->partDataTableHelper->renderPicture($context),
|
2023-10-08 21:07:22 +02:00
|
|
|
], visibility_configurable: false)
|
2019-09-06 18:25:24 +02:00
|
|
|
->add('name', TextColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.name'),
|
2023-06-11 14:15:46 +02:00
|
|
|
'render' => fn($value, Part $context) => $this->partDataTableHelper->renderName($context),
|
2019-09-06 18:25:24 +02:00
|
|
|
])
|
|
|
|
->add('id', TextColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.id'),
|
|
|
|
])
|
2022-12-04 02:28:47 +01:00
|
|
|
->add('ipn', TextColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.ipn'),
|
|
|
|
])
|
2019-11-10 19:43:55 +01:00
|
|
|
->add('description', MarkdownColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.description'),
|
2023-10-08 21:36:05 +02:00
|
|
|
])
|
|
|
|
->add('category', EntityColumn::class, [
|
2019-09-07 15:23:03 +02:00
|
|
|
'label' => $this->translator->trans('part.table.category'),
|
2019-09-08 16:56:05 +02:00
|
|
|
'property' => 'category',
|
2023-10-08 21:36:05 +02:00
|
|
|
])
|
|
|
|
->add('footprint', EntityColumn::class, [
|
2019-09-07 15:23:03 +02:00
|
|
|
'property' => 'footprint',
|
2019-11-09 00:47:20 +01:00
|
|
|
'label' => $this->translator->trans('part.table.footprint'),
|
2023-10-08 21:36:05 +02:00
|
|
|
])
|
|
|
|
->add('manufacturer', EntityColumn::class, [
|
2019-09-07 15:23:03 +02:00
|
|
|
'property' => 'manufacturer',
|
2019-11-09 00:47:20 +01:00
|
|
|
'label' => $this->translator->trans('part.table.manufacturer'),
|
2023-10-08 21:36:05 +02:00
|
|
|
])
|
|
|
|
->add('storelocation', TextColumn::class, [
|
2019-09-08 17:52:50 +02:00
|
|
|
'label' => $this->translator->trans('part.table.storeLocations'),
|
2023-04-23 23:38:59 +02:00
|
|
|
'orderField' => 'storelocations.name',
|
2023-11-19 22:13:25 +01:00
|
|
|
'render' => fn ($value, Part $context) => $this->partDataTableHelper->renderStorageLocations($context),
|
2023-10-08 21:36:05 +02:00
|
|
|
], alias: 'storage_location')
|
|
|
|
->add('amount', TextColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.amount'),
|
2023-11-19 22:13:25 +01:00
|
|
|
'render' => fn ($value, Part $context) => $this->partDataTableHelper->renderAmount($context),
|
2023-10-08 21:36:05 +02:00
|
|
|
'orderField' => 'amountSum'
|
|
|
|
])
|
2019-09-06 18:25:24 +02:00
|
|
|
->add('minamount', TextColumn::class, [
|
2019-09-07 13:12:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.minamount'),
|
2023-10-08 21:07:22 +02:00
|
|
|
'render' => fn($value, Part $context): string => htmlspecialchars($this->amountFormatter->format($value,
|
|
|
|
$context->getPartUnit())),
|
2023-10-08 21:36:05 +02:00
|
|
|
])
|
|
|
|
->add('partUnit', TextColumn::class, [
|
2019-09-07 13:12:24 +02:00
|
|
|
'field' => 'partUnit.name',
|
|
|
|
'label' => $this->translator->trans('part.table.partUnit'),
|
2023-10-08 21:36:05 +02:00
|
|
|
])
|
|
|
|
->add('addedDate', LocaleDateTimeColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.addedDate'),
|
|
|
|
])
|
2019-09-07 12:48:49 +02:00
|
|
|
->add('lastModified', LocaleDateTimeColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.lastModified'),
|
|
|
|
])
|
2022-09-09 00:10:29 +02:00
|
|
|
->add('needs_review', PrettyBoolColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.needsReview'),
|
|
|
|
])
|
2022-09-09 00:10:29 +02:00
|
|
|
->add('favorite', PrettyBoolColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.favorite'),
|
|
|
|
])
|
2023-07-08 23:49:47 +02:00
|
|
|
->add('manufacturing_status', EnumColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.manufacturingStatus'),
|
2023-07-08 23:49:47 +02:00
|
|
|
'class' => ManufacturingStatus::class,
|
2023-10-08 21:07:22 +02:00
|
|
|
'render' => function (?ManufacturingStatus $status, Part $context): string {
|
2023-07-08 23:49:47 +02:00
|
|
|
if (!$status) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->translator->trans($status->toTranslationKey());
|
2023-10-08 21:07:22 +02:00
|
|
|
},
|
2019-09-06 18:25:24 +02:00
|
|
|
])
|
|
|
|
->add('manufacturer_product_number', TextColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.mpn'),
|
|
|
|
])
|
2022-09-10 00:37:47 +02:00
|
|
|
->add('mass', SIUnitNumberColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.mass'),
|
2022-09-10 00:37:47 +02:00
|
|
|
'unit' => 'g'
|
2019-09-06 18:25:24 +02:00
|
|
|
])
|
2019-11-10 19:38:36 +01:00
|
|
|
->add('tags', TagsColumn::class, [
|
2019-09-06 18:25:24 +02:00
|
|
|
'label' => $this->translator->trans('part.table.tags'),
|
|
|
|
])
|
2019-11-10 19:16:39 +01:00
|
|
|
->add('attachments', PartAttachmentsColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.attachments'),
|
|
|
|
])
|
2020-05-22 22:31:19 +02:00
|
|
|
->add('edit', IconLinkColumn::class, [
|
|
|
|
'label' => $this->translator->trans('part.table.edit'),
|
2023-06-11 14:15:46 +02:00
|
|
|
'href' => fn($value, Part $context) => $this->urlGenerator->editURL($context),
|
|
|
|
'disabled' => fn($value, Part $context) => !$this->security->isGranted('edit', $context),
|
2020-05-22 22:31:19 +02:00
|
|
|
'title' => $this->translator->trans('part.table.edit.title'),
|
2023-10-08 21:07:22 +02:00
|
|
|
]);
|
2023-10-04 21:30:04 +02:00
|
|
|
|
2023-10-08 21:07:22 +02:00
|
|
|
//Apply the user configured order and visibility and add the columns to the table
|
2023-10-08 21:32:57 +02:00
|
|
|
$this->csh->applyVisibilityAndConfigureColumns($dataTable, $this->visible_columns,
|
|
|
|
"TABLE_PARTS_DEFAULT_COLUMNS");
|
2019-09-06 18:25:24 +02:00
|
|
|
|
2023-10-04 21:30:04 +02:00
|
|
|
$dataTable->addOrderBy('name')
|
2023-10-08 21:54:51 +02:00
|
|
|
->createAdapter(TwoStepORMAdapter::class, [
|
2023-07-23 21:48:38 +02:00
|
|
|
'filter_query' => $this->getFilterQuery(...),
|
|
|
|
'detail_query' => $this->getDetailQuery(...),
|
2019-03-05 23:52:45 +01:00
|
|
|
'entity' => Part::class,
|
2023-07-22 23:51:06 +02:00
|
|
|
'hydrate' => Query::HYDRATE_OBJECT,
|
2024-02-25 00:58:26 +01:00
|
|
|
//Use the simple total query, as we just want to get the total number of parts without any conditions
|
|
|
|
//For this the normal query would be pretty slow
|
|
|
|
'simple_total_query' => true,
|
2019-03-05 23:52:45 +01:00
|
|
|
'criteria' => [
|
2020-01-05 15:46:58 +01:00
|
|
|
function (QueryBuilder $builder) use ($options): void {
|
2019-09-05 22:27:18 +02:00
|
|
|
$this->buildCriteria($builder, $options);
|
|
|
|
},
|
2019-11-09 00:47:20 +01:00
|
|
|
new SearchCriteriaProvider(),
|
|
|
|
],
|
2019-03-05 23:52:45 +01:00
|
|
|
]);
|
2023-07-22 23:51:06 +02:00
|
|
|
}
|
|
|
|
|
2023-07-23 21:48:38 +02:00
|
|
|
|
|
|
|
private function getFilterQuery(QueryBuilder $builder): void
|
2023-07-22 23:51:06 +02:00
|
|
|
{
|
2023-07-23 21:48:38 +02:00
|
|
|
/* In the filter query we only select the IDs. The fetching of the full entities is done in the detail query.
|
|
|
|
* We only need to join the entities here, so we can filter by them.
|
|
|
|
* The filter conditions are added to this QB in the buildCriteria method.
|
|
|
|
*/
|
|
|
|
$builder
|
|
|
|
->select('part.id')
|
|
|
|
->addSelect('part.minamount AS HIDDEN minamount')
|
|
|
|
//Calculate amount sum using a subquery, so we can filter and sort by it
|
|
|
|
->addSelect(
|
|
|
|
'(
|
|
|
|
SELECT IFNULL(SUM(partLot.amount), 0.0)
|
2023-10-08 21:07:22 +02:00
|
|
|
FROM '.PartLot::class.' partLot
|
2023-07-23 21:48:38 +02:00
|
|
|
WHERE partLot.part = part.id
|
|
|
|
AND partLot.instock_unknown = false
|
|
|
|
AND (partLot.expiration_date IS NULL OR partLot.expiration_date > CURRENT_DATE())
|
|
|
|
) AS HIDDEN amountSum'
|
|
|
|
)
|
|
|
|
->from(Part::class, 'part')
|
|
|
|
->leftJoin('part.category', 'category')
|
|
|
|
->leftJoin('part.master_picture_attachment', 'master_picture_attachment')
|
|
|
|
->leftJoin('part.partLots', 'partLots')
|
|
|
|
->leftJoin('partLots.storage_location', 'storelocations')
|
|
|
|
->leftJoin('part.footprint', 'footprint')
|
|
|
|
->leftJoin('footprint.master_picture_attachment', 'footprint_attachment')
|
|
|
|
->leftJoin('part.manufacturer', 'manufacturer')
|
|
|
|
->leftJoin('part.orderdetails', 'orderdetails')
|
|
|
|
->leftJoin('orderdetails.supplier', 'suppliers')
|
|
|
|
->leftJoin('part.attachments', 'attachments')
|
|
|
|
->leftJoin('part.partUnit', 'partUnit')
|
|
|
|
->leftJoin('part.parameters', 'parameters')
|
|
|
|
|
|
|
|
//This must be the only group by, or the paginator will not work correctly
|
2023-10-08 21:07:22 +02:00
|
|
|
->addGroupBy('part.id');
|
2019-03-05 23:52:45 +01:00
|
|
|
}
|
2020-01-05 15:46:58 +01:00
|
|
|
|
2023-07-29 16:42:27 +02:00
|
|
|
private function getDetailQuery(QueryBuilder $builder, array $filter_results): void
|
2020-01-05 15:46:58 +01:00
|
|
|
{
|
2023-07-29 16:42:27 +02:00
|
|
|
$ids = array_map(fn($row) => $row['id'], $filter_results);
|
|
|
|
|
2023-07-23 21:48:38 +02:00
|
|
|
/*
|
|
|
|
* In this query we take the IDs which were filtered, paginated and sorted in the filter query, and fetch the
|
|
|
|
* full entities.
|
|
|
|
* We can do complex fetch joins, as we do not need to filter or sort here (which would kill the performance).
|
|
|
|
* The only condition should be for the IDs.
|
|
|
|
* It is important that elements are ordered the same way, as the IDs are passed, or ordering will be wrong.
|
|
|
|
*/
|
2023-07-22 23:51:06 +02:00
|
|
|
$builder
|
|
|
|
->select('part')
|
2023-07-23 21:48:38 +02:00
|
|
|
->addSelect('category')
|
2020-01-26 21:54:21 +01:00
|
|
|
->addSelect('footprint')
|
|
|
|
->addSelect('manufacturer')
|
|
|
|
->addSelect('partUnit')
|
|
|
|
->addSelect('master_picture_attachment')
|
|
|
|
->addSelect('footprint_attachment')
|
|
|
|
->addSelect('partLots')
|
|
|
|
->addSelect('orderdetails')
|
|
|
|
->addSelect('attachments')
|
2023-07-23 21:48:38 +02:00
|
|
|
->addSelect('storelocations')
|
2022-09-04 03:37:54 +02:00
|
|
|
//Calculate amount sum using a subquery, so we can filter and sort by it
|
|
|
|
->addSelect(
|
|
|
|
'(
|
|
|
|
SELECT IFNULL(SUM(partLot.amount), 0.0)
|
2023-10-08 21:07:22 +02:00
|
|
|
FROM '.PartLot::class.' partLot
|
2022-09-04 03:37:54 +02:00
|
|
|
WHERE partLot.part = part.id
|
|
|
|
AND partLot.instock_unknown = false
|
|
|
|
AND (partLot.expiration_date IS NULL OR partLot.expiration_date > CURRENT_DATE())
|
|
|
|
) AS HIDDEN amountSum'
|
|
|
|
)
|
2020-01-05 15:46:58 +01:00
|
|
|
->from(Part::class, 'part')
|
|
|
|
->leftJoin('part.category', 'category')
|
|
|
|
->leftJoin('part.master_picture_attachment', 'master_picture_attachment')
|
|
|
|
->leftJoin('part.partLots', 'partLots')
|
|
|
|
->leftJoin('partLots.storage_location', 'storelocations')
|
|
|
|
->leftJoin('part.footprint', 'footprint')
|
|
|
|
->leftJoin('footprint.master_picture_attachment', 'footprint_attachment')
|
|
|
|
->leftJoin('part.manufacturer', 'manufacturer')
|
|
|
|
->leftJoin('part.orderdetails', 'orderdetails')
|
2020-03-08 13:05:53 +01:00
|
|
|
->leftJoin('orderdetails.supplier', 'suppliers')
|
2020-01-05 15:46:58 +01:00
|
|
|
->leftJoin('part.attachments', 'attachments')
|
2022-08-29 01:12:36 +02:00
|
|
|
->leftJoin('part.partUnit', 'partUnit')
|
2022-09-08 00:31:18 +02:00
|
|
|
->leftJoin('part.parameters', 'parameters')
|
2023-07-23 21:48:38 +02:00
|
|
|
->where('part.id IN (:ids)')
|
|
|
|
->setParameter('ids', $ids)
|
|
|
|
|
2022-11-28 23:43:30 +01:00
|
|
|
//We have to group by all elements, or only the first sub elements of an association is fetched! (caused issue #190)
|
2023-07-23 21:48:38 +02:00
|
|
|
->addGroupBy('part')
|
|
|
|
->addGroupBy('partLots')
|
2022-11-28 23:43:30 +01:00
|
|
|
->addGroupBy('category')
|
|
|
|
->addGroupBy('master_picture_attachment')
|
|
|
|
->addGroupBy('storelocations')
|
|
|
|
->addGroupBy('footprint')
|
|
|
|
->addGroupBy('footprint_attachment')
|
|
|
|
->addGroupBy('manufacturer')
|
|
|
|
->addGroupBy('orderdetails')
|
|
|
|
->addGroupBy('suppliers')
|
|
|
|
->addGroupBy('attachments')
|
|
|
|
->addGroupBy('partUnit')
|
2023-10-08 21:07:22 +02:00
|
|
|
->addGroupBy('parameters');
|
2023-07-29 16:42:27 +02:00
|
|
|
|
|
|
|
//Get the results in the same order as the IDs were passed
|
|
|
|
FieldHelper::addOrderByFieldParam($builder, 'part.id', 'ids');
|
2020-01-05 15:46:58 +01:00
|
|
|
}
|
|
|
|
|
2020-02-01 16:17:20 +01:00
|
|
|
private function buildCriteria(QueryBuilder $builder, array $options): void
|
2020-01-05 15:46:58 +01:00
|
|
|
{
|
2022-09-09 23:33:49 +02:00
|
|
|
//Apply the search criterias first
|
|
|
|
if ($options['search'] instanceof PartSearchFilter) {
|
|
|
|
$search = $options['search'];
|
|
|
|
$search->apply($builder);
|
|
|
|
}
|
|
|
|
|
2022-09-08 23:49:57 +02:00
|
|
|
//We do the most stuff here in the filter class
|
2022-09-09 23:33:49 +02:00
|
|
|
if ($options['filter'] instanceof PartFilter) {
|
2022-08-15 01:01:27 +02:00
|
|
|
$filter = $options['filter'];
|
|
|
|
$filter->apply($builder);
|
|
|
|
}
|
2020-01-05 15:46:58 +01:00
|
|
|
}
|
2019-03-20 23:16:07 +01:00
|
|
|
}
|