forked from wlodekf/sprawozdania
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jin.xsl
222 lines (189 loc) · 7.09 KB
/
jin.xsl
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
xmlns:dtsf="http://www.mf.gov.pl/schematy/SF/DefinicjeTypySprawozdaniaFinansowe/2018/07/09/DefinicjeTypySprawozdaniaFinansowe/"
xmlns:jin="http://www.mf.gov.pl/schematy/SF/DefinicjeTypySprawozdaniaFinansowe/2018/07/09/JednostkaInnaStruktury"
xmlns:tns="http://www.mf.gov.pl/schematy/SF/DefinicjeTypySprawozdaniaFinansowe/2018/07/09/JednostkaInnaWZlotych"
>
<xsl:variable name="jin-nazwy" select="document('JednostkaInnaStrukturyDanychSprFin_v1-0.xsd')"/>
<xsl:variable name="krotki">
<xsl:choose>
<xsl:when test="count(//jin:Aktywa//dtsf:KwotaA) < 50">
<xsl:value-of select="'krotki'"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="''"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:template match="tns:WprowadzenieDoSprawozdaniaFinansowegoJednostkaInna">
<section>
<div class="tyt">Wprowadzenie do sprawozdania</div>
<xsl:apply-templates select="tns:P_1"/>
<xsl:apply-templates select="tns:P_3"/>
<xsl:apply-templates select="tns:P_4"/>
<xsl:apply-templates select="tns:P_5"/>
<xsl:apply-templates select="tns:P_6"/>
<div class="wpr">
<h1>7. Informacja uszczegóławiająca, wynikająca z potrzeb lub specyfiki jednostki</h1>
<xsl:apply-templates select="tns:P_7"/>
</div>
</section>
</xsl:template>
<xsl:template match="tns:WprowadzenieDoSprawozdaniaFinansowego">
<section>
<div class="tyt">Wprowadzenie do sprawozdania</div>
<xsl:apply-templates select="tns:P_1"/>
<xsl:apply-templates select="tns:P_3"/>
<xsl:apply-templates select="tns:P_4"/>
<xsl:apply-templates select="tns:P_5"/>
<xsl:apply-templates select="tns:P_7"/>
<div class="wpr">
<h1>8. Informacja uszczegóławiająca, wynikająca z potrzeb lub specyfiki jednostki</h1>
<xsl:apply-templates select="tns:P_8"/>
</div>
</section>
</xsl:template>
<xsl:template match="jin:Aktywa">
<xsl:call-template name="aktywa">
<xsl:with-param name="wiersze" select="jin:*"/>
<xsl:with-param name="nazwy" select="$jin-nazwy"/>
<xsl:with-param name="klasa" select="$krotki"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="jin:Pasywa">
<xsl:call-template name="pasywa">
<xsl:with-param name="wiersze" select="jin:*"/>
<xsl:with-param name="nazwy" select="$jin-nazwy"/>
<xsl:with-param name="klasa" select="$krotki"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="jin:*">
<xsl:param name="raport"/>
<xsl:param name="level"/>
<xsl:call-template name="pozycje">
<xsl:with-param name="raport" select="$raport"/>
<xsl:with-param name="nazwy" select="$jin-nazwy"/>
<xsl:with-param name="podpoz" select="jin:*"/>
<xsl:with-param name="level" select="$level"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="tns:RZiSJednostkaInna">
<xsl:apply-templates select="jin:RZiSKalk"/>
<xsl:apply-templates select="jin:RZiSPor"/>
</xsl:template>
<xsl:template match="jin:RZiSPor">
<xsl:call-template name="rzis">
<xsl:with-param name="wersja" select="'Wersja porównawcza'"/>
<xsl:with-param name="raport" select="'RZiSPor'"/>
<xsl:with-param name="wiersze" select="jin:*"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="jin:RZiSKalk">
<xsl:call-template name="rzis">
<xsl:with-param name="wersja" select="'Wersja kalkulacyjna'"/>
<xsl:with-param name="raport" select="'RZiSKalk'"/>
<xsl:with-param name="wiersze" select="jin:*"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="tns:ZestZmianWKapitaleJednostkaInna">
<xsl:call-template name="kapital"/>
</xsl:template>
<xsl:template match="tns:ZestZmianWKapitale">
<xsl:call-template name="kapital"/>
</xsl:template>
<xsl:template name="kapital">
<section class="pbb">
<div class="tyt">
Zestawienie zmian w kapitale (funduszu) własnym
</div>
<table cellspacing="0" cellpadding="0" class="kapital raport">
<thead>
<tr class="rh">
<th class="al">Lp</th>
<th>Treść / wyszczególnienie</th>
<th class="ar">Bieżący okres</th>
<th class="ar end">Poprzedni okres</th>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="jin:*">
<xsl:with-param name="raport" select="'ZestZmianWKapitaleJednostkaInna'"/>
<xsl:with-param name="level" select="1"/>
</xsl:apply-templates>
</tbody>
</table>
</section>
</xsl:template>
<xsl:template match="jin:PrzeplywyPosr">
<xsl:call-template name="przeplywy">
<xsl:with-param name="metoda" select="'Metoda pośrednia'"/>
<xsl:with-param name="raport" select="'PrzeplywyPosr'"/>
</xsl:call-template>
</xsl:template>
<xsl:template match="jin:PrzeplywyBezp">
<xsl:call-template name="przeplywy">
<xsl:with-param name="metoda" select="'Metoda bezpośrednia'"/>
<xsl:with-param name="raport" select="'PrzeplywyBezp'"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="przeplywy">
<xsl:param name="metoda"/>
<xsl:param name="raport"/>
<section class="pbb">
<div class="tyt">
Rachunek przepływów pieniężnych<br/>
<span class="pod"><xsl:value-of select="$metoda"/></span>
</div>
<table cellspacing="0" cellpadding="0" class="przeplywy raport">
<thead>
<tr class="rh">
<th class="al">Lp</th>
<th>Treść / wyszczególnienie</th>
<th class="ar">Bieżący okres</th>
<th class="ar end">Poprzedni okres</th>
</tr>
</thead>
<tbody>
<xsl:apply-templates select="jin:*">
<xsl:with-param name="raport" select="$raport"/>
<xsl:with-param name="level" select="1"/>
</xsl:apply-templates>
</tbody>
</table>
</section>
</xsl:template>
<xsl:template match="tns:DodatkoweInformacjeIObjasnieniaJednostkaInna">
<section class="pbb">
<div class="tyt">Dodatkowe informacje i objaśnienia</div>
<xsl:apply-templates select="tns:InformacjaDodatkowaDotyczacaPodatkuDochodowego"/>
<xsl:call-template name="dodatkoweInformacjeIObjasnienia">
<xsl:with-param name="pozycje" select="tns:DodatkoweInformacjeIObjasnienia"/>
</xsl:call-template>
</section>
</xsl:template>
<xsl:template match="tns:DodatkoweInformacjeIObjasnieniaJednstkaInna"> <!-- literówka w jin -->
<section class="pbb">
<div class="tyt">Dodatkowe informacje i objaśnienia</div>
<xsl:apply-templates select="tns:InformacjaDodatkowaDotyczacaPodatkuDochodowego"/>
<xsl:call-template name="dodatkoweInformacjeIObjasnienia">
<xsl:with-param name="pozycje" select="tns:DodatkoweInformacjeIObjasnienia"/>
</xsl:call-template>
</section>
</xsl:template>
<xsl:template match="tns:InformacjaDodatkowaDotyczacaPodatkuDochodowego">
<xsl:call-template name="informacjaDodatkowaDotyczacaPodatkuDochodowego"/>
</xsl:template>
<xsl:template match="tns:InformacjaDodatkowaDotyczacaPodatkuDochodowego/*">
<xsl:param name="kapitalowe"/>
<xsl:param name="podstawa"/>
<xsl:param name="poprzedni"/>
<xsl:param name="wyroznienie"/>
<xsl:call-template name="informacjaDodatkowaDotyczacaPodatkuDochodowego-Pozycje">
<xsl:with-param name="kapitalowe" select="$kapitalowe"/>
<xsl:with-param name="podstawa" select="$podstawa"/>
<xsl:with-param name="poprzedni" select="$poprzedni"/>
<xsl:with-param name="wyroznienie" select="$wyroznienie"/>
</xsl:call-template>
</xsl:template>
</xsl:stylesheet>