1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-19 11:45:25 +01:00
openstamanager/plugins/exportFE/view.php
Thomas Zilio 0e81099c4b Miglioramenti struttura documenti
@lucasalva87 Ho aggiornato il totale documento della fattura elettronica per funzionare con i nuovi oggetti.
2019-01-03 21:17:04 +01:00

18 lines
299 B
PHP

<?php
include_once __DIR__.'/init.php';
// XML
$xml = new DOMDocument();
$xml->loadXML($fattura_pa->toXML());
// XSL
$xsl = new DOMDocument();
$xsl->load(__DIR__.'/src/stylesheet-1.2.1.xsl');
// XSLT
$xslt = new XSLTProcessor();
$xslt->importStylesheet($xsl);
echo $xslt->transformToXML($xml);