feat: refs #8441 add VehicleInvoiceIn component with invoice management functionality #1567

Open
jtubau wants to merge 75 commits from 8441-createVehicleInvoiceInSection into dev
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 4e49a73173 - Show all commits

View File

@ -84,7 +84,7 @@ async function unassignInvoice(id) {
notify(t('vehicle.ticket.unlinkedInvoice'), 'positive');
tableRef.value.reload();
} catch (e) {
throw new Error(e.message);
throw e;
jtubau marked this conversation as resolved Outdated

throw e

throw e
}
}
</script>

View File

@ -34,7 +34,7 @@ const importDms = async () => {
dmsId.value = null;
emit('onDataSaved');
} catch (e) {
throw new Error(e.message);
throw e;
}
};
</script>