Pruebas y chequeos

This commit is contained in:
Juan Pablo Vial
2025-08-29 18:33:30 -04:00
parent eeee12e6e9
commit c220e7438b
5 changed files with 57 additions and 6 deletions

View File

@ -82,7 +82,9 @@ class Reservation extends Common\Ideal\Repository
$model = parent::load($data_row);
$this->fetchUnits($model, $data_row);
$this->fetchBroker($model, $data_row);
try {
$this->fetchBroker($model, $data_row);
} catch (Common\Implement\Exception\EmptyResult) {}
$this->fetchPromotions($model, $data_row);
return $model;
}