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
Jonathan Reissmueller
created issue -
Jonathan Reissmueller
made changes -
Field | Original Value | New Value |
---|---|---|
Rank | Ranked higher |
Jonathan Reissmueller
made changes -
Rank | Ranked higher |
Jonathan Reissmueller
made changes -
Fix Version/s | 5.0.3 [ 11707 ] | |
Fix Version/s | Short Term [ 10800 ] | |
Assignee | Jonathan Reissmueller [ jonathan ] |
Jonathan Reissmueller
made changes -
Sprint | 5.0.3 Sprint 1 [ 130 ] |
Jonathan Reissmueller
made changes -
Rank | Ranked lower |
Jonathan Reissmueller
made changes -
Status | Open [ 1 ] | In Progress [ 3 ] |
Jonathan Reissmueller
made changes -
Status | In Progress [ 3 ] | In Review [ 5 ] |
Resolution | Fixed [ 1 ] |
Jonathan Reissmueller
made changes -
Remaining Estimate | 0 minutes [ 0 ] | |
Time Spent | 25 minutes [ 1500 ] | |
Worklog Id | 14762 [ 14762 ] |
Jonathan Reissmueller
made changes -
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: {code:java} 'label' => Language::_('DefaultInvoice.tax_heading', true, $tax->name, $tax->amount), {code} to {code:java} 'label' => $tax->description, {code} components/invoice_templates/perforated_invoice/perforated_invoice_pdf.php line 666 from: {code:java} 'label' => Language::_('PerforatedInvoice.tax_heading', true, $tax->name, $tax->amount), {code} to {code:java} 'label' => $tax->description, {code} components/invoice_templates/quickbooks_invoice/quickbooks_invoice_pdf.php line 461 from: {code:java} 'label' => Language::_('QuickbooksInvoice.tax_heading', true, $tax->name, $tax->amount), {code} to {code:java} 'label' => $tax->description, {code} |
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: {code:java} 'label' => Language::_('DefaultInvoice.tax_heading', true, $tax->name, $tax->amount), {code} to {code:java} 'label' => $tax->description, {code} components/invoice_templates/perforated_invoice/perforated_invoice_pdf.php line 666 from: {code:java} 'label' => Language::_('PerforatedInvoice.tax_heading', true, $tax->name, $tax->amount), {code} to {code:java} 'label' => $tax->description, {code} components/invoice_templates/quickbooks_invoice/quickbooks_invoice_pdf.php line 461 from: {code:java} 'label' => Language::_('QuickbooksInvoice.tax_heading', true, $tax->name, $tax->amount), {code} to {code:java} 'label' => $tax->description, {code} Forum post: https://www.blesta.com/forums/index.php?/topic/15186-invoices-fail-to-show-tax-name/ |
Abdy Franco
made changes -
Time Spent | 25 minutes [ 1500 ] | 42 minutes [ 2520 ] |
Worklog Id | 14763 [ 14763 ] |
Jonathan Reissmueller
made changes -
Status | In Review [ 5 ] | Closed [ 6 ] |