- Introduced a new configuration file for purchase settings, including checkout and payment expiration times. - Added a migration to include a `reservation_status` column in the `compra_items` table, defaulting to 'active' and updating existing records based on purchase status. - Created a migration to add an `expires_at` timestamp to the `compras` table, updating it for existing records based on their status. - Scoped unique indexes in the `carritos` table to only active carts, adding virtual columns for active user and guest tokens. - Implemented a console command to expire overdue purchases and release stock reservations, scheduled to run every minute. - Added tests for Google token exchange and login functionality, ensuring proper cart handling and user authentication. - Updated purchase-related tests to reflect changes in item handling and customer data validation.
74 lines
2.3 KiB
PHP
74 lines
2.3 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();
|
|
|
|
$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),
|
|
'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, '.', '');
|
|
}
|
|
}
|