Implemented repository mapper, and venta show
This commit is contained in:
@ -20,6 +20,14 @@ class Propiedad extends Ideal\Model
|
||||
return array_filter($this->unidades, function(Unidad $unidad) {return $unidad->proyectoTipoUnidad->tipoUnidad->descripcion === 'bodega';});
|
||||
}
|
||||
|
||||
protected float $vendible;
|
||||
public function vendible(): float
|
||||
{
|
||||
return array_reduce($this->departamentos(), function(float $sum, Unidad $unidad) {
|
||||
return $sum + $unidad->proyectoTipoUnidad->vendible();
|
||||
}, 0);
|
||||
}
|
||||
|
||||
public function summary(): string
|
||||
{
|
||||
return implode(' - ', array_merge(
|
||||
|
Reference in New Issue
Block a user