Dynamicweb.eCommerce.Orders Namespace > VatProvider Class : FindVatPercent Method |
'Declaration
Public Overridable Function FindVatPercent( _ ByVal DefaultVatPercent As Double, _ ByVal Product As Product _ ) As Double
public virtual double FindVatPercent( double DefaultVatPercent, Product Product )
public class MyVatProvider:Dynamicweb.eCommerce.Orders.VatProvider { public override Double FindVatPercent(Double defaultVatPercent, Product product) { Dynamicweb.eCommerce.Prices.PriceRaw ReturnFee = null; if (Product.Meta.Keywords.IndexOf("LUX") > -1) return 20; else return defaultVatPercent; } }
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2