Two issues.
1- I’ve been tring to edit the default PDF template so that the subtotal block is right justified, but nothing works.
2- In reading the documentation on wiki it says that the PDF are generated by mPDF. In following the link it seems that the mpdfonline.com is dead. It shows" This domain name expired on Mar 6 2017 09:02:22:000PM"
So with 1…This is the block in default.php PDF >
<tr class="text-right"> <td class="text-right"> <td class="text-right"> <table class="text-right"> <tr> <td class="text-right color-n"> <?php echo lang('subtotal'); ?>: </td> <td class="text-right color-n"> <?php echo format_currency($invoice->invoice_item_subtotal); ?> </td> </tr> <?php if ($invoice->invoice_item_tax_total > 0) { ?> <tr> <td class="text-right color-n"> <?php echo lang('item_tax'); ?> </td> <td class="text-right color-n"> <?php echo format_currency($invoice->invoice_item_tax_total); ?> </td> </tr> <?php } ?>
<?php foreach ($invoice_tax_rates as $invoice_tax_rate) : ?> <tr> <td class="text-right color-n"> <?php echo $invoice_tax_rate->invoice_tax_rate_name . ' ' . $invoice_tax_rate->invoice_tax_rate_percent; ?>% </td> <td class="text-right color-n"> <?php echo format_currency($invoice_tax_rate->invoice_tax_rate_amount); ?> </td> </tr> <?php endforeach ?>
<tr class="border-top-l amount-total"> <td class="text-right color-d"> <?php echo lang('total'); ?>: </td> <td class="text-right color-d"> <?php echo format_currency($invoice->invoice_total); ?> </td> </tr> <tr> <td class="text-right color-d"> <?php echo lang('paid'); ?>: </td> <td class="text-right color-d"> <?php echo format_currency($invoice->invoice_paid) ?> </td> </tr> <tr> <td class="text-right color-d"> <b><?php echo lang('balance'); ?>:</b> </td> <td class="text-right color-d"> <b><?php echo format_currency($invoice->invoice_balance) ?></b> </td> </tr> </table> </td> </td> </tr> </table>
I want it to be to the right. Any help would be great!
Craig