diff --git a/plugins/receiptFE/src/Ricevuta.php b/plugins/receiptFE/src/Ricevuta.php index c0e77fff8..a127ae042 100755 --- a/plugins/receiptFE/src/Ricevuta.php +++ b/plugins/receiptFE/src/Ricevuta.php @@ -161,7 +161,7 @@ public function saveAllegato($codice) $module = $fattura->getModule(); $upload_esistente = $module ->files($fattura->id) - ->where('original_name', $filename) + ->where('original_name', $filename.'.xml') ->first(); if (!empty($upload_esistente)) { return $upload_esistente; @@ -171,7 +171,7 @@ public function saveAllegato($codice) $upload = Upload::build($this->file, [ 'id_module' => $module->id, 'id_record' => $fattura->id, - 'original' => $filename, + 'original' => $filename.'.xml', ], tr('Ricevuta _TYPE_', [ '_TYPE_' => $codice, ]), tr('Fattura Elettronica')); diff --git a/update/2_6_2.sql b/update/2_6_2.sql index c12708638..06fb8d12d 100644 --- a/update/2_6_2.sql +++ b/update/2_6_2.sql @@ -1,2 +1,6 @@ -- RIpristino tipo text alla descrizione articolo -ALTER TABLE `mg_articoli_lang` CHANGE `title` `title` TEXT NOT NULL; \ No newline at end of file +ALTER TABLE `mg_articoli_lang` CHANGE `title` `title` TEXT NOT NULL; + +-- Correzione per file senza estensione +UPDATE zz_files SET filename = CONCAT(filename, 'xml') WHERE filename LIKE '%.'; +UPDATE `zz_files` SET name = 'Ricevuta RC' WHERE `name` LIKE 'Ricevuta R';