diff --git a/app/src/Service/Venta/Reservation.php b/app/src/Service/Venta/Reservation.php index 59a0ded..a0f0eee 100644 --- a/app/src/Service/Venta/Reservation.php +++ b/app/src/Service/Venta/Reservation.php @@ -254,6 +254,9 @@ class Reservation extends Ideal\Service\API foreach ($model->units as &$unit) { $unit->unit = $this->unitService->getById($unit->unit->id); } + foreach ($model->promotions as &$promotion) { + $promotion = $this->promotionService->getById($promotion->id); + } $model->buyer = $this->personaService->getById($model->buyer->rut); return $model; }