hotfix_errorEliminarTicket #1626

Merged
vicent merged 2 commits from hotfix_errorEliminarTicket into master 2023-06-20 09:40:00 +00:00
1 changed files with 7 additions and 9 deletions

View File

@ -81,7 +81,6 @@ module.exports = Self => {
throw new UserError('You must delete all the buy requests first'); throw new UserError('You must delete all the buy requests first');
// removes item shelvings // removes item shelvings
if (hasItemShelvingSales && isSalesAssistant) {
const promises = []; const promises = [];
Outdated
Review

Quitar

Quitar
for (let sale of sales) { for (let sale of sales) {
if (sale.itemShelvingSale()) { if (sale.itemShelvingSale()) {
@ -91,7 +90,6 @@ module.exports = Self => {
} }
} }
await Promise.all(promises); await Promise.all(promises);
}
// Remove ticket greuges // Remove ticket greuges
const ticketGreuges = await models.Greuge.find({where: {ticketFk: id}}, myOptions); const ticketGreuges = await models.Greuge.find({where: {ticketFk: id}}, myOptions);