Add TPL files

This commit is contained in:
2025-05-12 15:46:37 +00:00
parent 4a4ed02e8a
commit b4d54ba40b
894 changed files with 120580 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<table class="list view" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th nowrap="nowrap" scope="col" style="width:40%">Produkt</th>
<th nowrap="nowrap" scope="col" style="text-align:right;width:20%">Ilość</th>
<th nowrap="nowrap" scope="col" style="text-align:right;width:20%">Cena</th>
<th nowrap="nowrap" scope="col" style="text-align:right;width:20%">Wartość</th>
</tr>
</thead>
<tbody>
{foreach from=$fields.items_list.value key=indeks item=pozycja}
<tr class="evenListRowS1">
<td>
{$pozycja.ecmproduct_name}
</td>
<td style="text-align:right;">
{$pozycja.quantity|number_format:$pozycja.ecmproduct_unit_precision:",":"."}
</td>
<td style="text-align:right;">
{$pozycja.price|number_format:2:",":"."}
</td>
<td style="text-align:right;">
{$pozycja.total|number_format:2:",":"."}
</td>
<tr>
{/foreach}
</tbody>
</table>