fix: directory importazione fatture di acquisto
This commit is contained in:
parent
e7097bef9b
commit
bfc5b5642e
|
@ -82,17 +82,16 @@ class FatturaElettronica
|
|||
|
||||
public static function getImportDirectory()
|
||||
{
|
||||
if (!isset(self::$directory)) {
|
||||
$module = Module::where('name', 'Fatture di vendita')->first();
|
||||
$module = Module::where('name', 'Fatture di acquisto')->first();
|
||||
|
||||
$plugins = $module->plugins;
|
||||
if (!empty($plugins)) {
|
||||
$plugin = $plugins->first(fn ($value, $key) => $value->getTranslation('title') == 'Fatturazione Elettronica');
|
||||
$plugins = $module->plugins;
|
||||
if (!empty($plugins)) {
|
||||
$plugin = $plugins->first(fn ($value, $key) => $value->getTranslation('title') == 'Fatturazione Elettronica');
|
||||
|
||||
self::$directory = base_dir().'/'.$plugin->upload_directory;
|
||||
}
|
||||
self::$directory = base_dir().'/'.$plugin->upload_directory;
|
||||
}
|
||||
|
||||
|
||||
return self::$directory;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue