So I've been porting my invoice and quote themes from FusionInvoice and now for the final touches I want to display the product category on the invoices.
I will have a column called article, this will be the product category then I will have a column called description where I will use the sales order, invoice, quote name attribute.
Like this (bold isn't working):
<!-- {{#each itemList}} -->
<tr>
<td style="font-size: 9px;">{{productCategory.name}}</td>
<td style="width:40%; font-size: 9px;">{{name}}</td>
<td style="width:10%; text-align: right; font-size: 9px;" nowrap>{{quantity}}</td>
<td style="width:15%; text-align: right; font-size: 9px;" nowrap>{{unitPrice}}</td>
<td style="width:15%; text-align: right; font-size: 9px;" nowrap>{{amount}}</td>
</tr>
<!-- {{/each}} -->
I will have a column called article, this will be the product category then I will have a column called description where I will use the sales order, invoice, quote name attribute.
Like this (bold isn't working):
<!-- {{#each itemList}} -->
<tr>
<td style="font-size: 9px;">{{productCategory.name}}</td>
<td style="width:40%; font-size: 9px;">{{name}}</td>
<td style="width:10%; text-align: right; font-size: 9px;" nowrap>{{quantity}}</td>
<td style="width:15%; text-align: right; font-size: 9px;" nowrap>{{unitPrice}}</td>
<td style="width:15%; text-align: right; font-size: 9px;" nowrap>{{amount}}</td>
</tr>
<!-- {{/each}} -->
Comment