refactor: refs #6824 Throw for no delete itemShelving with itemShelvingSale #3057
|
@ -34,6 +34,11 @@ module.exports = Self => {
|
||||||
try {
|
try {
|
||||||
const promises = [];
|
const promises = [];
|
||||||
for (let itemShelvingId of itemShelvingIds) {
|
for (let itemShelvingId of itemShelvingIds) {
|
||||||
|
const itemShelvingSaleToDelete = models.ItemShelvingSale.destroyAll({
|
||||||
|
|||||||
|
itemShelvingFk: itemShelvingId
|
||||||
|
}, myOptions);
|
||||||
|
promises.push(itemShelvingSaleToDelete);
|
||||||
|
|
||||||
const itemShelvingToDelete = models.ItemShelving.destroyById(itemShelvingId, myOptions);
|
const itemShelvingToDelete = models.ItemShelving.destroyById(itemShelvingId, myOptions);
|
||||||
promises.push(itemShelvingToDelete);
|
promises.push(itemShelvingToDelete);
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ describe('ItemShelving deleteItemShelvings()', () => {
|
||||||
const itemShelvingIds = [1, 2];
|
const itemShelvingIds = [1, 2];
|
||||||
const result = await models.ItemShelving.deleteItemShelvings(itemShelvingIds, options);
|
const result = await models.ItemShelving.deleteItemShelvings(itemShelvingIds, options);
|
||||||
|
|
||||||
expect(result.length).toEqual(2);
|
expect(result.length).toEqual(4);
|
||||||
|
|
||||||
await tx.rollback();
|
await tx.rollback();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in New Issue
açò quina part del redmine es? perque si el itemShelving te sales, no es vol que se puguen borrar.
Aixo ho faig en els tests intenta eliminar un itemShelving que conte itemShelvingSale, per lo tant, primer tinc que carregarme els itemShelvingSale i despres els itemShelvings, si no els tests fallen.