#6900 rectificative filter #2845

Merged
jorgep merged 9 commits from 6900-fineTunningInvoiceIn into dev 2024-08-09 10:32:14 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit afc5615140 - Show all commits

View File

@ -154,9 +154,10 @@ module.exports = Self => {
case 'awbCode':
return {'sub.code': value};
case 'correctingFk':
if (!correcteds.length && !args.correctingFk) return;
return args.correctingFk
Review

Si no pongo esto forma un where vacío.

Si no pongo esto forma un where vacío.
? {'ii.id': {inq: correcteds.map(x => x.correctingFk)}}
: {'ii.id': {nin: correcteds.map(x => x.correctingFk)}};
? {['ii.id']: {inq: correcteds.map(x => x.correctingFk)}}
: {['ii.id']: {nin: correcteds.map(x => x.correctingFk)}};
case 'correctedFk':
return {'ii.id': {inq: correctings.map(x => x.correctingFk)}};
case 'supplierActivityFk':