0
0
Fork 0

Actualizar src/pages/InvoiceIn/Card/InvoiceInDueDay.vue

This commit is contained in:
Javier Segarra 2024-05-02 08:32:39 +00:00
parent 4fdf2bacf8
commit 6a958a0807
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ const columns = computed(() => [
const isNotEuro = (code) => code != 'EUR'; const isNotEuro = (code) => code != 'EUR';
async function insert() { async function insert() {
await axios.post('/InvoiceInDueDays/new ', { id: +invoiceId }); await axios.post('/InvoiceInDueDays/new', { id: +invoiceId });
await invoiceInFormRef.value.reload(); await invoiceInFormRef.value.reload();
} }
</script> </script>