Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: item.due

This blog post captures some of the process and code tips and tricks used to create a PDF template for FPN and other modules.

...

On the first page of the creation, wizard pick HTML and pick the "Load Sample HTML" option (the MS Word option will be phased out, and has been kept for a while to support last years users).

The top large text area is the "Letter Contents", this is where the main template goes into, you can identify keywords and change them in here. It may be easier to copy the text out into a better HTML text editor then paste it back in when you are done. NOTE this letter contents section is not a FULL HTML page on its own, it is 3/4 of a page.

The 2nd large text area is the "Additional CSS", this is where formatting rules are applied, such as font, font size, spacing, colours etc.

You can upload your PDF letterhead temp[late and set the margins for the first page. Note you can set the Addressee details location to fit in a windowed envelope, this location is set irrespective of the rest of the page, to ensure it is exactly where it needs to be regardless of where other information may flow to see the information on the <address>  tag further below.

When you are done, save the record. On the next page, you can preview the merge letter. What it does is merge the current Merge Letter with the first record in the current event. So it will help to make sure that record has photos, notes and details that will test the template properly, you may need to work in a test event for this.

Listing the Merge Tokens

From the mail merge settings page, Administration→Settings→Merge Templates select any of the templates records.

...

TokenDescription
{$MERGE_DATE}The date which merge document has been generated.
{$MERGE_DATETIME}The date and time which merge document has been generated.
{$IN_TWO_WEEKS}The date 2 weeks from today.
{$IN_THREE_WEEKS}The date 3 weeks from today.
{$IN_FOUR_WEEKS}

The date 4 weeks from today.

{$item.due} 

shows date & time like : 15/08/2021 12:00:00 AM

Use the flowing code to extract the date part only

{assign var=due value=" "|explode:$item.due}
<strong>ALL WORK MUST BE COMPLETED NO LATER THAN {$due[0]}</strong>
</p>


It is also possible to add a custom date. For example

...

Currently there are three override fields on the FPN form which are listed below along with the tokens you need to use for these fields for them to appear in the letter:

  • Override Owner Details 
  • Override Property Number
  • Override Location

{$item.overrideOwnerDetails}
{$item.overridePropertyNumber}
{$item.overrideLocation}

...