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,20 @@
<?php if ($order->getDescription() != "") : ?>
<table border="1" cellspacing="0" cellpadding="4" width="502" style="font-size: 8px;">
<tr>
<td bgcolor="#ccc"><b><?php echo __('Uwagi klienta') ?></b></td>
</tr>
<tr>
<td><?php echo $order->getDescription(); ?></td>
</tr>
</table>
<?php endif; ?>
<?php if ($order->getMerchantNotes() != "") : ?>
<table border="1" cellspacing="0" cellpadding="4" width="502" style="font-size: 8px;">
<tr>
<td bgcolor="#ccc"><b><?php echo __('Notatki sprzedawcy') ?></b></td>
</tr>
<tr>
<td><?php echo str_replace("\n", "<br />", $order->getMerchantNotes()); ?></td>
</tr>
</table>
<?php endif; ?>