Customise Invoice Template: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| (27 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
[[Category:How to]] | [[Category:How to]] | ||
[[Category: | [[Category:Invoice]] | ||
= | <div class="heading">Customise the invoice template</div> | ||
This page explains how to customise the invoice template | |||
In SETTINGS | In {{#fas:cog}} (SETTINGS) GUEST MANAGEMENT > INVOICE you can customise the invoice template. | ||
<embedvideo service="youtube">https://www.youtube.com/watch?v=WLnWFq_Ch9I</embedvideo> | |||
The template will generate invoices like this: | |||
[[File:Invoice_1. | [[File:Invoice_1.jpg]] | ||
'''Step 1 - Upload your logo in SETTINGS - > BOOKING | |||
[[Media:Custom_Invoice.pdf|Download the tutorial]] or follow these step by step instructions: | |||
'''Step 1 - Upload your logo in SETTINGS - > BOOKING ENGINE PICTURES''' | |||
Upload the picture and copy the copy picture url | Upload the picture and copy the copy picture url | ||
| Line 19: | Line 23: | ||
'''Step 2 - Open the Editor in SETTINGS | '''Step 2 - Open the Editor in {{#fas:cog}} (SETTINGS) GUEST MANAGEMENT > BOOKING TEMPLATE''' | ||
[[File:Invoice_3.png]] | [[File:Invoice_3.png]] | ||
| Line 26: | Line 30: | ||
'''Step 3 - Enter your image URL''' | '''Step 3 - Enter your image URL''' | ||
A click on the "image icon opens a window. Paste in the image url of your logo. If you dont want to use a logo delete <nowiki><div style="text-align:center;"><img src="https:// | A click on the "image icon opens a window. Paste in the image url of your logo. If you dont want to use a logo delete <nowiki><div style="text-align:center;"><img src="https://beds24.com/pic/p0000/2035/02.jpg" /></div></nowiki> and enter your property name. | ||
[[File:Invoice_4.png]] | [[File:Invoice_4.png]] | ||
| Line 45: | Line 49: | ||
The code for this sample invoice is provided at the bottom of the text. | The code for this sample invoice is provided at the bottom of the text. | ||
[[File:Invoice_6.png]] | |||
'''Step 6 - Generate an Invoice''' | '''Step 6 - Generate an Invoice''' | ||
| Line 50: | Line 57: | ||
Go to BOOKINGS and open a booking. If you want to add an invoice number to the booking you can use the field "referer" or any other filed you dont need e.g. a custom question, or fax (in this case you will have to adjust the template variable). | Go to BOOKINGS and open a booking. If you want to add an invoice number to the booking you can use the field "referer" or any other filed you dont need e.g. a custom question, or fax (in this case you will have to adjust the template variable). | ||
[[File: | [[File:Invoice_7.png]] | ||
'''Step 7 - Add Extras''' | '''Step 7 - Add Extras''' | ||
| Line 61: | Line 69: | ||
Click on "Printable Invoice" to print the invoice or to add extra information manually (2) | Click on "Printable Invoice" to print the invoice or to add extra information manually (2) | ||
[[File:Invoice_8.png]] | |||
'''Step 8 - Preview Invoice''' | |||
If your invoice is ready click on the "print" icon (1) to save to your computer or print. | |||
If you want to add custom information just for this invoice click on the "edit" icon (2) | |||
[[File:Invoice_10.png]] | |||
'''Step 9 - If Required Enter Custom Text''' | |||
If required enter information in the editor and click on the "Close" icon. Information you enter here will not be stored in the system. | |||
[[File:Invoice_11.png]] | [[File:Invoice_11.png]] | ||
The field "Rate Description" will not show on the invoice. It can be used to store manually entered information. | |||
| Line 80: | Line 94: | ||
To use copy, go to SETTINGS | To use copy, go to {{#fas:cog}} (SETTINGS) GUEST MANAGEMENT > INVOICE click on "EDIT". In the editor click on "Source Code". Paste the code in. To use your image exchange <nowiki>"https://beds24.com/pic/p0000/2035/02.jpg"</nowiki> to your logo url. | ||
<pre> | <pre> | ||
<div style="text-align:center;"><img src="https:// | <div style="text-align:center;"><img src="https://beds24.com/pic/p0000/2035/02.jpg" /></div> | ||
<div> | <div> | ||
<br /> | <br /> | ||
| Line 88: | Line 102: | ||
<br /> | <br /> | ||
| | ||
<h3>Invoice Nr. [ | <h3>Invoice Nr. [INVOICENUMBER]</h3> | ||
<table border="0" cellpadding="1" cellspacing="1" style="width: 500px;"> | <table border="0" cellpadding="1" cellspacing="1" style="width: 500px;"> | ||
| Line 98: | Line 112: | ||
<tr> | <tr> | ||
<td>Date</td> | <td>Date</td> | ||
<td>[ | <td>[INVOICEDATE]</td> | ||
</tr> | </tr> | ||
<tr> | <tr> | ||
| Line 137: | Line 151: | ||
<strong>Balance due: </strong>[FIRSTNIGHT:+30days] | <strong>Balance due: </strong>[FIRSTNIGHT:+30days] | ||
</div> | </div> | ||
</pre> | |||
== Code for the example 2== | |||
<pre> | |||
[GUESTTITLE] [GUESTFIRSTNAME] [GUESTNAME] | |||
[GUESTADDRESS] | |||
[ROOMNAME] | |||
Check in: [FIRSTNIGHT] | |||
Check out: [LEAVINGDAY] | |||
[NUMNIGHT] nights | |||
[NUMPEOPLE] guests | |||
[CURRENTDATE] | |||
Invoice | |||
Reference Number: [REFERENCENUMBER] | |||
[INVOICETABLE] | |||
We thank you very much for choosing [PROPERTYNAME]. We hope you enjoyed your stay with us. | |||
</pre> | </pre> | ||