hari
January 18, 2024, 6:15pm
1
Hi,
I wanted to generate “Proforma Invoice” (like a draft invoice, but should be marked as Proforma Invoice).
I am thinking to create a custom template and use it. But, unable to change the text in the template from “Invoice” to “Proforma Invoice”.
Please suggest.
Thanks,
hillel
January 18, 2024, 6:53pm
2
Hi,
I believe some people use quotes for this purpose.
hari
January 18, 2024, 7:10pm
3
In India, buyers ask for Proforma Invoice for making an advance payment.
Quote used for indicating the price.
Proforma invoice is a preliminary bill or estimated invoice which is used to request payment from the committed buyer for goods or services before they are supplied.
Is there a way to change the text in the template ?
hillel
January 18, 2024, 7:23pm
4
You can either set custom labels on Settings > Localization or use a custom design.
hari
January 19, 2024, 8:15am
5
Localization will change all the templates.
I want to go with custom design. I did create a custom design, but, unsure on how to modify the word from “Invoice” to “Proforma Invoice”.
Can you please explain in detail.
hillel
January 19, 2024, 9:13am
6
Which design is your custom design based on?
hari
January 19, 2024, 10:22am
7
We are using “Calm” template.
hillel
January 19, 2024, 10:24am
8
You can change $entity_label on the body tab to change ‘Invoice’ to something else.
hari
January 19, 2024, 12:05pm
9
Thanks a lot. It worked.
How can I change the text “Invoice Number” to something like “Pro-Inv Number” in the custom template?
hillel
January 19, 2024, 12:10pm
10
You’d need to either set a custom label or replace the field stack with individual fields/labels.
hari
January 19, 2024, 12:13pm
11
Can you please elaborate on this.
hillel
January 19, 2024, 12:17pm
12
You’d need to remove this line of code:
<table id="entity-details" cellspacing="0" cellpadding="0" dir="ltr"></table>
And replace it with hard coded labels and variables.
The leading free source available online invoicing app for freelancers & businesses. Invoice, accept payments, track expenses, & time-tasks
hari
January 19, 2024, 1:50pm
13
Thank you hillel. It worked perfectly.
Replaced with the below code.
<table id="entity-details1" cellspacing="0" cellpadding="0" dir="ltr">
<tr><td>Proforma Number</td>
<td>$invoice</td></tr>
<tr><td>Proforma Date</td>
<td>$date</td></tr>
<tr><td>Due Date</td>
<td>$due_date</td></tr></table>
And also changed all “entity-details” entries under under “Includes” to “entity-details1”.
I hope, I have used the correct variables. Can you please confirm.
1 Like
hillel
January 20, 2024, 6:34pm
14
Glad to hear it, it looks correct to me.
hari
January 20, 2024, 8:55pm
15
Thanks a lot for your support and detailed explanation.