Merge pull request #12010 from laudeco/feature/12006-country-on-pdf-footer
[#12006] - adds the country in the address of the PDF's footer
This commit is contained in:
commit
c223c5635b
@ -935,6 +935,11 @@ function pdf_pagefoot(&$pdf, $outputlangs, $paramfreetext, $fromcompany, $marge_
|
|||||||
{
|
{
|
||||||
$line1.=($line1?" ":"").$fromcompany->town;
|
$line1.=($line1?" ":"").$fromcompany->town;
|
||||||
}
|
}
|
||||||
|
// Country
|
||||||
|
if ($fromcompany->country)
|
||||||
|
{
|
||||||
|
$line1.=($line1?", ":"").$fromcompany->country;
|
||||||
|
}
|
||||||
// Phone
|
// Phone
|
||||||
if ($fromcompany->phone)
|
if ($fromcompany->phone)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user