diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-04-06 10:26:44 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.com> | 2024-04-06 10:26:44 +0530 |
commit | 63823d41addec00556a93eabffa455630d169ca6 (patch) | |
tree | 2b548e2a6b00ae7ef3859e4a4cb807329a62a4a2 /src/views/ViewInvoice.vue | |
parent | a26ab9f60314420aad1c7d2a328d299f503532fa (diff) |
added basic (and incomplete) print preview template
Diffstat (limited to 'src/views/ViewInvoice.vue')
-rw-r--r-- | src/views/ViewInvoice.vue | 40 |
1 files changed, 8 insertions, 32 deletions
diff --git a/src/views/ViewInvoice.vue b/src/views/ViewInvoice.vue index 5f2a783..b8b7f2d 100644 --- a/src/views/ViewInvoice.vue +++ b/src/views/ViewInvoice.vue @@ -11,6 +11,8 @@ import invoiceHeader from './../components/invoice_header.vue' import invoiceItemsTable from './../components/invoice_items_table.vue' import invoiceSummary from './../components/invoice_summary.vue' +import PrintPreview from './../components/PrintPreview.vue' + const toast = useToast({ position: 'top-right' }) @@ -52,50 +54,24 @@ onMounted(() => { <template> <div id="print-preview" class="bg-white text-black"> - <invoiceHeader - :invoice="invoice" /> - <invoiceItemsTable - preview=true - :items="items" - :isLoading="itemsTableIsLoading" /> - <invoiceSummary - :items="items" - :isLoading="itemsTableIsLoading" - /> + <PrintPreview :invoice="invoice"/> </div> <button id="print-button" class="btn btn-primary" @click="handlePrint">Print</button> </template> <style> #print-preview { - width: 670px; -} -#print-preview * { - font-size: 12pt !important; -} -#print-preview .sup { -} -#print-preview table { - width: 100%; -} -#print-preview table * { - font-size: 10pt !important; -} -#print-preview .invoice-items-table { - margin-bottom: auto !important; -} -#print-preview .invoice-summary { - margin-top: auto !important; -} -#print-preview .item-name-cell span { - max-width: 150pt !important; + max-height: 90vh; + /*display: none;*/ + aspect-ratio: 1 / 1.414; } @media print { body { background-color: white; } #print-preview { - width: auto !important; + display: block; + width: 100% !important; height: 100% !important; } #sidebar, #navbar, #print-button, .btn { |