Reservation to Venta add form
This commit is contained in:
@ -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());
|
||||||
|
|||||||
@ -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' => [],
|
||||||
|
|||||||
Reference in New Issue
Block a user