Fix minori
This commit is contained in:
parent
fbac9f5fc2
commit
08d2231ad0
|
@ -10,11 +10,11 @@ $directory = Uploads::getDirectory($id_module);
|
|||
switch (filter('op')) {
|
||||
case 'save':
|
||||
$content = file_get_contents($_FILES['blob']['tmp_name']);
|
||||
$filename = FatturaElettronica::store($_FILES['blob']['name'], $content);
|
||||
$file = FatturaElettronica::store($_FILES['blob']['name'], $content);
|
||||
|
||||
if (FatturaElettronica::isValid($file)) {
|
||||
echo json_encode([
|
||||
'filename' => $filename,
|
||||
'filename' => $file,
|
||||
]);
|
||||
} else {
|
||||
echo json_encode([
|
||||
|
|
|
@ -117,7 +117,7 @@ $replaces = array_merge($replaces, [
|
|||
'rootdir' => ROOTDIR,
|
||||
'directory' => Prints::get($id_print)['full_directory'],
|
||||
'footer' => !empty($footer) ? $footer : '',
|
||||
'dicitura_fissa_fattura' => setting('Dicitura fissa fattura').((!empty(setting('OSMCloud Services API Token'))) ? tr(' Documento privo di valenza fiscale dell\'art 21 dpr 633/72.') : ''),
|
||||
'dicitura_fissa_fattura' => setting('Dicitura fissa fattura').((!empty(setting('OSMCloud Services API Token'))) ? tr(' Documento privo di valenza fiscale (art 21 dpr 633/72).') : ''),
|
||||
]);
|
||||
|
||||
unset($replace);
|
||||
|
|
Loading…
Reference in New Issue