From 0f0614e3cb34c7eff198b9ee4913457a05ed30eb Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Sun, 15 Feb 2015 10:20:29 +0100 Subject: Workaround for the Euro sign --- classes/correspondence.class.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'classes/correspondence.class.php') diff --git a/classes/correspondence.class.php b/classes/correspondence.class.php index 6e17528..ac3da64 100644 --- a/classes/correspondence.class.php +++ b/classes/correspondence.class.php @@ -134,6 +134,22 @@ class correspondence extends FPDF { $this->SetDisplayMode('fullpage','continuous'); } + /** + * Workaround for euro signs + * + * Euro signs in FPDF should be chr(128). Other signs don't have to be changed. + * + * @return a valuta symbol that can be used in FPDF + */ + public static function valuta() { + switch (constants::invoice_valuta) { + case '€': + return chr(128); + default: + return constants::invoice_valuta; + } + } + /** * Set the language of the correspondence (used to translate stuff) * -- cgit v1.2.3