mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-19 11:45:25 +01:00
0e81099c4b
@lucasalva87 Ho aggiornato il totale documento della fattura elettronica per funzionare con i nuovi oggetti.
18 lines
299 B
PHP
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);
|