- 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.
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Ticket\Resources;
|
|
|
|
use App\Domains\Ticket\Models\Ticket;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
/** @mixin Ticket */
|
|
class TicketResource extends JsonResource
|
|
{
|
|
/** @return array<string, mixed> */
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'tenant_code' => $this->tenant_code,
|
|
'ticket' => $this->ticket,
|
|
'name' => $this->name,
|
|
'description' => $this->description,
|
|
'client' => $this->user?->nombre_apellido,
|
|
'category' => $this->sourceCatalogItem?->category?->nombre,
|
|
'source_catalog_item_id' => $this->source_catalog_item_id,
|
|
'source_variant_id' => $this->source_variant_id,
|
|
'starts_at' => $this->getEffectiveStartsAt(),
|
|
'expires_at' => $this->getEffectiveExpiresAt(),
|
|
'used_at' => $this->used_at,
|
|
'scanner_user_id' => $this->scanner_user_id,
|
|
'is_valid' => $this->is_valid,
|
|
'is_expired' => $this->is_expired,
|
|
'is_used' => $this->is_used,
|
|
];
|
|
}
|
|
}
|