Editar cuota

This commit is contained in:
Juan Pablo Vial
2024-10-23 08:39:11 -03:00
parent fe6a01b2fb
commit 389e60980e
5 changed files with 233 additions and 4 deletions

View File

@ -43,7 +43,8 @@ class Pagos
$output = [
'input' => $body,
'pago_id' => $pago_id,
'pago' => null
'pago' => null,
'editado' => false
];
try {
$pago = $pagoRepository->fetchById($pago_id);
@ -52,6 +53,7 @@ class Pagos
$body['fecha'] = $fecha->format('Y-m-d');
}
$output['pago'] = $pagoRepository->edit($pago, $body);
$output['editado'] = true;
} catch (EmptyResult) {}
return $this->withJson($response, $output);
}