funcion/pedido-ollas #47

Merged
rho merged 92 commits from funcion/pedido-ollas into master 2025-07-15 11:27:30 -03:00
Showing only changes of commit 2a2ea06875 - Show all commits

View file

@ -2,6 +2,7 @@
namespace App\Http\Resources;
use App\TipoPedido;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
@ -19,6 +20,7 @@ class SubpedidoResource extends JsonResource
foreach ($productos as $producto) {
$producto['pivot']['total'] = number_format($producto->pivot->cantidad * $producto->precio, 2);
}
$tipo = TipoPedido::find($this->tipo_pedido_id);
return [
'id' => $this->id,
'nombre' => $this->nombre,
@ -29,7 +31,8 @@ class SubpedidoResource extends JsonResource
'cantidad_transporte' => number_format($this->cantidadTransporte()),
'total_sin_devoluciones' => number_format($this->totalSinDevoluciones(),2),
'devoluciones_total' => number_format($this->devoluciones_total,2),
'devoluciones_notas' => $this->devoluciones_notas
'devoluciones_notas' => $this->devoluciones_notas,
'tipo' => ['id' => $tipo->id, 'nombre' => $tipo->nombre],
];
}
}