Reservation to Venta add form

This commit is contained in:
Juan Pablo Vial
2025-11-26 16:23:32 -03:00
parent 9ed918ee03
commit 423f8ddf4c
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ class Exception implements ProcessorInterface
'message' => $exception->getMessage(), 'message' => $exception->getMessage(),
'file' => $exception->getFile(), 'file' => $exception->getFile(),
'line' => $exception->getLine(), 'line' => $exception->getLine(),
'trace' => $exception->getTraceAsString(), 'trace' => $exception->getTrace(),
]; ];
if ($exception->getPrevious() !== null) { if ($exception->getPrevious() !== null) {
$output['previous'] = $this->processException($exception->getPrevious()); $output['previous'] = $this->processException($exception->getPrevious());

View File

@ -72,7 +72,7 @@ class Import extends Ideal\Service
} }
$baseTitlesMap = [ $baseTitlesMap = [
'proyecto' => [], 'proyecto' => [],
'precio' => [], 'precio' => ['valor'],
'unidad' => ['departamento'], 'unidad' => ['departamento'],
'tipo' => ['tipo unidad'], 'tipo' => ['tipo unidad'],
'fecha' => [], 'fecha' => [],