How to add the pickup point information on the reservation PDF Template?

Blanca Castillo
Blanca Castillo
  • Updated

Where do I find it?

Configuration > PDF Templates > Invoice

 

What does it mean?

By default, the Invoice PDF template does not include any information about the pick-up point. However, if you use the Reservations feature in your operation, then maybe it's an important information to your end customers as they need to know where is the meeting point although they haven't confirmed yet the reservation.

For that, it's needed to slightly change the Invoice PDF template, we'll show you how to do it in the next section.

 

What should I do?

You need to add this piece of code on the Text Body:

 

#if (${entry.pickupInfo}) 
<div class="groupEventRoute pickup"> <div class="pickup-title">Pickup Information</div>
<div class="pickup-description">${entry.pickupInfo}</div>
</div>
#end

Before #Tickets UIDs where the red mark is:

 

 

And you also need to add this piece of code on the Template:

.invoice .ticket-section2 .groupEventRoute.pickup { 
margin-top: 15px;
display: block;
margin-left: 49px;
}

 

Before .invoice .ticket-section2 .groupEventRoute where the red mark is:

 

 

And then, the customer will receive an email template similar to this one with the pick-up point information in case there is one. If there is no pick-up point, then the system will not print this block: