Personal I have a table where you can filter your data using filter, where I pass the filter information through an input:
<tr ng-dblclick="openUpdateCadProduto(produto)" ng-doubleclick ng-repeat="produto in listaCadProduto | limitTo:barLimit | filter:{codigo: filtro}">
<td>{{produto.codigo}}</td>
<td>{{produto.descricao}}</td>
<td>{{produto.preco}}</td>
<td>{{produto.tabUnidadeMedidaEntity.sigla}}</td>
<td>{{produto.codigoBarras}}</td>
</tr>
But I'm just filtering through the code, I'd like to know how to filter by description, price, and acronym as well