Print blank line for PDF output

Hi CUBA team,

I have a report in DOCX template with some address fields (address line 1, 2 and 3). When PDF output format is selected, it will not print a blank line when any address line is empty.

I needed all 3 lines of the address to be fixed and also printed on the document. Is there a way to make it print the blank lines in the PDF format?

Thanks for any help.

Template example:

Date:	${Header.datePrinted}

Name:	${Account.client.party.name}

${Account.client.party.addressLine1}
${Account.client.party.addressLine2}
${Account.client.party.addressLine3}

Try to add some output if adressN is NULL. Like if you using jpql/sql for forming data use coalesce(party.adress1,'') as 'adressLine1'