blob: 94b56702861cb07f63a594ef7869dbee9cfd7af2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<script setup lang="ts">
import PrintPreviewHeader from './PrintPreviewHeader.vue'
import PrintPreviewRecipientDetails from './PrintPreviewRecipientDetails.vue'
import PrintPreviewItemsList from './PrintPreviewItemsList.vue'
import PrintPreviewFooter from './PrintPreviewFooter.vue'
const props = defineProps(["invoice", "total"])
</script>
<template>
<div class="print-preview">
<PrintPreviewHeader
:invoice="props.invoice" />
<PrintPreviewRecipientDetails
:invoice="props.invoice"/>
<PrintPreviewItemsList
:items="props.invoice.Items"
:total="props.total"/>
<PrintPreviewFooter
:invoice="props.invoice"
:total="props.total"/>
</div>
</template>
<style>
.print-preview * {
font-size: 9pt;
}
.print-preview p {
margin: 0;
}
.print-preview {
display: flex;
flex-direction: column;
gap: 1em;
}
</style>
|