Cuota abono a escritura
This commit is contained in:
19
app/src/Model/Venta/Abono/Cuota.php
Normal file
19
app/src/Model/Venta/Abono/Cuota.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
namespace Incoviba\Model\Venta\Abono;
|
||||
|
||||
use Incoviba\Common\Ideal;
|
||||
use Incoviba\Model;
|
||||
|
||||
class Cuota extends Ideal\Model
|
||||
{
|
||||
public Model\Venta $venta;
|
||||
public Model\Venta\Pago $pago;
|
||||
|
||||
public function jsonSerialize(): mixed
|
||||
{
|
||||
return array_merge(parent::jsonSerialize(), [
|
||||
'venta_id' => $this->venta->id,
|
||||
'pago' => $this->pago
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user