first commit
This commit is contained in:
@@ -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; ?>
|
||||
Reference in New Issue
Block a user