7837-testToMaster_2432 #2834
|
@ -82,7 +82,15 @@ module.exports = Self => {
|
|||
{
|
||||
arg: 'correctedFk',
|
||||
type: 'number',
|
||||
description: 'The corrected invoice',
|
||||
description: 'The rectified invoice',
|
||||
},
|
||||
{
|
||||
arg: 'correctingFk',
|
||||
type: 'Boolean',
|
||||
},
|
||||
{
|
||||
arg: 'supplierActivityFk',
|
||||
type: 'string',
|
||||
}
|
||||
],
|
||||
returns: {
|
||||
|
@ -111,6 +119,7 @@ module.exports = Self => {
|
|||
}
|
||||
|
||||
let correctings;
|
||||
let correcteds;
|
||||
if (args.correctedFk) {
|
||||
correctings = await models.InvoiceInCorrection.find({
|
||||
fields: ['correctingFk'],
|
||||
|
@ -118,6 +127,9 @@ module.exports = Self => {
|
|||
});
|
||||
}
|
||||
|
||||
if (args.correctingFk || args.correctingFk === false)
|
||||
correcteds = await models.InvoiceInCorrection.find();
|
||||
|
||||
const where = buildFilter(ctx.args, (param, value) => {
|
||||
switch (param) {
|
||||
case 'search':
|
||||
|
@ -141,8 +153,14 @@ module.exports = Self => {
|
|||
return {[`ii.${param}`]: value};
|
||||
case 'awbCode':
|
||||
return {'sub.code': value};
|
||||
case 'correctingFk':
|
||||
return args.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':
|
||||
return {'s.supplierActivityFk': value};
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue