Akeneo e3 is compatible with Akeneo Enrichment Rules.
You may copy your existing enrichment rules and use them with e3.
This action assigns values to fields or attributes.
Akeneo e3 supports expressions for this action.
This action allows adding values to a multi-select attribute, a reference entity multiple links attribute or a product to categories or groups.
Akeneo e3 supports expressions for this action.
This action removes values from a multi-select attribute, a reference entity multiple links attribute or a product category.
Akeneo e3 supports expressions for this action.
e3 supports copying one value to another using a set
action with an expression.
For example, copy a product name
to description
:
actions:
-
type: set
field: description
scope: web
locale: en_GB
expression: 'value("name", "web", "en_GB")'
e3 supports concatenation using a set
action with an expression.
For example, concatenate description
using values from name
, brand
and model
attributes:
actions:
-
type: set
field: description
scope: web
locale: en_GB
expression: 'value("name", "web", "en_GB") ~ " / " ~ value("brand", null, null) ~ " / " ~ value("model", null, null)'
TBD
e3 supports calculation using a set
action with an expression.
And this is much easier than a syntax of Akeneo rules ;)
For example, calculate a valume
using values from height
and radius
attributes:
actions:
-
type: set
field: volume
scope: null
expression: '3.14 * value("height") * (value("radius") ** 2)'