From ac8996cefaa27359a6f62cc570484b501903e6e2 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Tue, 9 Jul 2024 06:10:12 +0530 Subject: added invoice note and total in words --- src/components/PrintPreviewRecipientDetails.vue | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/components/PrintPreviewRecipientDetails.vue') 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 @@
- Bill To + Bill To: {{ props.invoice.CustomerName }}
- Address + Address: {{ props.invoice.BillingAddress.AddressText }}
{{ props.invoice.BillingAddress.City }} @@ -31,23 +31,23 @@
- Contact + Contact: {{ props.invoice.CustomerContactName }}
- Phone + Phone: {{ props.invoice.CustomerPhone }}
- Email + Email: {{ props.invoice.CustomerEmail }}
- Website + Website: {{ props.invoice.CustomerWebsite }}
- GSTIN + GSTIN: {{ props.invoice.CustomerGstin }}
@@ -64,7 +64,7 @@
- Shipping Address + Shipping Address: {{ props.invoice.ShippingAddress.AddressText }}
{{ props.invoice.ShippingAddress.City }} @@ -73,16 +73,16 @@ {{ props.invoice.ShippingAddress.Country }}
- City + City: {{ props.invoice.ShippingAddress.City }} - State + State: {{ props.invoice.ShippingAddress.State }} - ZIP Code + ZIP Code: {{ props.invoice.ShippingAddress.PostalCode }} - Country + Country: {{ props.invoice.ShippingAddress.Country }}
-- cgit v1.2.3