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,11 @@
<?php
use_helper('stOrder');
$total_amount = $order->getOptTotalAmount();
?>
<?php if ($order->getOrderCurrency()->getExchange() != 1): $currency = stCurrency::getDefault() ?>
<spam class="list_tooltip" title="<?php echo st_order_price_format($order->getOrderCurrency()->exchange($total_amount, true), $currency) ?>">
<?php echo st_order_price_format($total_amount, $order->getOrderCurrency()) ?>
</span>
<?php else: ?>
<?php echo st_order_price_format($total_amount, $order->getOrderCurrency()) ?>
<?php endif; ?>