23 lines
489 B
Vue
23 lines
489 B
Vue
<script setup>
|
|
import { usePrintService } from 'composables/usePrintService';
|
|
|
|
const { openReport } = usePrintService();
|
|
|
|
const $props = defineProps({
|
|
id: {
|
|
type: Number,
|
|
required: true,
|
|
},
|
|
});
|
|
|
|
function showEntryReport() {
|
|
openReport(`Entries/${$props.id}/entry-order-pdf`);
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<QItem v-ripple clickable @click="showEntryReport">
|
|
<QItemSection>{{ $t('entryList.list.showEntryReport') }}</QItemSection>
|
|
</QItem>
|
|
</template>
|