Bloccata rimozione allegati FE se fattura non è generabile
This commit is contained in:
parent
f61ace0c7f
commit
1d7a2b73e8
|
@ -798,7 +798,7 @@ if ($dir == 'uscita' && $fattura->isFE()) {
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
||||||
{( "name": "filelist_and_upload", "id_module": "$id_module$", "id_record": "$id_record$" )}
|
{( "name": "filelist_and_upload", "id_module": "$id_module$", "id_record": "$id_record$", "abilita_genera": "<?php echo $abilita_genera; ?>" )}
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
if ($dir == 'entrata') {
|
if ($dir == 'entrata') {
|
||||||
|
|
|
@ -168,11 +168,13 @@ class FileManager implements ManagerInterface
|
||||||
$result .= '
|
$result .= '
|
||||||
<button type="button" class="btn btn-xs btn-warning" onclick="modificaAllegato(this)">
|
<button type="button" class="btn btn-xs btn-warning" onclick="modificaAllegato(this)">
|
||||||
<i class="fa fa-edit"></i>
|
<i class="fa fa-edit"></i>
|
||||||
</button>
|
</button>';
|
||||||
|
if (!$file->isFatturaElettronica() || $options['abilita_genera']) {
|
||||||
|
$result .= '
|
||||||
<button type="button" class="btn btn-xs btn-danger" onclick="rimuoviAllegato(this)">
|
<button type="button" class="btn btn-xs btn-danger" onclick="rimuoviAllegato(this)">
|
||||||
<i class="fa fa-trash"></i>
|
<i class="fa fa-trash"></i>
|
||||||
</button>';
|
</button>';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$result .= '
|
$result .= '
|
||||||
|
|
Loading…
Reference in New Issue