How can I display the promotion(s) applied to a sa...
# advancedpdf
l
How can I display the promotion(s) applied to a sales order in the picking ticket? This is my code but it's not displaying anything.
<#if record.promotions?has_content>
<table class="memo"><!-- start items --><#list record.promotions as promotions><#if promotions_index==0>
<tr>
<td><strong>Promotions</strong></td>
</tr></#if>
<tr>
<td><strong>${promotions.promocode_display}</strong></td>
</tr></#list>
</table>
</#if>