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 {
const itemShelvingSale = await models.ItemShelvingSale.findOne({
where: {saleFk}
where: {saleFk},
include: {relation: 'itemShelving'}
}, myOptions);
const itemShelving = await models.ItemShelving.findOne({
where: {
id: itemShelvingSale.ItemShelvingFk
}
});
const itemShelving = itemShelvingSale.itemShelving();
const quantity = itemShelving.visible + itemShelvingSale.quantity;
await itemShelving.updateAttributes(