79 lines
2.6 KiB
PHP
79 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Purchase\Resources;
|
|
|
|
use App\Domains\Purchase\Models\Purchase;
|
|
use App\Domains\Purchase\Models\PurchaseItem;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
/**
|
|
* @mixin Purchase
|
|
*/
|
|
class PurchaseResource extends JsonResource
|
|
{
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
$items = $this->resource->relationLoaded('items')
|
|
? $this->resource->getRelation('items')
|
|
: collect();
|
|
$ticketsCount = array_key_exists('tickets_count', $this->resource->getAttributes())
|
|
? (int) $this->resource->getAttribute('tickets_count')
|
|
: null;
|
|
|
|
$subtotal = $items->isNotEmpty()
|
|
? $items->reduce(
|
|
fn (float $carry, PurchaseItem $item): float => $carry + $this->resolveItemSubtotal($item),
|
|
0.0,
|
|
)
|
|
: (float) ($this->total ?? 0);
|
|
|
|
$total = $items->isNotEmpty()
|
|
? $items->reduce(
|
|
fn (float $carry, PurchaseItem $item): float => $carry + $this->resolveItemTotal($item),
|
|
0.0,
|
|
)
|
|
: (float) ($this->total ?? 0);
|
|
|
|
return [
|
|
'id' => $this->id,
|
|
'cart_id' => $this->cart_id,
|
|
'tenant_codigo' => $this->tenant_codigo,
|
|
'user_id' => $this->user_id,
|
|
'created_at' => $this->created_at,
|
|
'status' => $this->status,
|
|
'payment_method' => $this->payment_method,
|
|
'expires_at' => $this->expires_at,
|
|
'dni' => $this->dni,
|
|
'transfer_payer_dni' => $this->transfer_payer_dni,
|
|
'telefono' => $this->telefono,
|
|
'nombre_apellido' => $this->nombre_apellido,
|
|
'email' => $this->email,
|
|
'items_source' => $items->isNotEmpty() ? 'purchase' : null,
|
|
'items' => PurchaseItemResource::collection($items),
|
|
'tickets_count' => $this->when($ticketsCount !== null, $ticketsCount),
|
|
'has_generated_tickets' => $this->when($ticketsCount !== null, $ticketsCount > 0),
|
|
'subtotal' => $this->formatMoney($subtotal),
|
|
'total' => $this->formatMoney($total),
|
|
];
|
|
}
|
|
|
|
protected function resolveItemSubtotal(PurchaseItem $item): float
|
|
{
|
|
return (float) $item->precio_unitario * $item->cantidad;
|
|
}
|
|
|
|
protected function resolveItemTotal(PurchaseItem $item): float
|
|
{
|
|
return (float) ($item->total ?? 0);
|
|
}
|
|
|
|
protected function formatMoney(float|int|string|null $amount): string
|
|
{
|
|
return number_format((float) ($amount ?? 0), 2, '.', '');
|
|
}
|
|
}
|