We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a7896 commit e96e4c6Copy full SHA for e96e4c6
1 file changed
plugins/exportFE/src/FatturaElettronica.php
@@ -1713,8 +1713,9 @@ protected static function getAllegati($fattura)
1713
$attachments = [];
1714
1715
// Informazioni sul modulo
1716
- $id_module = Module::where('name', 'Fatture di vendita')->first()->id;
1717
- $directory = \Uploads::getDirectory($id_module);
+ $module = Module::where('name', 'Fatture di vendita')->first();
+ $id_module = $module->id;
1718
+ $directory = 'files/'.$module->attachments_directory;
1719
1720
// Allegati
1721
$allegati = \Uploads::get([
0 commit comments