Support

Home Forums Event Espresso Premium Line item tax in Invoice message for Australia

Line item tax in Invoice message for Australia

Posted: February 11, 2017 at 1:06 am

Viewing 3 reply threads


DarkSpectrum

February 11, 2017 at 1:06 am

Hi,

I am trying to edit the Invoice message to ensure I am complying with Australian tax law for issuing tax invoices but the available shortcodes in the [TICKET_LINE_ITEM_LIST] do not provide the right data elements. Australian tax law requires for sales over $1000.00 that the tax element be listed per line item so I need the following for each ticket:

Line item QTY = [LINE_ITEM_QUANTITY] (e.g. 3)
Line item Cost without tax = [LINE_ITEM_AMOUNT] (e.g. $500.00)
Line item Tax = ??? (e.g. $150.00 (10% GST))
Line item cost with Tax = ???
(e.g. $1650.00)

I tried using [LINE_ITEM_TAXABLE_*] but all I am getting in the preview is an *. Where in the Invoice message can I find the above missing data elements?


DarkSpectrum

February 12, 2017 at 11:59 pm

Can I please get some assistance on this request?


DarkSpectrum

February 14, 2017 at 12:46 am

!Error! (EE4 support not found)

Listen, if what I am asking for is not possible then just say it but remember, I am a paying customer with a paid support plan who deserves a response.


Josh

  • Support Staff

February 14, 2017 at 11:24 am

Hi there,

I’m sorry for the delay, there’s not always support staff working here during the weekends.

This is one way to display tax line items in the invoice:
You add the following to the html table in the Main Content section (set the editor to text mode) :

<tr>
<td colspan="5">[ADDITIONAL_LINE_ITEM_LIST][TAX_LINE_ITEM_LIST]</td>
</tr>

Then you add the following to the [TAX_LINE_ITEM_LIST] section:

</td></tr>
<tr class="item sub-item tax-total">
<td class="item_I">[LINE_ITEM_NAME]</td>
<td class="item_I">[LINE_ITEM_DESCRIPTION]</td>
<td class="item_I"></td>
<td class="item_r">[LINE_ITEM_AMOUNT]</td>
<td class="item_r">[LINE_ITEM_TOTAL]</td>
</tr>
<tr>
<td colspan="5">

Then you add the following to the [ADDITIONAL_LINE_ITEM_LIST] section:

</td>
</tr>
<tr class="item">
<td class="item_I">[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>
<td class="item_I">[LINE_ITEM_DESCRIPTION]</td>
<td class="item_I">[LINE_ITEM_QUANTITY]</td>
<td class="item_c">[LINE_ITEM_AMOUNT]</td>
<td class="item_r">[LINE_ITEM_TOTAL]</td>
</tr>
<tr>
<td colspan="5">
Viewing 3 reply threads

The support post ‘Line item tax in Invoice message for Australia’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso