Originally Posted by
CraigW
I was also not getting tax displayed in the super invoice. I was getting "None!".
In super invoice the tax displayed hinges off the Fed Tax ID number. I just changed the following lines in admin/super_invoice.php:
Old Line 34:
$display_tax = (FED_TAX_ID_NUMBER == '' ? true : false);
New Line 34:
$display_tax = true;
This then ignores the Fed Tax ID value and always displays my local tax rate(AU GST). If I then get an overseas buyer, where I don't need to include any tax, the invoice is still displayed correctly(that is no tax).
Super Orders invoices are only designed for US based shops. But a quick and easy mod, makes it work with shops based in other countries.