fix: new params
gitea/salix/pipeline/pr-test This commit looks good Details

This commit is contained in:
Javier Segarra 2025-01-27 13:30:29 +00:00
parent 72a1c2ca57
commit b003dff045
1 changed files with 8 additions and 2 deletions

View File

@ -43,6 +43,14 @@ module.exports = Self => {
arg: 'postcode', arg: 'postcode',
type: 'string', type: 'string',
}, },
{
arg: 'sageTransactionTypeFk',
type: 'number',
},
{
arg: 'sageTaxTypeFk',
type: 'number',
},
{ {
arg: 'provinceFk', arg: 'provinceFk',
type: 'number', type: 'number',
@ -92,8 +100,6 @@ module.exports = Self => {
case 'provinceFk': case 'provinceFk':
case 'email': case 'email':
case 'phone': case 'phone':
case 'sti.CodigoIva':
case 'sti.CodigoTransaccion':
param = `c.${param}`; param = `c.${param}`;
return {[param]: value}; return {[param]: value};
} }