feature/InvoicesOutCorrections #232

Merged
jsegarra merged 25 commits from :feature/InvoicesOutCorrections into dev 2024-03-20 13:34:35 +00:00
1 changed files with 6 additions and 2 deletions
Showing only changes of commit af12512de9 - Show all commits

View File

@ -14,6 +14,10 @@ const $props = defineProps({
const { t } = useI18n();
const transferInvoiceDialogRef = ref();
const showInvoicePdf = () => {};
const showInvoiceCsv = () => {};
</script>
<template>
@ -27,10 +31,10 @@ const transferInvoiceDialogRef = ref();
</QItemSection>
<QMenu anchor="top end" self="top start">
<QList>
<QItem v-ripple clickable>
<QItem v-ripple clickable @click="showInvoicePdf()">
<QItemSection>{{ t('As PDF') }}</QItemSection>
</QItem>
<QItem v-ripple clickable>
<QItem v-ripple clickable @click="showInvoiceCsv()">
<QItemSection>{{ t('As CSV') }}</QItemSection>
</QItem>
</QList>