1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Fix importazione allegati FE senza estensione

This commit is contained in:
Dasc3er
2021-04-02 14:58:34 +02:00
parent 47ed1d75fd
commit b95f1fed26
2 changed files with 6 additions and 5 deletions

View File

@@ -179,7 +179,7 @@ class FatturaElettronica
foreach ($allegati as $allegato) {
$content = base64_decode($allegato['Attachment']);
$extension = '';
$extension = '.pdf';
if (!empty($allegato['FormatoAttachment'])) {
$extension = '.'.strtolower($allegato['FormatoAttachment']);
}