aboutsummaryrefslogtreecommitdiff
path: root/classes/correspondence.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/correspondence.class.php')
-rw-r--r--classes/correspondence.class.php16
1 files changed, 16 insertions, 0 deletions
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)
*