By default, odoo V17 POS products shown are 100. i want limit to 10.
this code is working V13. not Working V17. anyone know how to make it working V17.
odoo.define("pos_search_limit.db", function(require) {
"use strict";
var PosDB = require("point_of_sale.DB");
PosDB.include({
limit: 10, // The maximum number of results returned by a search
});
});
thanks