Premium Support
Last updated 01/02/2021
The Wine Equalisation Tax (WET) is a value-based tax paid on certain dealings with wine sold in Australia. If you make wine, import wine into Australia or sell it by wholesale, you'll generally have to account for WET.
Original article on Product Knowledge base
Setting up the CRM
Follow the steps below to create a drop-down list that allows you to assign WET to a customer.
Go to Map Fields in CRM Settings, click Add Map > Enter the following entry if it does not exist already.
WetTax | Members_102 |
Go to Templates in CRM Settings. > Add the below HTML into Edit Template between Tax Status and Tax Number.
<tr>
<td>WET Tax:</td>
<td>
<asp:dropdownlist id="WETTaxDropDownList" runat="server" bindfield="wettax" TabIndex="2">
<asp:ListItem Value=""></asp:ListItem>
<asp:ListItem Value="Retail">WET on Retail</asp:ListItem>
<asp:ListItem Value="Wholesale">WET on Wholesale</asp:ListItem>
</asp:dropdownlist>
</td>
</tr>
|
Using WET in the CRM
We really appreciate your feedback.