37 lines
1.0 KiB
Smarty
37 lines
1.0 KiB
Smarty
|
|
{**
|
||
|
|
* For the full copyright and license information, please view the
|
||
|
|
* docs/licenses/LICENSE.txt file that was distributed with this source code.
|
||
|
|
*}
|
||
|
|
{l s='Taxes:' d='Shop.Pdf' pdf='true'}<br/>
|
||
|
|
|
||
|
|
<table id="tax-tab" width="100%">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th class="header-right small">{l s='Base TE' d='Shop.Pdf' pdf='true'}</th>
|
||
|
|
<th class="header-right small">{l s='Tax Rate' d='Shop.Pdf' pdf='true'}</th>
|
||
|
|
<th class="header-right small">{l s='Tax Value' d='Shop.Pdf' pdf='true'}</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{assign var=has_line value=false}
|
||
|
|
|
||
|
|
{foreach $tax_order_summary as $entry}
|
||
|
|
{assign var=has_line value=true}
|
||
|
|
<tr>
|
||
|
|
<td class="right white">{$currency->prefix} {$entry['base_te']} {$currency->suffix}</td>
|
||
|
|
<td class="right white">{$entry['tax_rate']}</td>
|
||
|
|
<td class="right white">{$currency->prefix} {$entry['total_tax_value']} {$currency->suffix}</td>
|
||
|
|
</tr>
|
||
|
|
{/foreach}
|
||
|
|
|
||
|
|
{if !$has_line}
|
||
|
|
<tr>
|
||
|
|
<td class="white center" colspan="3">
|
||
|
|
{l s='No taxes' d='Shop.Pdf' pdf='true'}
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
{/if}
|
||
|
|
|
||
|
|
</tbody>
|
||
|
|
</table>
|