feat: refactor staffing status assignment and filtering
This commit is contained in:
@@ -26,6 +26,9 @@ class DeleteController extends AbstractController
|
||||
$this->entityManager->remove($application);
|
||||
$this->entityManager->flush();
|
||||
|
||||
$application->getAssignment()->updateStaffingStatus();
|
||||
$this->entityManager->flush();
|
||||
|
||||
$this->addFlash('success', 'Die Bewerbung wurde gelöscht');
|
||||
$this->logger->info('Delete application', [
|
||||
'destination' => (string) $application->getAssignment()->getDestination(),
|
||||
|
||||
@@ -39,6 +39,10 @@ class DisposeController extends AbstractController
|
||||
$this->entityManager->remove($application);
|
||||
$this->entityManager->flush();
|
||||
|
||||
// Update staffing status of related assignment
|
||||
$disposition->getAssignment()->updateStaffingStatus();
|
||||
$this->entityManager->flush();
|
||||
|
||||
$this->eventDispatcher->dispatch(new DispositionCreatedEvent($disposition), DispositionCreatedEvent::NAME);
|
||||
|
||||
$this->addFlash('success', 'Teamer:in wurde eingeteilt');
|
||||
|
||||
@@ -54,6 +54,10 @@ class DeleteController extends AbstractController
|
||||
$this->entityManager->remove($disposition);
|
||||
$this->entityManager->flush();
|
||||
|
||||
// Update staffing status of related assignment
|
||||
$disposition->getAssignment()->updateStaffingStatus();
|
||||
$this->entityManager->flush();
|
||||
|
||||
return new HxRedirectResponse($this->generateUrl('app_administrative_assignment_detail', [
|
||||
'uuid' => $disposition->getAssignment()->getUuid(),
|
||||
]));
|
||||
|
||||
@@ -36,7 +36,6 @@ class IndexController extends AbstractController
|
||||
$request->query->getInt('page', 1),
|
||||
10,
|
||||
[
|
||||
'wrap-queries' => true, // Required for query with 'having' clause
|
||||
'defaultSortFieldName' => 'destination.dateFrom',
|
||||
'defaultSortDirection' => 'desc',
|
||||
]
|
||||
|
||||
@@ -46,6 +46,9 @@ class CheckController extends AbstractController
|
||||
switch ($formData->getStatus()) {
|
||||
case Upload::STATUS_CHECKED:
|
||||
$this->confirmDocument($document, 'confirm_contract', Upload::STATUS_CHECKED, $formData);
|
||||
// Contract confirmed: Update staffing status of related assignment
|
||||
$document->getDisposition()->getAssignment()->updateStaffingStatus();
|
||||
$this->entityManager->flush();
|
||||
break;
|
||||
case Upload::STATUS_PAID:
|
||||
$this->confirmDocument($document, 'confirm_invoice', Upload::STATUS_PAID, $formData);
|
||||
|
||||
@@ -39,6 +39,10 @@ class CreateController extends AbstractController
|
||||
$this->entityManager->persist($application);
|
||||
$this->entityManager->flush();
|
||||
|
||||
// Update staffing status of related assignment
|
||||
$assignment->updateStaffingStatus();
|
||||
$this->entityManager->flush();
|
||||
|
||||
$this->addFlash('success', 'Deine Bewerbung wurde entgegengenommen');
|
||||
$this->logger->info('Create application', [
|
||||
'teamer_id' => $teamer->getId(),
|
||||
|
||||
@@ -37,6 +37,10 @@ class WithdrawController extends AbstractController
|
||||
$this->entityManager->remove($application);
|
||||
$this->entityManager->flush();
|
||||
|
||||
// Update staffing status of related assignment
|
||||
$assignment->updateStaffingStatus();
|
||||
$this->entityManager->flush();
|
||||
|
||||
$this->logger->info('Withdraw application', [
|
||||
'teamer_id' => $teamer->getId(),
|
||||
'teamer_name' => (string) $teamer,
|
||||
|
||||
+30
-19
@@ -95,10 +95,14 @@ class Assignment implements BlameableEntityInterface, TimestampableEntityInterfa
|
||||
#[ORM\Column(length: 64)]
|
||||
private ?string $status;
|
||||
|
||||
#[ORM\Column(length: 64)]
|
||||
private ?string $staffingStatus;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->uuid = Uuid::v4();
|
||||
$this->status = static::STATUS_DRAFT;
|
||||
$this->staffingStatus = static::STATUS_UNSTAFFED;
|
||||
$this->fees = new ArrayCollection();
|
||||
$this->applications = new ArrayCollection();
|
||||
$this->dispositions = new ArrayCollection();
|
||||
@@ -129,6 +133,27 @@ class Assignment implements BlameableEntityInterface, TimestampableEntityInterfa
|
||||
return $instance;
|
||||
}
|
||||
|
||||
public function updateStaffingStatus(): void
|
||||
{
|
||||
$confirmedDispositions = $this->getConfirmedDispositions();
|
||||
|
||||
if ($this->availableDispositions === $confirmedDispositions->count()) {
|
||||
$this->setStaffingStatus(Assignment::STATUS_STAFFED);
|
||||
} elseif (
|
||||
$this->availableDispositions > $confirmedDispositions->count()
|
||||
&& 0 < $confirmedDispositions->count()
|
||||
) {
|
||||
$this->setStaffingStatus(Assignment::STATUS_PARTLY_STAFFED);
|
||||
} elseif (
|
||||
$this->availableDispositions > $this->dispositions->count()
|
||||
&& 0 < $this->applications->count()
|
||||
) {
|
||||
$this->setStaffingStatus(Assignment::STATUS_STAFFING);
|
||||
} else {
|
||||
$this->setStaffingStatus(Assignment::STATUS_UNSTAFFED);
|
||||
}
|
||||
}
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
return $this->id;
|
||||
@@ -488,29 +513,15 @@ class Assignment implements BlameableEntityInterface, TimestampableEntityInterfa
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isStaffed(): bool
|
||||
public function getStaffingStatus(): ?string
|
||||
{
|
||||
$confirmedDispositions = $this->getConfirmedDispositions();
|
||||
|
||||
return $this->availableDispositions === $confirmedDispositions->count();
|
||||
return $this->staffingStatus;
|
||||
}
|
||||
|
||||
public function isUnstaffed(): bool
|
||||
public function setStaffingStatus(?string $staffingStatus): static
|
||||
{
|
||||
return 0 === $this->dispositions->count();
|
||||
}
|
||||
$this->staffingStatus = $staffingStatus;
|
||||
|
||||
public function isPartlyStaffed(): bool
|
||||
{
|
||||
$confirmedDispositions = $this->getConfirmedDispositions();
|
||||
|
||||
return $this->availableDispositions > $confirmedDispositions->count()
|
||||
&& 0 < $confirmedDispositions->count();
|
||||
}
|
||||
|
||||
public function isStaffing(): bool
|
||||
{
|
||||
return $this->availableDispositions > $this->dispositions->count()
|
||||
&& 0 < $this->applications->count();
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ trait SoftDeletableEntity
|
||||
#[ORM\Column(nullable: true)]
|
||||
private ?\DateTimeImmutable $deletedAt = null;
|
||||
|
||||
public function getDeletedAt(): \DateTimeImmutable
|
||||
public function getDeletedAt(): ?\DateTimeImmutable
|
||||
{
|
||||
return $this->deletedAt;
|
||||
}
|
||||
|
||||
@@ -65,10 +65,10 @@ class AssignmentFilterType extends AbstractType
|
||||
;
|
||||
|
||||
if ($this->security->isGranted('ROLE_ADMINISTRATIVE')) {
|
||||
$builder->add('status', ChoiceType::class, [
|
||||
$builder->add('status', MultiselectType::class, [
|
||||
'label' => 'Status',
|
||||
'required' => false,
|
||||
'placeholder' => 'nicht filtern',
|
||||
'empty_label' => 'nicht filtern',
|
||||
'choices' => [
|
||||
'voll besetzt' => Assignment::STATUS_STAFFED,
|
||||
'teilweise besetzt' => Assignment::STATUS_PARTLY_STAFFED,
|
||||
|
||||
@@ -17,7 +17,7 @@ class AssignmentFilterDto extends AbstractFilterDto
|
||||
protected ?JobProfile $jobProfile = null;
|
||||
protected ?string $hotel = null;
|
||||
protected ?int $duration = null;
|
||||
protected ?string $status = null;
|
||||
protected array $status = [];
|
||||
protected bool $includePast = false;
|
||||
|
||||
public function getDateFrom(): ?\DateTimeImmutable
|
||||
@@ -80,12 +80,12 @@ class AssignmentFilterDto extends AbstractFilterDto
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getStatus(): ?string
|
||||
public function getStatus(): array
|
||||
{
|
||||
return $this->status;
|
||||
}
|
||||
|
||||
public function setStatus(?string $status): static
|
||||
public function setStatus(array $status): static
|
||||
{
|
||||
$this->status = $status;
|
||||
|
||||
|
||||
@@ -40,7 +40,6 @@ class AssignmentRepository extends ServiceEntityRepository
|
||||
->leftJoin('assignment.applications', 'application')
|
||||
->leftJoin('assignment.dispositions', 'disposition')
|
||||
->leftJoin('disposition.teamer', 'teamer')
|
||||
->groupBy('assignment')
|
||||
;
|
||||
|
||||
$this->applyFilterSettings($filterDto, $qb);
|
||||
@@ -117,27 +116,11 @@ class AssignmentRepository extends ServiceEntityRepository
|
||||
;
|
||||
}
|
||||
|
||||
if (null !== $status = $filterDto->getStatus()) {
|
||||
switch ($status) {
|
||||
case Assignment::STATUS_STAFFED:
|
||||
$qb->having('assignment.availableDispositions = COUNT(disposition.id)');
|
||||
break;
|
||||
case Assignment::STATUS_PARTLY_STAFFED:
|
||||
$qb
|
||||
->having('COUNT(disposition.id) > 0')
|
||||
->andHaving('assignment.availableDispositions > COUNT(disposition.id)')
|
||||
;
|
||||
break;
|
||||
case Assignment::STATUS_STAFFING:
|
||||
$qb
|
||||
->having('COUNT(disposition.id) = 0')
|
||||
->andHaving('COUNT(application.id) > 0')
|
||||
;
|
||||
break;
|
||||
case Assignment::STATUS_UNSTAFFED:
|
||||
$qb->having('COUNT(disposition.id) = 0');
|
||||
break;
|
||||
}
|
||||
if (0 < count($filterDto->getStatus())) {
|
||||
$qb
|
||||
->andWhere($qb->expr()->in('assignment.staffingStatus', ':status'))
|
||||
->setParameter('status', $filterDto->getStatus())
|
||||
;
|
||||
}
|
||||
|
||||
if (null !== $dateFrom = $filterDto->getDateFrom()) {
|
||||
|
||||
Reference in New Issue
Block a user