aboutsummaryrefslogtreecommitdiff
path: root/src/components/PrintPreviewFooter.vue
blob: 48c9e5118ca2adfe15f154007bbae8bdb33063fe (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
<script setup lang="ts">
  import Converter from "number-to-words"

  const props = defineProps(["total"])
</script>

<template>
  <div class="print-preview-footer">
    <div class="footer--col1">
      <div class="total-words-label"></div>
      <div class="total-words">{{ Number.isFinite(props.total.TotalWithGST.value) && `${Converter.toWords(props.total.TotalWithGST.value)} only` }}</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">
        <img src="../assets/placeholdersignature.png"/>
      </div>
    </div>
  </div>
</template>

<style>
.total-words {
  text-transform: capitalize;
}
.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 8fr;
}
.firm-signature-wrapper {
  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;
}
.total-summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
</style>