Skip to content

Commit 009d1d6

Browse files
authored
Merge pull request #1017 from akeneo/MAS-324
MAS-324: Add decimal places configuration
2 parents b24b227 + 9418c15 commit 009d1d6

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

content/swagger/akeneo-web-api.json

+1-1
Large diffs are not rendered by default.

content/swagger/resources/attributes/definitions/attribute.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,14 @@ properties:
216216
type: boolean
217217
description: This attribute must be enriched from the moment a product is created. It will be mandatory across all families.
218218
x-warning: Only for `pim_catalog_boolean`, `pim_catalog_identifier`, `pim_catalog_number`, `pim_catalog_simpleselect`, `pim_catalog_textarea`, `pim_catalog_text`, `pim_reference_data_simpleselect` or `akeneo_reference_entity` attribute types
219+
decimal_places_strategy:
220+
type: string
221+
description: Defines the decimal places strategy. Available options are `round`, `forbid` and `trim`.
222+
x-warning: Only for `pim_catalog_number` or `pim_catalog_metric` attribute types
223+
decimal_places:
224+
type: number
225+
description: Defines the number of decimal places when decimal places strategy is `round` or `forbid`.
226+
x-warning: Only for `pim_catalog_number` or `pim_catalog_metric` attribute types
219227
example:
220228
{
221229
"code": "release_date",
@@ -246,5 +254,7 @@ example:
246254
"scopable": false,
247255
"default_value": null,
248256
"labels": { "en_US": "Sale date", "fr_FR": "Date des soldes" },
249-
"is_mandatory": false
257+
"is_mandatory": false,
258+
"decimal_places_strategy": null,
259+
"decimal_places": null
250260
}

content/swagger/resources/attributes/routes/attributes.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ get:
102102
"default_value": null,
103103
"labels": { "en_US": "Identifier", "fr_FR": "Identifiant" },
104104
"is_mandatory": false,
105+
"decimal_places_strategy": null,
106+
"decimal_places": null
105107
},
106108
{
107109
"_links":
@@ -140,6 +142,8 @@ get:
140142
"labels":
141143
{ "en_US": "Sale date", "fr_FR": "Date des soldes" },
142144
"is_mandatory": false,
145+
"decimal_places_strategy": null,
146+
"decimal_places": null
143147
},
144148
{
145149
"_links":
@@ -177,6 +181,8 @@ get:
177181
"labels":
178182
{ "en_US": "Composition", "fr_FR": "Composition" },
179183
"is_mandatory": false,
184+
"decimal_places_strategy": null,
185+
"decimal_places": null,
180186
"guidelines": {},
181187
"auto_option_sorting": null,
182188
"is_read_only": null,

0 commit comments

Comments
 (0)