blob: 5cc04b859d10ff05f4a91703c586f94feee6032f (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { useRoute } from "vue-router"
import { useToast } from 'vue-toast-notification'
import axios from 'axios'
import Invoice from "./../classes/invoice"
import { calculate } from "./../classes/invoice_item"
import invoiceHeader from './../components/invoice_header.vue'
import invoiceItemsTable from './../components/invoice_items_table.vue'
import invoiceSummary from './../components/invoice_summary.vue'
const toast = useToast({
position: 'top-right'
})
const route = useRoute()
const invoiceId = route.params.id
const invoice = ref(new Invoice())
const items = ref<any[]>([])
const invoiceIsLoading = ref(true)
const itemsTableIsLoading = ref(true)
const getInvoice = async () => {
invoiceIsLoading.value = true
itemsTableIsLoading.value = true
try {
const r = await axios.get(`/invoice/${invoiceId}`)
invoice.value = r.data.data
items.value = calculate(r.data.data.Items)
} catch (err) {
toast.error('An unhandled exception occoured. Please check logs')
console.error(err)
}
invoiceIsLoading.value = false
itemsTableIsLoading.value = false
}
const handlePrint = () => {
print()
}
onMounted(() => {
getInvoice()
})
</script>
<template>
<invoiceHeader
:invoice="invoice" />
<invoiceItemsTable
:items="items"
:isLoading="itemsTableIsLoading" />
<invoiceSummary
:items="items"
:isLoading="itemsTableIsLoading"
/>
<button id="print-button" class="btn btn-primary" @click="handlePrint">Print</button>
</template>
<style>
@media print {
#sidebar, #navbar, #print-button, .btn {
display: none !important;
}
::-webkit-scrollbar {
display: none;
}
}
</style>
|