Show Proyecto

This commit is contained in:
2023-10-20 19:03:29 -03:00
parent 4734417fe2
commit b4742a501e
16 changed files with 644 additions and 48 deletions

View File

@ -1,6 +1,7 @@
<?php
namespace Incoviba\Model;
use Incoviba\Common\Alias\Model;
use Incoviba\Common\Ideal;
class Proyecto extends Ideal\Model
@ -15,6 +16,9 @@ class Proyecto extends Ideal\Model
public int $subterraneos;
protected Proyecto\Etapa $etapa;
protected array $estados;
protected Proyecto\EstadoProyecto $currentEstado;
public function inmobiliaria(): Inmobiliaria
{
if (!isset($this->inmobiliaria)) {
@ -29,6 +33,20 @@ class Proyecto extends Ideal\Model
}
return $this->direccion;
}
public function estados(): array
{
if (!isset($this->estados)) {
$this->estados = $this->runFactory('estados');
}
return $this->estados;
}
public function currentEstado(): Proyecto\EstadoProyecto
{
if (!isset($this->currentEstado)) {
$this->currentEstado = $this->runFactory('currentEstado');
}
return $this->currentEstado;
}
public function jsonSerialize(): mixed
{