Ecom:StockUnit.Volume

Version: - double  

Summary

Returns the volume of the stock unit.

Settings

The value is based on the Volume field for the stock location selected in Stock for the product.

(Ecommerce > Product catalog > Shop > Group > Product > Stock > Edit stock info > Volume)

Examples

Outputting the template tag

@GetDouble("Ecom:StockUnit.Volume")

Check if tag has a value

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

Assign tag to a value for later use

@{ double storedTag = GetDouble("Ecom:StockUnit.Volume"); }

Outputting the template tag

<!--@Ecom:StockUnit.Volume-->

Check if double has a value

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