Show including tax amount on Documents

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • wdbruwer
    Junior Member
    • Jan 2023
    • 15

    #1

    Show including tax amount on Documents

    We would like to show the including tax amount on quotes for each line item/product, how do we go about this?

    Alternatively is there away to have product unit prices as including VAT amount and have quotes/invoices etc. display as including VAT as default and just a total VAT at the bottom onfo the quote?
  • victor
    Active Community Member
    • Aug 2022
    • 935

    #2
    For example, Quote and Quote Items:

    1. In Administration > Entity Manager > Quote Item > Fields, create a field called myTaxAmount with Currency type.

    Click image for larger version  Name:	image.png Views:	0 Size:	27.3 KB ID:	118879

    2.In Administration > Entity Manager > Quote Item > Formula > Before Save Custom Script, create the formula:

    HTML Code:
    myTaxAmount = taxRate/100*amount;
    3. Add the myTaxAmount field in Administration > Entity Manager > Quote Item > Layouts > List (Item).

    - For the formula to work, you must specify the Tax Rate in your Quote Item:​

    Click image for larger version

Name:	image.png
Views:	0
Size:	47.7 KB
ID:	118881
    - The value in the myTaxAmount field will be calculated after saving changes to your Quote Item, not in inline editing mode.​
    Last edited by victor; Today, 05:10 PM.

    Comment

    Working...