2020-05-16 20:53:35 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2020 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Repository\Parts;
|
|
|
|
|
|
|
|
use App\Entity\Parts\Part;
|
2020-06-13 22:19:03 +02:00
|
|
|
use App\Entity\Parts\Storelocation;
|
2020-05-16 20:53:35 +02:00
|
|
|
use App\Repository\AbstractPartsContainingRepository;
|
|
|
|
use Doctrine\ORM\QueryBuilder;
|
2022-08-14 19:32:53 +02:00
|
|
|
use InvalidArgumentException;
|
2020-05-16 20:53:35 +02:00
|
|
|
|
|
|
|
class StorelocationRepository extends AbstractPartsContainingRepository
|
|
|
|
{
|
2020-06-13 22:19:03 +02:00
|
|
|
/**
|
2020-08-21 21:36:22 +02:00
|
|
|
* @param Storelocation $element
|
2020-06-13 22:19:03 +02:00
|
|
|
*/
|
2020-05-16 20:53:35 +02:00
|
|
|
public function getParts(object $element, array $order_by = ['name' => 'ASC']): array
|
|
|
|
{
|
2020-08-21 21:36:22 +02:00
|
|
|
if (!$element instanceof Storelocation) {
|
2022-08-14 19:32:53 +02:00
|
|
|
throw new InvalidArgumentException('$element must be an Storelocation!');
|
2020-06-13 22:19:03 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 20:53:35 +02:00
|
|
|
$qb = new QueryBuilder($this->getEntityManager());
|
|
|
|
|
|
|
|
$qb->select('part')
|
|
|
|
->from(Part::class, 'part')
|
|
|
|
->leftJoin('part.partLots', 'lots')
|
|
|
|
->where('lots.storage_location = ?1')
|
|
|
|
->setParameter(1, $element);
|
|
|
|
|
|
|
|
foreach ($order_by as $field => $order) {
|
2020-08-21 21:36:22 +02:00
|
|
|
$qb->addOrderBy('part.'.$field, $order);
|
2020-05-16 20:53:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $qb->getQuery()->getResult();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPartsCount(object $element): int
|
|
|
|
{
|
2020-08-21 21:36:22 +02:00
|
|
|
if (!$element instanceof Storelocation) {
|
2022-08-14 19:32:53 +02:00
|
|
|
throw new InvalidArgumentException('$element must be an Storelocation!');
|
2020-06-13 22:19:03 +02:00
|
|
|
}
|
|
|
|
|
2020-05-16 20:53:35 +02:00
|
|
|
$qb = new QueryBuilder($this->getEntityManager());
|
|
|
|
|
|
|
|
$qb->select('COUNT(part.id)')
|
|
|
|
->from(Part::class, 'part')
|
|
|
|
->leftJoin('part.partLots', 'lots')
|
|
|
|
->where('lots.storage_location = ?1')
|
|
|
|
->setParameter(1, $element);
|
|
|
|
|
|
|
|
return (int) $qb->getQuery()->getSingleScalarResult();
|
|
|
|
}
|
2020-08-21 21:36:22 +02:00
|
|
|
}
|