-
Notifications
You must be signed in to change notification settings - Fork 0
/
Listing 4.2 - HTML-Template der Rueckseite der Karte
36 lines (36 loc) · 1.26 KB
/
Listing 4.2 - HTML-Template der Rueckseite der Karte
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
<body>
<div class="card">
<h3>Lager</h3>
<table>
<tr>
<th class="ItemNumberColumn">Position</th>
<th class="DescriptionColumn">Bezeichnung</th>
<th class="QuantityOrderedColumn">Menge</th>
<th class="QuantityStockColumn">Bestand</th>
</tr>
{{#each dataSets.[0].data.d.Items.results}}
<tr>
<td class="ItemNumberColumn">{{ItemNumber}}</td>
<td class="DescriptionColumn">{{ProductDetails.ShortDescription}}</td>
<td class="QuantityOrderedColumn">{{Quantity}} {{QuantityUnit}}</td>
<td class="QuantityStockColumn">{{ProductDetails.StockDetails.Quantity}} {{ProductDetails.QuantityUnit}}</td>
</tr>
{{/each}}
</table>
<h3>Lieferanten</h3>
<table>
<tr>
<th class="ItemNumberColumn">Position</th>
<th class="DescriptionColumn">Bezeichnung</th>
<th class="SupplierColumn">Lieferant</th>
</tr>
{{#each dataSets.[0].data.d.Items.results}}
<tr>
<td class="ItemNumberColumn">{{ItemNumber}}</td>
<td class="DescriptionColumn">{{ProductDetails.ShortDescription}}</td>
<td class="SupplierColumn">{{ProductDetails.SupplierDetails.SupplierName}}</td>
</tr>
{{/each}}
</table>
</div>
</body>