Ecom:Order.SalesDiscount

Version: - double  

Summary

Returns the sales discount of the current order.

Settings

The value is generated automatically.

Examples

Outputting the template tag

@GetDouble("Ecom:Order.SalesDiscount")

Check if tag has a value

@if(!double.IsNullOrWhiteSpace(GetDouble("Ecom:Order.SalesDiscount"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:Order.SalesDiscount"); }

Outputting the template tag

<!--@Ecom:Order.SalesDiscount-->

Check if double has a value

<!--@If Defined(@Ecom:Order.SalesDiscount)--> Let's output this tag here: <strong><!--@Ecom:Order.SalesDiscount--></strong> <!--@EndIf(@Ecom:Order.SalesDiscount)-->