Limpieza de input de valor y filtro de datos a nivel Repo
This commit is contained in:
@ -117,4 +117,8 @@ WHERE venta_id = ?";
|
||||
->where('venta.id = ?');
|
||||
return $this->fetchOne($query, [$venta_id]);
|
||||
}
|
||||
public function filterData(array $data): array
|
||||
{
|
||||
return array_intersect_key($data, array_fill_keys(['valor', 'banco', 'tipo', 'identificador', 'fecha', 'uf', 'pagador', 'asociado'], 0));
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user