diff --git a/src/pages/InvoiceIn/InvoiceInToBook.vue b/src/pages/InvoiceIn/InvoiceInToBook.vue index ef4fdcce0..23175f2e7 100644 --- a/src/pages/InvoiceIn/InvoiceInToBook.vue +++ b/src/pages/InvoiceIn/InvoiceInToBook.vue @@ -62,8 +62,6 @@ async function checkToBook(id) { async function toBook(id) { let err = false; - let message = t('globals.dataSaved'); - try { await axios.post(`InvoiceIns/${id}/toBook`); store.data.isBooked = true; @@ -71,7 +69,7 @@ async function toBook(id) { err = true; throw e; } finally { - if (!err) notify({ type: 'positive', message }); + if (!err) notify({ type: 'positive', message: t('globals.dataSaved') }); } }