aboutsummaryrefslogtreecommitdiff
path: root/src/components/PrintPreviewFooter.vue
blob: 3d1dd4cce454da12c70a19c19320b2a264912486 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<script setup lang="ts">
  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>
  <div class="print-preview-footer">
    <div class="footer--col1">
      <div class="footer--col1--row1">
        <p class="total-words">
          <strong>Total (in words):</strong>
          {{ Number.isFinite(props.total.TotalWithGST.value) && `${Converter.toWords(props.total.TotalWithGST.value)} only` }}
        </p>
      </div>

      <div class="footer--col1--row2">
        <div v-for="cf in props.invoice.CustomFields" :key="cf.ID" class="cf-wrapper">
          <div class="cf-key">
            <strong>{{ cf.Key }}:</strong>
          </div>
          <div class="cf-value">
            {{ cf.Value }}
          </div>
        </div>
      </div>

      <div class="footer--col1--row3">
        <div>
          <strong>Note:</strong>
        </div>
        <div>
          {{ props.invoice.Note }}
        </div>
      </div>
    </div>
    <div class="footer--col2">
      <div class="total-summary">
        <span class="total-summary-row">
          <span><strong>Total Before Tax</strong></span>
          <span>{{props.total.TotalWithoutGST}}</span>
        </span>

        <span class="total-summary-row">
          <span><strong>Total Tax Amount</strong></span>
          <span>{{props.total.TotalGSTValue}}</span>
        </span>

        <span class="total-summary-row">
          <span><strong>Total Amount</strong></span>
          <span>{{props.total.TotalWithGST}}</span>
        </span>
      </div>
      <div class="firm-signature-wrapper">
        <div class="tiny">
          Certified that the particulars given above are true and correct.
        </div>

        <div class="large">
          For, {{ invoice.IssuerFirmName }}
        </div>

        <div class="signature-container">
          <!-- 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">
          Authorized Signatory
        </div>
      </div>
    </div>
  </div>
</template>

<style>
.total-words {
  text-transform: capitalize;
}
.footer--col1--row1 {
  border-bottom: 1px solid gray;
  padding: 0.1em 0.3em;
}
.print-preview-footer {
  border: 1px solid gray;
  display: grid;
  grid-template-columns: 4fr 3fr;
  width: 100%;
}
.footer--col1 {
  border-right: 1pt solid gray;
  display: grid;
  grid-template-rows: 2fr 4fr 6fr;
}
.footer--col2 {
  display: grid;
  grid-template-rows: 2fr 3fr;
}
.firm-signature-wrapper {
  padding: 0.1em 0.3em;
  border-top: 1px solid gray;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.firm-signature-wrapper .signature-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1.7in;
}
.firm-signature-wrapper img {
  max-width: 100%;
  max-height: 100%;
}
.total-summary {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0.1em 0.3em;
  grid-auto-rows: 1.1rem;
}
.total-summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer--col1--row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1.1rem;
  white-space: pre-wrap;
  padding: 0.1em 0.3em;
}
.footer--col1--row2 .cf-wrapper {
  display: flex;
  gap: 0.4em;
}
.footer--col1--row3 {
  display: grid;
  grid-template-rows: 1.3em 1fr;
  white-space: pre-wrap;
  line-height: 1.3;
  padding: 0.1em 0.3em;
  border-top: 1px solid gray;
}
.firm-signature-wrapper .tiny {
  font-size: .8em;
  font-weight: bold;
}
.firm-signature-wrapper .large {
  font-size: 1.3em;
  font-weight: bold;
}
</style>