1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-05 18:27:32 +01:00
2018-07-09 12:57:55 +02:00

16 lines
381 B
PHP

<?php
include_once __DIR__.'/../../core.php';
$upload_dir = DOCROOT.'/'.Uploads::getDirectory($id_module, $id_plugin);
try {
$fattura = new Plugins\Fatturazione\FatturaElettronica($id_record);
$disabled = false;
$download = file_exists($upload_dir.'/'.$fattura->getFilename());
} catch (UnexpectedValueException $e) {
$disabled = true;
$download = false;
}