diff --git a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue index f06ee43ac..b79bf556d 100644 --- a/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue +++ b/src/pages/InvoiceIn/Card/InvoiceInDescriptor.vue @@ -136,26 +136,12 @@ onBeforeRouteUpdate(async (to, from) => { }); async function setInvoiceCorrection(id) { - const [{ data: correctingData }, { data: correctedData }] = await Promise.all([ - axios.get('InvoiceInCorrections', { - params: { - filter: { - where: { - correctingFk: id, - }, - }, - }, - }), - axios.get('InvoiceInCorrections', { - params: { - filter: { - where: { - correctedFk: id, - }, - }, - }, - }), - ]); + const { data: correctingData } = await axios.get('InvoiceInCorrections', { + params: { filter: { where: { correctingFk: id } } }, + }); + const { data: correctedData } = await axios.get('InvoiceInCorrections', { + params: { filter: { where: { correctedFk: id } } }, + }); if (correctingData[0]) invoiceInCorrection.corrected = correctingData[0].correctedFk;