Fix regressione stylesheet
This commit is contained in:
parent
78f5eb43e0
commit
0f7639e9b3
5
view.php
5
view.php
|
@ -15,8 +15,8 @@ $link = ROOTDIR.'/'.$file->filepath;
|
|||
if ($file->isFatturaElettronica()) {
|
||||
$content = file_get_contents(DOCROOT.'/'.$file->filepath);
|
||||
|
||||
// Individuazione stylsheet
|
||||
$stylesheet = 'asso-invoice';
|
||||
// Individuazione stylesheet
|
||||
$default_stylesheet = 'asso-invoice';
|
||||
|
||||
$name = basename($file->original);
|
||||
$filename = explode('.', $name)[0];
|
||||
|
@ -27,6 +27,7 @@ if ($file->isFatturaElettronica()) {
|
|||
}
|
||||
|
||||
$stylesheet = DOCROOT.'/plugins/xml/'.$stylesheet.'.xsl';
|
||||
$stylesheet = file_exists($stylesheet) ? $stylesheet : DOCROOT.'/plugins/xml/'.$default_stylesheet.'.xsl';
|
||||
|
||||
// Fix per ricevute con namespace errato
|
||||
$content = str_replace('http://ivaservizi.agenziaentrate.gov.it/docs/xsd/fattura/messaggi/v1.0', 'http://www.fatturapa.gov.it/sdi/messaggi/v1.0', $content);
|
||||
|
|
Loading…
Reference in New Issue