add the country in the address of the PDF's footer

This commit is contained in:
Laurent De Coninck 2019-10-01 21:03:58 +02:00
parent b838ab0c31
commit 3a25beabe6

View File

@ -935,6 +935,11 @@ function pdf_pagefoot(&$pdf, $outputlangs, $paramfreetext, $fromcompany, $marge_
{
$line1.=($line1?" ":"").$fromcompany->town;
}
// Country
if ($fromcompany->country)
{
$line1.=($line1?", ":"").$fromcompany->country;
}
// Phone
if ($fromcompany->phone)
{