feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
242 changed files with 764 additions and 7945 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);
}