diff --git a/app/common/Implement/Log/Processor/Exception.php b/app/common/Implement/Log/Processor/Exception.php index 22507b9..1e2419c 100644 --- a/app/common/Implement/Log/Processor/Exception.php +++ b/app/common/Implement/Log/Processor/Exception.php @@ -58,7 +58,7 @@ class Exception implements ProcessorInterface 'message' => $exception->getMessage(), 'file' => $exception->getFile(), 'line' => $exception->getLine(), - 'trace' => $exception->getTraceAsString(), + 'trace' => $exception->getTrace(), ]; if ($exception->getPrevious() !== null) { $output['previous'] = $this->processException($exception->getPrevious()); diff --git a/app/src/Service/Venta/Precio/Import.php b/app/src/Service/Venta/Precio/Import.php index 02501b9..3577e6a 100644 --- a/app/src/Service/Venta/Precio/Import.php +++ b/app/src/Service/Venta/Precio/Import.php @@ -72,7 +72,7 @@ class Import extends Ideal\Service } $baseTitlesMap = [ 'proyecto' => [], - 'precio' => [], + 'precio' => ['valor'], 'unidad' => ['departamento'], 'tipo' => ['tipo unidad'], 'fecha' => [],