fix: replace arg id by itemFk
gitea/salix/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Javier Segarra 2025-02-13 10:07:01 +01:00
parent 307c8d92df
commit 81e941db4e
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ module.exports = Self => {
http: {source: 'query'} http: {source: 'query'}
}, },
{ {
arg: 'id', arg: 'itemFk',
type: 'number', type: 'number',
description: 'The item id', description: 'The item id',
}, },
@ -80,7 +80,7 @@ module.exports = Self => {
Object.assign(myOptions, options); Object.assign(myOptions, options);
const filterKeyOrder = [ const filterKeyOrder = [
'id', 'force', 'days', 'longname', 'supplier', 'itemFk', 'force', 'days', 'longname', 'supplier',
'colour', 'size', 'originFk', 'colour', 'size', 'originFk',
'lack', 'warehouseFk' 'lack', 'warehouseFk'
]; ];