refactor: reduce customer fetch limit from 100 to 25 in partner list sync

This commit is contained in:
Suherdy Yacob 2026-06-13 23:04:22 +07:00
parent 0dfe27fadb
commit fce0369533

View File

@ -34,7 +34,7 @@ patch(PartnerList.prototype, {
"res.partner",
[["active", "=", true]],
this.pos.data.fields["res.partner"],
{ limit: 100, order: 'id desc' }
{ limit: 25, order: 'id desc' }
);
let addedCount = 0;