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()) {
|
if ($file->isFatturaElettronica()) {
|
||||||
$content = file_get_contents(DOCROOT.'/'.$file->filepath);
|
$content = file_get_contents(DOCROOT.'/'.$file->filepath);
|
||||||
|
|
||||||
// Individuazione stylsheet
|
// Individuazione stylesheet
|
||||||
$stylesheet = 'asso-invoice';
|
$default_stylesheet = 'asso-invoice';
|
||||||
|
|
||||||
$name = basename($file->original);
|
$name = basename($file->original);
|
||||||
$filename = explode('.', $name)[0];
|
$filename = explode('.', $name)[0];
|
||||||
|
@ -27,6 +27,7 @@ if ($file->isFatturaElettronica()) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$stylesheet = DOCROOT.'/plugins/xml/'.$stylesheet.'.xsl';
|
$stylesheet = DOCROOT.'/plugins/xml/'.$stylesheet.'.xsl';
|
||||||
|
$stylesheet = file_exists($stylesheet) ? $stylesheet : DOCROOT.'/plugins/xml/'.$default_stylesheet.'.xsl';
|
||||||
|
|
||||||
// Fix per ricevute con namespace errato
|
// 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);
|
$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