aboutsummaryrefslogtreecommitdiff
path: root/src/components/PrintPreviewFooter.vue
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2024-07-09 11:43:15 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2024-07-09 11:43:15 +0530
commit58ecb36f6a98114604952d9dbe78cb99fb159351 (patch)
tree5604084872fd00cdabc15303440bb4030a78b70f /src/components/PrintPreviewFooter.vue
parent4a5331dab4838759b8f509e29a0ac676da6604b1 (diff)
printing user-specific logos and signatures on invoices
Diffstat (limited to 'src/components/PrintPreviewFooter.vue')
-rw-r--r--src/components/PrintPreviewFooter.vue30
1 files changed, 29 insertions, 1 deletions
diff --git a/src/components/PrintPreviewFooter.vue b/src/components/PrintPreviewFooter.vue
index d41d621..3d1dd4c 100644
--- a/src/components/PrintPreviewFooter.vue
+++ b/src/components/PrintPreviewFooter.vue
@@ -2,6 +2,32 @@
import Converter from "number-to-words"
const props = defineProps(["invoice", "total"])
+
+ import { onMounted, ref } from "vue"
+ import User from "./../classes/user.js"
+ import axios from "axios"
+
+ const user = ref()
+
+ // temporarily using this
+ // TODO: don't call api from PrintPreview
+ const getUser = async () => {
+ user.value = new User()
+
+ try {
+ const r = await axios.get('/user')
+ if (r.status === 200) {
+ user.value = r.data.data
+ }
+ } catch (err) {
+ console.error(err)
+ }
+ }
+
+ // TODO: remove
+ onMounted(() => {
+ getUser()
+ })
</script>
<template>
@@ -61,7 +87,9 @@
</div>
<div class="signature-container">
- <img src="../assets/DefaultSignaturePlaceholder.png"/>
+ <!-- TODO: either show user's signature or a placeholder. maybe use css instead of a whole placeholder png. -->
+ <!--img src="../assets/DefaultSignaturePlaceholder.png"/-->
+ <img :src="'/pub/' + user.SignatureFile"/>
</div>
<div class="tiny">