feature/editar-bono-pie #24

Merged
aldarien merged 7 commits from feature/editar-bono-pie into develop 2025-04-11 13:34:41 -04:00
5 changed files with 130 additions and 30 deletions
Showing only changes of commit 336207b2a2 - Show all commits

View File

@ -85,4 +85,9 @@ class BonoPie extends Ideal\Repository
->where('venta.id = ?');
return $this->fetchOne($query, [$venta_id]);
}
public function filterData(array $data): array
{
return array_intersect_key($data, array_flip(['valor', 'pago']));
}
}