Bug report (small) discount is not substracted pdf template invoiceplane.php

Hi,

I would just let you know that the total-amount of an item does not take the discount into account in the standard pdf template of quote and invoice.
solution:
Instead of using:

<td class="text-right">
   <?php echo format_currency($item->item_subtotal); ?>
</td>

use:

<td class="text-right">
   <?php echo format_currency($item->item_total); ?>
</td>
1 Like

[size=10]Last Update: 14.02.2016[/size]