This commit is contained in:
Joan Sanchez 2021-05-18 10:05:13 +02:00
parent 6ec28cbc86
commit b87e79b9d3
1 changed files with 3 additions and 12 deletions

View File

@ -21,22 +21,13 @@ module.exports = Self => {
Self.deleteOrders = async(deletes, options) => { Self.deleteOrders = async(deletes, options) => {
const models = Self.app.models; const models = Self.app.models;
let tx;
let myOptions = {}; let myOptions = {};
if (typeof options == 'object') if (typeof options == 'object')
Object.assign(myOptions, options); Object.assign(myOptions, options);
try { return models.Order.destroyAll({
const deleted = models.Order.destroyAll({
id: {inq: deletes} id: {inq: deletes}
}, myOptions); }, myOptions);
if (tx) await tx.commit();
return deleted;
} catch (e) {
if (tx) await tx.rollback();
throw e;
}
}; };
}; };