Cuota abono en venta
This commit is contained in:
@ -11,6 +11,7 @@ class FormaPago implements JsonSerializable
|
||||
public ?Subsidio $subsidio = null;
|
||||
public ?Credito $credito = null;
|
||||
public ?Pago $devolucion = null;
|
||||
public ?array $cuotasAbono = null;
|
||||
|
||||
public function anticipo(string $moneda = Pago::UF): float
|
||||
{
|
||||
@ -72,7 +73,8 @@ class FormaPago implements JsonSerializable
|
||||
'bono_pie' => $this->bonoPie ?? null,
|
||||
'subsidio' => $this->subsidio ?? null,
|
||||
'credito' => $this->credito ?? null,
|
||||
'devolucion' => $this->devolucion ?? null
|
||||
'devolucion' => $this->devolucion ?? null,
|
||||
'cuotas_abono' => $this->cuotasAbono ?? []
|
||||
];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user