aboutsummaryrefslogtreecommitdiff
path: root/src/components/PrintPreviewRecipientDetails.vue
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2024-07-09 06:10:12 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2024-07-09 06:10:12 +0530
commitac8996cefaa27359a6f62cc570484b501903e6e2 (patch)
tree7bafe66c4b2297d45bc1171a3c95e44450631ec5 /src/components/PrintPreviewRecipientDetails.vue
parent4cab86849f1739d001593a54790e9531bd54092a (diff)
added invoice note and total in words
Diffstat (limited to 'src/components/PrintPreviewRecipientDetails.vue')
-rw-r--r--src/components/PrintPreviewRecipientDetails.vue24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/components/PrintPreviewRecipientDetails.vue b/src/components/PrintPreviewRecipientDetails.vue
index 6f1f5b7..f7733c9 100644
--- a/src/components/PrintPreviewRecipientDetails.vue
+++ b/src/components/PrintPreviewRecipientDetails.vue
@@ -17,11 +17,11 @@
<div class="recipient-info--row2">
<div class="recipient-info--col1 recipient-contact">
<div class="label">
- <span><strong>Bill To</strong></span>
+ <span><strong>Bill To:</strong></span>
<span>{{ props.invoice.CustomerName }}</span>
</div>
<div class="label">
- <span><strong>Address</strong></span>
+ <span><strong>Address:</strong></span>
<span>
{{ props.invoice.BillingAddress.AddressText }}<br>
{{ props.invoice.BillingAddress.City }}
@@ -31,23 +31,23 @@
</span>
</div>
<div class="label">
- <span><strong>Contact</strong></span>
+ <span><strong>Contact:</strong></span>
<span>{{ props.invoice.CustomerContactName }}</span>
</div>
<div class="label">
- <span><strong>Phone</strong></span>
+ <span><strong>Phone:</strong></span>
<span>{{ props.invoice.CustomerPhone }}</span>
</div>
<div class="label">
- <span><strong>Email</strong></span>
+ <span><strong>Email:</strong></span>
<span>{{ props.invoice.CustomerEmail }}</span>
</div>
<div class="label">
- <span><strong>Website</strong></span>
+ <span><strong>Website:</strong></span>
<span>{{ props.invoice.CustomerWebsite }}</span>
</div>
<div class="label">
- <span><strong>GSTIN</strong></span>
+ <span><strong>GSTIN:</strong></span>
<span>{{ props.invoice.CustomerGstin }}</span>
</div>
</div>
@@ -64,7 +64,7 @@
</div>
<div class="shipping-address">
<div class="label">
- <span><strong>Shipping Address</strong></span>
+ <span><strong>Shipping Address:</strong></span>
<span>
{{ props.invoice.ShippingAddress.AddressText }}<br>
{{ props.invoice.ShippingAddress.City }}
@@ -73,16 +73,16 @@
{{ props.invoice.ShippingAddress.Country }}
</span>
- <span><strong>City</strong></span>
+ <span><strong>City:</strong></span>
<span>{{ props.invoice.ShippingAddress.City }}</span>
- <span><strong>State</strong></span>
+ <span><strong>State:</strong></span>
<span>{{ props.invoice.ShippingAddress.State }}</span>
- <span><strong>ZIP Code</strong></span>
+ <span><strong>ZIP Code:</strong></span>
<span>{{ props.invoice.ShippingAddress.PostalCode }}</span>
- <span><strong>Country</strong></span>
+ <span><strong>Country:</strong></span>
<span>{{ props.invoice.ShippingAddress.Country }}</span>
</div>
</div>