Se agrega el boton de terraza #7

Merged
aldarien merged 2 commits from feature/agregar-terraza-con-venta into develop 2024-12-30 20:48:55 -03:00
Showing only changes of commit ec36c4a7a3 - Show all commits

View File

@ -1,14 +1,14 @@
<?php
namespace Incoviba\Controller\Ventas;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
use DateTimeImmutable;
use Incoviba\Common\Alias\View;
use Incoviba\Common\Implement\Exception\EmptyResult;
use Incoviba\Model;
use Incoviba\Repository;
use Incoviba\Service;
use Psr\Http\Message\ResponseInterface;
use Psr\Http\Message\ServerRequestInterface;
class Cuotas
{
@ -100,7 +100,7 @@ class Cuotas
'fecha' => $body["fecha{$i}"],
'banco' => (int) $body["banco{$i}"],
'identificador' => $body["identificador{$i}"],
'valor' => $valorService->clean($body["valor{$i}"]),
'valor' => $valorService->clean(str_replace('.', '', $body["valor{$i}"])),
'numero' => $i + 1,
];
$pieService->addCuota($data);