Files
2025-03-12 17:06:23 +01:00

20 lines
691 B
PHP

<?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; ?>