-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
180 lines (150 loc) · 4.76 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wizualizacja pliku XML sprawozdania finansowego</title>
<style>
.obraz {
margin-top: 20px;
background-image: url("sprawozdanie.png");
background-size: cover;
background-repeat: no-repeat;
width: 1040px;
height: 540px;
opacity: 0.4;
border-top: 1px dotted black;
}
div.pg {
font-family: "Arial",sans-serif;
font-size: 14px;
overflow-x: hidden;
}
div.info {
position: absolute;
bottom: 20px;
font-size: small;
}
h1.pg {
margin-top: 10px;
color: #20b2aa;
}
form {
display: inline;
}
</style>
<script>
const xsltProcessor = new XSLTProcessor();
const kopiaElementow = (xsl, zmienna, xml, tag, elementy) => {
// Ustalenie elementu ze zmienną, do której zostanie przeniesiony odpowiedni słownik
let varNode;
for (let el of xsl.getElementsByTagName("xsl:variable")) {
if (el.getAttribute('name') == zmienna)
varNode= el;
}
// Przeniesienie wskazanych elementów z pliku schematu do arkusza transformacji
let elements= xml.children[0].children;
for(let el of elements) {
if (!elementy || elementy.includes(el.getAttribute('name'))) {
const rootNode= xsl.importNode(el, true);
varNode.appendChild(rootNode);
}
}
}
const loadXML = async (url) => {
return new Promise(function (resolve, reject) {
let xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.onload = function () {
if (this.status >= 200 && this.status < 300) {
resolve(xhr.responseXML);
} else {
reject({
status: this.status,
statusText: xhr.statusText
});
}
};
xhr.onerror = function () {
reject({
status: this.status,
statusText: xhr.statusText
});
};
xhr.send();
});
}
function saveXml(xml) {
var formData= new FormData();
formData.append('file2', xml);
var xhr = new XMLHttpRequest();
xhr.open('POST', '/xml', true);
xhr.onload = () => {
console.log(xhr.statusText, xhr.responseXML);
};
xhr.onerror = () => {
console.error(xhr.statusText);
};
xhr.send(formData);
}
(async () => {
const xsl= await loadXML("JednostkaInna.xsl");
// Obejście braku obsługi funkcji document() w chrome
const nazwy= await loadXML('JednostkaInnaStrukturyDanychSprFin_v1-0.xsd');
kopiaElementow(xsl, "nazwy", nazwy, "xsd:complexType", ['BilansJednostkaInna', 'RZiSJednostkaInna', 'ZestZmianWKapitaleJednostkaInna', 'RachPrzeplywowJednostkaInna']);
const podatek= await loadXML('StrukturyDanychSprFin_v1-1.xsd');
kopiaElementow(xsl, "podatek", podatek, "xsd:complexType", ['TInformacjaDodatkowaDotyczacaPodatkuDochodowego']);
const pkd= await loadXML('KodyPKD_v2-0E.xsd');
kopiaElementow(xsl, "pkd", pkd, "xs:simpleType", null);
xsltProcessor.importStylesheet(xsl);
xsltProcessor.setParameter('', 'procesor', 'klient');
xsltProcessor.setParameter('', 'root', '');
})();
const handleFileSelect1= (evt) => {
var reader= new FileReader(),
parser = new DOMParser(),
file1= evt.target.files;
reader.onload= (e) => {
let xml= e.target.result;
saveXml(xml);
// Wydzielenie sprawozdania z podpisanego pliku
m= new RegExp('<(\\w+:)?JednostkaInna.*</(\\1)?JednostkaInna[^>]*>', 'sm').exec(xml)
if (m)
xml= '<?xml version="1.0" encoding="UTF-8"?>\n'+m[0];
xml= parser.parseFromString(xml, "text/xml");
resultDocument = xsltProcessor.transformToFragment(xml, document);
document.getElementById("loader").style.display= "none";
document.body.appendChild(resultDocument);
};
reader.readAsText(file1[0]);
}
const handleFileSelect2= (evt) => {
document.getElementById("form").submit();
}
</script>
<head>
<body>
<div id="loader" class="pg">
<h1 class="pg">Wizualizacja pliku XML sprawozdania finansowego</h1>
<form id="form" action="/xml" method="POST" enctype="multipart/form-data">
<p>Wybierz plik XML ze sprawozdaniem finansowym (typu <b>Jednostka Inna|Mała|Mikro|Op</b>)</p>
<input type="file" id="file2" name="file2"/>
</form>
<div class="pg obraz"></div>
<div class="pg sample">
<p>
<a href="/przyklad">Przykładowe sprawozdanie (Jednostka Inna)</a>
<br/>
<a href="/wizualizacja">Wizualizacja przykładowego sprawozdania</a>
</p>
</div>
<div class="pg info">
Źródło: <a class="pg" href="https://github.com/wlodekf/sprawozdania">https://github.com/wlodekf/sprawozdania</a>
</div>
</div>
</body>
<script>
document.getElementById('file2').addEventListener('change', handleFileSelect2, false);
</script>
</html>