buscarUsuario(ev: any) {
this.provider.buscarCliente().subscribe((cliente: Array<any>) => {
this.clientes = cliente;
let val = ev.target.value;
if(val == this.clientes){
val = this.clientes
}
})
}
getItems(ev: any) {
const val = ev.target.value;
if (val == '') {
this.clientes = null;
} else if(val && val.trim() != ''){
this.buscarUsuario(ev);
}