7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
1 changed files with 3 additions and 6 deletions
Showing only changes of commit 660e77be55 - Show all commits

View File

@ -28,14 +28,11 @@ module.exports = Self => {
try { try {
const itemShelvingSale = await models.ItemShelvingSale.findOne({ const itemShelvingSale = await models.ItemShelvingSale.findOne({
where: {saleFk} where: {saleFk},
include: {relation: 'itemShelving'}
}, myOptions); }, myOptions);
const itemShelving = await models.ItemShelving.findOne({ const itemShelving = itemShelvingSale.itemShelving();
where: {
id: itemShelvingSale.ItemShelvingFk
}
});
const quantity = itemShelving.visible + itemShelvingSale.quantity; const quantity = itemShelving.visible + itemShelvingSale.quantity;
await itemShelving.updateAttributes( await itemShelving.updateAttributes(