Difference between revisions of "Customise Invoice Template"

From Beds24 Wiki
Jump to navigation Jump to search
Line 3: Line 3:
 
===Customise Invoice===
 
===Customise Invoice===
  
In SETTINGS -> GUEST MANAGENMENT -> INVOICING you can customise the invoice template. Download the [[File:pdf.gif|Media:Custom_Invoice.pdf]]]
+
In SETTINGS -> GUEST MANAGENMENT -> INVOICING you can customise the invoice template. Download the [[File:pdf.gif|Media:Custom_Invoice.pdf]]
  
[[File:pdf.gif]]
+
[[Media:Custom_Invoice.pdf]]
  
  

Revision as of 13:01, 4 November 2013

1 Customise Invoice

In SETTINGS -> GUEST MANAGENMENT -> INVOICING you can customise the invoice template. Download the Media:Custom_Invoice.pdf

Media:Custom_Invoice.pdf


File:Invoice 1.png


Invoice 2.png


Invoice 3.png


Invoice 4.png


Invoice 5.png


Invoice 6.png


Invoice 7.png


Invoice 8.png


Invoice 10.png


Invoice 11.png


2 Code for the example

To use copy, go to SETTINGS -> GUEST MANAGEMENT -> INVOICING click on "EDIT". I the editor click on "Source Code". Paste the code in. To use your image exchange "https://www.beds24.com/pic/p0000/2035/02.jpg" to your logo url.

 <div style="text-align:center;"><img src="https://www.beds24.com/pic/p0000/2035/02.jpg" /></div>
 <div>
 <br />
 <br />
 <br />
  
 <h3>Invoice Nr. [REFERENCE]</h3>

 <table border="0" cellpadding="1" cellspacing="1" style="width: 500px;">
	<tbody>
		<tr>
		        <td>Name</td>
			<td>[GUESTFULLNAME]</td>
		</tr>
		<tr>
			<td>Date</td>
			<td>[CURRENTDATE]</td>
		</tr>
		<tr>
			<td>Roomnumber</td>
			<td>[REFERRER]</td>
		</tr>
		<tr>
			<td>Booking Reference</td>
			<td>[REFERENCENUMBER]</td>
		</tr>
		<tr>
			<td>Check-in</td>
			<td>[FIRSTNIGHT]</td>
		</tr>
		<tr>
			<td>Check-out</td>
			<td>[LEAVINGDAY]</td>
		</tr>
		<tr>
			<td>Number of Nights</td>
			<td>[NUMNIGHT]</td>
		</tr>
		<tr>
			<td>Room</td>
			<td>[ROOMNAME]</td>
		</tr>
		<tr>
			<td>Price</td>
			<td>[PRICE]</td>
		</tr>
	</tbody>
 </table>
 <br />
 <br />
 [INVOICETABLE]
 <br />
 <br />
 <strong>Balance due:  </strong>[FIRSTNIGHT:+30days]
 </div>