Details
-
Type: Bug
-
Status: Closed
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: 5.0.0
-
Fix Version/s: 5.0.3
-
Component/s: None
-
Labels:None
Description
To reproduce:
- Create an exclusive tax
- Create an invoice on a client and make sure at least one line item is taxable
- View the invoice pdf
- See that the tax is missing it's name
To resolve change components/invoice_templates/default_invoice/default_invoice_pdf.php line 431 from:
'label' => Language::_('DefaultInvoice.tax_heading', true, $tax->name, $tax->amount),
to
'label' => $tax->description,
components/invoice_templates/perforated_invoice/perforated_invoice_pdf.php line 666 from:
'label' => Language::_('PerforatedInvoice.tax_heading', true, $tax->name, $tax->amount),
to
'label' => $tax->description,
components/invoice_templates/quickbooks_invoice/quickbooks_invoice_pdf.php line 461 from:
'label' => Language::_('QuickbooksInvoice.tax_heading', true, $tax->name, $tax->amount),
to
'label' => $tax->description,
Forum post: https://www.blesta.com/forums/index.php?/topic/15186-invoices-fail-to-show-tax-name/