There is a field product_id
in sale.order.line
model that is a Many2One field. There are a ton of product data inside the database. Right now, when a user fills in some characters, it will suggest some records filtered by the given characters. However, it is limited to only 7 records with a search more option underneath it.
My question is how to customize it so that it will return any number of records? (I will fine-tune later to come up with the number of satisfied limit)
I have tried messing with Autocomplete widget and FieldMany2One in the javascript files, but to no avail.