Ammends
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2021-08-05 13:44:31 +02:00
parent 1b9ca13391
commit eba39cc706
3 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@ module.exports = Self => {
await models.ItemMatchProperties.upsert({ await models.ItemMatchProperties.upsert({
itemFk: buy.itemFk, itemFk: buy.itemFk,
name: buy.description, name: buy.description,
company: buy.companyName, producer: buy.companyName,
size: buy.size size: buy.size
}, options); }, options);
} }

View File

@ -45,7 +45,7 @@ module.exports = Self => {
fields: ['itemFk'], fields: ['itemFk'],
where: { where: {
name: buy.description, name: buy.description,
company: buy.companyName, producer: buy.companyName,
size: buy.size size: buy.size
} }
}, myOptions); }, myOptions);

View File

@ -15,7 +15,7 @@
"name": { "name": {
"type": "string" "type": "string"
}, },
"company": { "producer": {
"type": "string" "type": "string"
}, },
"size": { "size": {