1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-02 08:56:48 +01:00

fix: generazione fattura con caratteri speciali

This commit is contained in:
valentina 2024-10-08 09:51:15 +02:00
parent 9b3e6e5a6b
commit 092f88fcc7

View File

@ -1014,11 +1014,11 @@ class Validator
'℀' => 'a/c', '℀' => 'a/c',
'℁' => 'a/s', '℁' => 'a/s',
'' => 'C', '' => 'C',
'℃' => '°C', '℃' => 'C',
'℅' => 'c/o', '℅' => 'c/o',
'℆' => 'c/u', '℆' => 'c/u',
'ℇ' => 'Ɛ', 'ℇ' => 'Ɛ',
'℉' => '°F', '℉' => 'F',
'' => 'g', '' => 'g',
'' => 'H', '' => 'H',
'' => 'H', '' => 'H',
@ -4445,6 +4445,7 @@ class Validator
'' => '-', '' => '-',
'✓' => '-', '✓' => '-',
'●' => '-', '●' => '-',
'°' => '.',
]); ]);
return $string; return $string;