FIX: Precio Unidad no existe en venta y facturacion

This commit is contained in:
2023-12-13 13:28:19 -03:00
parent 94906eea8c
commit 1ba53c9e12
3 changed files with 7 additions and 7 deletions

View File

@ -187,7 +187,7 @@
$IPC->readjust($venta->proyecto()->terreno->valor, $venta->proyecto()->terreno->fecha, $venta->currentEstado()->fecha) : 0}},
uf: {{$UF->get($venta->currentEstado()->fecha)}},
unidades: JSON.parse('{!! json_encode(array_map(function(Incoviba\Model\Venta\PropiedadUnidad $unidad) use ($venta, $UF, $format) {
$precio = ($unidad->valor > 0) ? $unidad->valor : $unidad->precio($venta->currentEstado()->fecha)->valor;
$precio = ($unidad->valor > 0) ? $unidad->valor : ($unidad->precio($venta->currentEstado()->fecha) ? $unidad->precio($venta->currentEstado()->fecha)->valor : 0);
return [
'id' => $unidad->id,
'pid' => $unidad->pu_id,