Cuotas con detalle de UF y de Pies asociados

This commit is contained in:
Juan Pablo Vial
2024-03-26 13:21:47 -03:00
parent bef0a22758
commit c10f2e5912
7 changed files with 55 additions and 8 deletions

View File

@ -83,6 +83,10 @@ class Venta extends Service
{
return $this->ventaRepository->fetchByIdForList($venta_id);
}
public function getByPie(int $pie_id): Model\Venta
{
return $this->process($this->ventaRepository->fetchByPie($pie_id));
}
protected function process(Model\Venta $venta): Model\Venta
{