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/

        Activity

        There are no comments yet on this issue.

          People

          • Assignee:
            jonathan Jonathan Reissmueller
            Reporter:
            jonathan Jonathan Reissmueller
          • Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved:
              Fix Release Date:
              23/Feb/21

              Time Tracking

              Estimated:
              Original Estimate - Not Specified
              Not Specified
              Remaining:
              Remaining Estimate - 0 minutes
              0m
              Logged:
              Time Spent - 42 minutes
              42m

                Agile