Newer
Older
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
<table class="articles-sum">
<tbody>
<tr class="articles-sum-row-subsum">
<td class="articles-sum-row-firstCell">
<span class="articles-sum-row-subsum-text">
{{textSubSum}}
</span>
</td>
<td style="width: 140px" class="articles-sum-row-sndCell">
<span class="articles-sum-row-subsum-value">
{{valueSubSum}}
</span>
</td>
</tr>
{{#priceFactors}}
<tr>
<td class="articles-sum-row-firstCell">
<span class="articles-sum-row-firstCell-text">
{{title}}
</span>
</td>
<td class="articles-sum-row-sndCell">
<span class="articles-sum-row-firstCell-value">
{{valueText}}
</span>
</td>
</tr>
{{/priceFactors}}
{{#vat}}
<tr>
<td>
<span class="articles-sum-vat-text">
{{text}}
</span>
</td>
<td>
<span class="articles-sum-vat-value">
{{sum}}
</span>
</td>
</tr>
{{/vat}}
<tr class="articles-sum-row-sum">
<td class="articles-sum-row-firstCell">
<span class="articles-sum-row-sum-text">
{{textSum}}
</span>
</td>
<td class="articles-sum-row-sndCell">
<span class="articles-sum-row-sum-value">
{{valueSum}}
</span>
</td>
</tr>
</tbody>
</table>