- Updated tests for Accommodation, Entry, Food, Merchandise, and Sale controllers to use soft deletes for variants and ensure proper inventory counts. - Enhanced ticket generation logic to resolve validity from soft-deleted catalog sources. - Introduced a new TicketValidityResolver service to manage ticket validity based on event dates and variant definitions. - Removed unnecessary database assertions and improved the clarity of validity checks in tests. - Added comprehensive tests for the new TicketValidityResolver service, ensuring correct handling of event dates and multi-select options. - Cleaned up unused code and assertions in existing tests for better maintainability.
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Ticket\Services;
|
|
|
|
use App\Domains\Ticket\Models\Ticket;
|
|
|
|
class TicketPresentationResolver
|
|
{
|
|
/** Relaciones necesarias para calcular nombre y descripción sin consultas N+1. */
|
|
public const RELATIONS = [
|
|
'sourceCatalogItem',
|
|
'sourceVariant.catalogItem.itemAttributes.attribute.options',
|
|
'sourceVariant.definitions.itemAttribute.attribute.options',
|
|
'sourceVariant.eventDates',
|
|
'sourceVariant.eventDate',
|
|
];
|
|
|
|
public function name(Ticket $ticket): string
|
|
{
|
|
$ticket->loadMissing(self::RELATIONS);
|
|
$catalogItem = $ticket->sourceCatalogItem;
|
|
|
|
if ($catalogItem === null) {
|
|
return '';
|
|
}
|
|
|
|
$variant = $ticket->sourceVariant;
|
|
if ($variant === null) {
|
|
return $catalogItem->nombre;
|
|
}
|
|
|
|
$properties = $variant->selectionOptions()
|
|
->flatMap(function (array $option): array {
|
|
if (array_is_list($option)) {
|
|
return collect($option)
|
|
->pluck('label')
|
|
->filter(fn ($label): bool => is_string($label) && $label !== '')
|
|
->all();
|
|
}
|
|
|
|
$label = $option['label'] ?? null;
|
|
|
|
return is_string($label) && $label !== '' ? [$label] : [];
|
|
})
|
|
->values();
|
|
|
|
return $properties->isEmpty()
|
|
? $catalogItem->nombre
|
|
: $catalogItem->nombre.' ('.$properties->implode(', ').')';
|
|
}
|
|
|
|
public function description(Ticket $ticket): string
|
|
{
|
|
$ticket->loadMissing(self::RELATIONS);
|
|
|
|
return (string) ($ticket->sourceVariant?->getDescription()
|
|
?? $ticket->sourceCatalogItem?->descripcion
|
|
?? '');
|
|
}
|
|
}
|