Skip to content

Commit 49d5066

Browse files
committed
Add the UI part of the options
1 parent a748be0 commit 49d5066

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed
64.9 KB
Loading

content/rest-api/resources.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,7 +1113,7 @@ Below is the JSON format representing a reference entity.
11131113
Reference entities have attributes that allow to describe their [records](/documentation/resources.html#reference-entity-record-3x-and-ee-only).
11141114

11151115
::: warning
1116-
Note that "Reference entity attribute" are not the same entity as "Attribute", even though they have a lot in common. The first one is used to describe reference entities records, the second one is use to describe products.
1116+
Note that the "Reference entity attribute" resource is not the same as the "Attribute" resource, even though they have a lot in common. The first one is used to describe reference entities records, the second one is use to describe products.
11171117
:::
11181118

11191119
In the Akeneo UI, you can find the attributes that compose a given reference entity by following these simple steps. Go in the `Entities` menu. Click on a reference entity and then, click on the `Attributes` sub menu. Below is an example of the attributes that compose the `Designer` entity in the UI.
@@ -1225,32 +1225,34 @@ Format for the `reference entity single link` and `reference entity multiple lin
12251225
Some type of attributes of reference entities can offer a list of choices. These available choices are reference entity attribute options.
12261226

12271227
::: warning
1228-
Note that "Reference entity attribute option" are not the same entity as "Attribute option", even though they have a lot in common. The first one is an option of an attribute used to describe reference entities records, the second one is an option of an attribute used to describe products.
1228+
Note that the "Reference entity attribute option" resource is not the same as the "Attribute option" resource, even though they have a lot in common. The first one is an option of an attribute used to describe reference entities records, the second one is an option of an attribute used to describe products.
12291229
:::
12301230

12311231
Only attribute of type `single option` or `multiple options` can have options.
12321232

1233-
In the Akeneo UI, ... ?? TODO
1233+
In the Akeneo UI, if you want to manage the options of an reference entity attribute with single and multiple options, first, select a reference entity in the `Entities` menu. Then, click on the `Attributes` sub-menu. Click on the edit button of a single or multiple options attribute. An edit popin should open. Then, click on the `Manage options` button. Here you are! You can view and edit the options of your attribute.
12341234

1235-
![Reference entity attribute options in the Akeneo UI](/img/screenshots/v3.0/....png) // TODO
1235+
The screenshot below shows the screen where you can manage your options.
1236+
1237+
![Reference entity attribute options in the Akeneo UI](/img/screenshots/v3.0/reference_entity_attribute_options.png)
12361238

12371239
Below is the JSON format representing these reference entity attribute options.
12381240

12391241
```json
12401242
{
1241-
"code": "global_nomad",
1243+
"code": "europe",
12421244
"labels": {
1243-
"en_US": "Global Nomad",
1244-
"fr_FR": "Nomade du Monde"
1245+
"en_US": "Europe",
1246+
"fr_FR": "Europe"
12451247
}
12461248
}
12471249
```
12481250
```json
12491251
{
1250-
"code": "new_nordic",
1252+
"code": "asia",
12511253
"labels": {
1252-
"en_US": "New Nordic",
1253-
"fr_FR": "Renouveau Scandinave"
1254+
"en_US": "Asia",
1255+
"fr_FR": "Asie"
12541256
}
12551257
}
12561258
```

0 commit comments

Comments
 (0)