feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
310 changed files with 947 additions and 12772 deletions
Showing only changes of commit 32130f0bc2 - Show all commits

View File

@ -151,9 +151,8 @@ class Invoice extends AbstractEndPoint
protected function datosCuota(Model\Venta\Cuota $cuota): string
{
return json_encode([
'Numero' => $cuota->numero,
'valor' => $cuota->pago->valor,
'UF' => $cuota->pago->valor()
'numero' => $cuota->numero,
'monto_clp' => $cuota->pago->valor
]);
}
}

View File

@ -98,7 +98,7 @@ class Subscription extends AbstractEndPoint
{
$datos = [
'proyecto' => $venta->proyecto()->descripcion,
'propiedad' => $venta->propiedad()->summary()
'unidades' => $venta->propiedad()->summary()
];
return json_encode($datos);
}