feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
189 changed files with 657 additions and 6807 deletions
Showing only changes of commit 2852816eae - Show all commits

View File

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

View File

@ -148,8 +148,8 @@ class Subscription extends AbstractEndPoint
protected function datosVenta(Venta $venta): array
{
return [
'proyecto' => $venta->proyecto()->descripcion,
'unidades' => $venta->propiedad()->summary()
'Proyecto' => $venta->proyecto()->descripcion,
'Unidades' => $venta->propiedad()->summary()
];
}
}