Ventas->Listado->Ventas

This commit is contained in:
Juan Pablo Vial
2023-07-28 16:22:20 -04:00
parent 38383f5295
commit ef30ae67d2
52 changed files with 1496 additions and 17 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace Incoviba\Service;
use Incoviba\Repository;
class Proyecto
{
public function __construct(protected Repository\Proyecto $proyectoRepository) {}
public function getVendibles(): array
{
return $this->proyectoRepository->fetchAllActive();
}
}

22
app/src/Service/Venta.php Normal file
View File

@ -0,0 +1,22 @@
<?php
namespace Incoviba\Service;
use Incoviba\Repository;
class Venta
{
public function __construct(
protected Repository\Venta $ventaRepository,
protected Repository\Venta\EstadoVenta $estadoVentaRepository
) {}
public function getByProyecto(int $proyecto_id): array
{
$ventas = $this->ventaRepository->fetchByProyecto($proyecto_id);
foreach ($ventas as &$venta) {
$venta->estados = $this->estadoVentaRepository->fetchByVenta($venta->id);
$venta->currentEstado = $this->estadoVentaRepository->fetchCurrentByVenta($venta->id);
}
return $ventas;
}
}

View File

@ -2,13 +2,17 @@
namespace Incoviba\Service\Ventas;
use Incoviba\Repository;
use Incoviba\Model;
class Cierre
{
public function __construct(
protected Repository\Venta\Cierre $cierreRepository,
protected Repository\Venta\EstadoCierre $estadoCierreRepository,
protected Repository\Venta\Unidad $unidadRepository) {}
protected Repository\Venta\Unidad $unidadRepository,
protected Repository\Venta\ValorCierre $valorCierreRepository,
protected Repository\Venta\Precio $precioRepository
) {}
public function getByProyecto(int $proyecto_id): array
{
@ -20,4 +24,16 @@ class Cierre
}
return $cierres;
}
public function getById(int $cierre_id): Model\Venta\Cierre
{
$cierre = $this->cierreRepository->fetchById($cierre_id);
$cierre->estados = $this->estadoCierreRepository->fetchByCierre($cierre_id);
$cierre->current = $this->estadoCierreRepository->fetchCurrentByCierre($cierre_id);
$cierre->unidades = $this->unidadRepository->fetchByCierre($cierre_id);
foreach ($cierre->unidades as &$unidad) {
$unidad->currentPrecio = $this->precioRepository->fetchByUnidadAndDate($unidad->id, $cierre->dateTime->format('Y-m-d'));
}
$cierre->valoresCierre = $this->valorCierreRepository->fetchByCierre($cierre_id);
return $cierre;
}
}

View File

@ -2,6 +2,7 @@
namespace Incoviba\Service\Ventas;
use Incoviba\Repository;
use Incoviba\Model;
class Precio
{
@ -16,4 +17,11 @@ class Precio
}
return $precios;
}
public function getByUnidad(int $unidad_id): Model\Venta\Precio
{
$precio = $this->precioRepository->fetchByUnidad($unidad_id);
$precio->estados = $this->estadoPrecioRepository->fetchByPrecio($precio->id);
$precio->current = $this->estadoPrecioRepository->fetchCurrentByPrecio($precio->id);
return $precio;
}
}