Files
2025-05-12 15:46:37 +00:00

46 lines
2.5 KiB
Smarty
Executable File

<link class="theme" rel="stylesheet" href="modules/EcmReports/tpls/PDF/css/style.css">
<h1>{$MOD.LBL_REPORT} {$MOD.LBL_REPORT_ECMWORKCARDS}</h1>
<table id="myTable" class="tablesorter tablesorter-blue" role="grid">
<thead>
<tr class="tablesorter-headerRow" role="row">
<th width="15%" style = "border-bottom: 1px solid black;text-align: left">{$MOD.LBL_WORKER_NAME}</th>
<th width="7%" style = "border-bottom: 1px solid black;text-align: left">{$MOD.LBL_ACTION_CODE}</th>
<th width="30%" style = "border-bottom: 1px solid black;text-align: left">{$MOD.LBL_ACTION}</th>
<th width="5%" style = "border-bottom: 1px solid black;text-align: left">{$MOD.LBL_QUANTITY}</th>
<th width="7%" style = "border-bottom: 1px solid black;text-align: left">{$MOD.LBL_PRODUCT_CODE}</th>
<th width="40%" style = "border-bottom: 1px solid black;text-align: left">{$MOD.LBL_PRODUCTS}</th>
<th width="10%" style = "border-bottom: 1px solid black;text-align: right">{$MOD.LBL_SUM_NETTO}</th>
<th width="10%" style = "border-bottom: 1px solid black;text-align: right">{$MOD.LBL_SUM_BRUTTO}</th>
</tr>
</thead>
<tbody>
{foreach from=$data item=rekord key=kl}
<tr id="parent_{$kl}" class="{$rekord.class}">
<td style = "border-top: 1px solid black;border-left: 1px solid black;">{$rekord.work_name}</td>
<td colspan="5" style = "border-top: 1px solid black;"></td>
<td style = "border-top: 1px solid black;text-align: right">{$rekord.netto}</td>
<td style = "border-top: 1px solid black;border-right: 1px solid black;text-align: right">{$rekord.brutto}</td>
</tr>
{foreach from=$rekord.actions item=czynnosc}
<tr style="background-color: #e6e6e6;">
<td style = "border-left: 1px solid black;text-align: left"></td>
<td style = "text-align: left">{$czynnosc.actioncode}</td>
<td style = "text-align: left">{$czynnosc.actionname}</td>
<td style = "text-align: right">{$czynnosc.quantity}</td>
<td style = "text-align: left">{$czynnosc.productcode}</td>
<td style = "text-align: left">{$czynnosc.productname}</td>
<td style = "text-align: right">{$czynnosc.netto}</td>
<td style = "border-right: 1px solid black;text-align: right">{$czynnosc.brutto}</td>
</tr>
{/foreach}
{/foreach}
</tbody>
<tfoot>
<tr>
<th style="text-align: left;">{$MOD.LBL_SUM}</th>
<th colspan="5"></th>
<th style="text-align: right">{$suma.netto}</th>
<th style="text-align: right">{$suma.brutto}</th>
</tr>
</tfoot>
</table>