first commit

This commit is contained in:
2025-03-12 17:06:23 +01:00
commit 2241f7131f
13185 changed files with 1692479 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
/**
* Szablon dla partial'a _price
*
* @package stProduct
* @author Marcin Butlak <marcin.butlak@sote.pl>
* @copyright SOTE
* @license SOTE
* @version $Id: _price.php 2545 2009-08-11 13:58:21Z pawel $
*/
?>
<table class="st_record_list" cellspacing="0">
<thead>
<tr>
<th><b><?php echo __('Netto') ?></b></th>
<th><b><?php echo __('Brutto') ?></b></th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo input_tag ('product[price_netto]', $product->getCurrency()->getIsSystemCurrency() ? st_price_format($product->getPriceNetto()) : null, array('size' => 7, 'disabled' => !$product->getCurrency()->getIsSystemCurrency())) ?></td>
<td><?php echo input_tag ('product[price_brutto]', st_price_format($product->getCurrency()->getIsSystemCurrency() ? $product->getPriceBrutto() : $product->getCurrencyPrice()), array('size' => 7)) ?></td>
</tr>
</tbody>
</table>