refs #5528 fix: editar compras (seleccionar todas), cuando aplicas un filtro
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Vicent Llopis 2023-06-13 10:26:12 +02:00
parent 983081a08e
commit 72b779f5c0
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ module.exports = Self => {
value[field] = newValue; value[field] = newValue;
if (filter) { if (filter) {
ctx.args.filter = {where: filter, limit: null}; ctx.args = {where: filter, limit: null};
lines = await models.Buy.latestBuysFilter(ctx, null, myOptions); lines = await models.Buy.latestBuysFilter(ctx, null, myOptions);
} }