Fix regressione stylesheet

This commit is contained in:
Thomas Zilio 2019-03-02 21:04:06 +01:00
parent 78f5eb43e0
commit 0f7639e9b3
1 changed files with 3 additions and 2 deletions

View File

@ -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);