Taxes
  • 18 Apr 2024
  • 1 Minute to read
  • Dark
    Light

Taxes

  • Dark
    Light

Article Summary

The following steps will guide you through Blackthorn's official recommendation for handling tax/GST.

Please Read

If the checkout amount includes cents, i.e., $1135.66, there is a chance that the updates to the Unit Price, Tax Rate, and Total Amount won't round correctly. This can be fixed by adding additional logic to your trigger during updates and calculations. Please test your flow before using it.

  1. Create a custom Pre-tax Price currency field on the Event Itemobject.
    1. Click the Gear icon.
    2. Click Setup.
    3. Click the Object Manager tab.
    4. In the Quick Find box, enter and click “Event Item”.
    5. Click the Field & Relationships tab.
    6. Click New.
    7. Check Currency.
    8. Click Next.
    9. Set Field Label = “Pre-tax Price”.
    10. Set Length = “16”.
    11. Set Decimal Places = “2”.
    12. Check Auto add to custom report type.
    13. Click Next.
    14. Review and update the permissions.
    15. Click Next.
    16. Check Event Item Layout to add the new field to the Event Item page layout.
    17. Click Save.
      Event Item_PreTax Price
  2. Enter a tax rate in the Event Item Tax Rate field.
    Event Item_Tax Rate
  3. Enter the total amount after taxes in the Event Item Price field.
    Event Item_Price
  4. Enter “Total price includes tax.” in the Event Item Description field.
    Event Item_Description
  5. The Attendee will see that the total price includes tax during checkout.
    Tax_Checkout
  6. Since the Invoice’s Line Item doesn’t show the tax rate, use a flow to override the Line Item Tax Rate field with the related Event Item values.
    Line Item_Unit Price
  7. Include the following steps in the flow.
    1. Reference the related Event Item to grab the pre-tax Event Item Price ($900) and update the Line Item Unit Price.
    2. Grab the Event Item Tax Rate (26.1112%) and update the related Line Item Tax Rate field.
  8. The result should look like this.
    Line Item_Unit Price_2
  9. The DocumentLink's Invoice will now include the tax in the total amount due.


What's Next