diff --git a/app/Service/Informe/Contabilidad/Resumen.php b/app/Service/Informe/Contabilidad/Resumen.php index 6d429c8..12b8bc1 100644 --- a/app/Service/Informe/Contabilidad/Resumen.php +++ b/app/Service/Informe/Contabilidad/Resumen.php @@ -99,7 +99,7 @@ class Resumen protected function getSubsidio(Venta $venta, DateTimeInterface $up_to) { if ($venta->subsidio == 0) { - return $this->defaultValueDate($up_to); + return [$this->defaultValueDate($up_to), $this->defaultValueDate($up_to)]; } return [$this->extractValueDate($venta->subsidio()->pago()), $this->extractValueDate($venta->subsidio()->subsidio())]; }