Indexing Prices
Since Ucommerce 10.6.0, prices can be indexed in one of two ways: As part of the product index, or in its own index. What mode to use depends entirely on the use case.
Overview
{
"Name": "Support",
"PrimaryImageUrl": "ImageNotFoundImageURL",
"DisplayName": "Support",
"Sku": "200-000-001",
"UnitPrices": [
"EUR 15 pct": 100.00,
"USD 5 pct": 110.00,
...
],
"PricesInclTax": [
"EUR 15 pct": 115.00,
"USD 5 pct": 115.50,
...
],
"Tax": [
"EUR 15 pct": 15.00,
"USD 5 pct": 5.50,
...
],
...
}Using the Price Index
Calculating Tax
Populating Products with Price(s)
Facets
Prices in the Product Index
Using the Price Index
Filtering Products Using the Price Index
What Indexing Mode to Choose?
Performance
Code Maintainability
Last updated