refactor: refs #8620 update RouteAutonomous to notify on data save and change invoice reference display
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
9e1ab1028d
commit
197c9afe01
|
@ -180,6 +180,7 @@ const onDmsSaved = async (dms, response) => {
|
||||||
rows: dmsDialog.value.rowsToCreateInvoiceIn,
|
rows: dmsDialog.value.rowsToCreateInvoiceIn,
|
||||||
dms: response.data,
|
dms: response.data,
|
||||||
});
|
});
|
||||||
|
notify(t('Data saved'), 'positive');
|
||||||
}
|
}
|
||||||
dmsDialog.value.show = false;
|
dmsDialog.value.show = false;
|
||||||
dmsDialog.value.initialForm = null;
|
dmsDialog.value.initialForm = null;
|
||||||
|
@ -243,7 +244,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</template>
|
</template>
|
||||||
<template #column-invoiceInFk="{ row }">
|
<template #column-invoiceInFk="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
{{ row.invoiceInFk }}
|
{{ row.supplierRef }}
|
||||||
<InvoiceInDescriptorProxy v-if="row.invoiceInFk" :id="row.invoiceInFk" />
|
<InvoiceInDescriptorProxy v-if="row.invoiceInFk" :id="row.invoiceInFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue