Skip to content

Commit

Permalink
Merge pull request #459 from spryker-shop/bugfix/frw-8567/master-exte…
Browse files Browse the repository at this point in the history
…nded-dde-configuration

FRW-8567 Integration
  • Loading branch information
asmarovydlo committed Jun 5, 2024
2 parents 607e880 + 1887deb commit b8f3611
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 23 deletions.
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions data/import/common/common/glossary.csv
Original file line number Diff line number Diff line change
Expand Up @@ -911,8 +911,8 @@ dynamic_entity.validation.configuration_not_found,"Dynamic entity configuration
dynamic_entity.validation.configuration_not_found,"Dynamische Entitätskonfiguration für Tabellenalias `%aliasName%` nicht gefunden.",de_DE
dynamic_entity.validation.filter_field_not_found,"Filter field `%filterField%` for table alias `%aliasName%` not found.",en_US
dynamic_entity.validation.filter_field_not_found,"Filterfeld `%filterField%` für Tabellen alias `%aliasName%` nicht gefunden.",de_DE
dynamic_entity.validation.invalid_url,"The URL is invalid. `%errorPath%` field '%fieldName%' must have a URL data format.",en_US
dynamic_entity.validation.invalid_url,"Die URL ist ungültig. `%errorPath%` Feld '%fieldName%' muss ein URL-Datenformat haben.",de_DE
dynamic_entity.validation.invalid_url,"The URL is invalid. `%errorPath%` field `%fieldName%` must have a URL data format.",en_US
dynamic_entity.validation.invalid_url,"Die URL ist ungültig. `%errorPath%` Feld `%fieldName%` muss ein URL-Datenformat haben.",de_DE
dynamic_entity.validation.method_not_allowed,"Method not allowed for the entity `%aliasName%`.",en_US
dynamic_entity.validation.method_not_allowed,"Die Methode ist für die Entität nicht zulässig `%aliasName%`.",de_DE
validator.constraints.password.do_not_match,Passwords don't match,en_US
Expand Down
46 changes: 31 additions & 15 deletions src/Pyz/Zed/DynamicEntity/data/installer/configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,19 @@
"parentFieldName": "id_product_abstract"
}
]
},
{
"name": "productAbstractUrls",
"isEditable": false,
"childDynamicEntityConfiguration": {
"tableAlias": "urls"
},
"relationFieldMappings": [
{
"childFieldName": "fk_resource_product_abstract",
"parentFieldName": "id_product_abstract"
}
]
}
]
},
Expand Down Expand Up @@ -810,9 +823,7 @@
"fieldVisibleName": "id_url",
"isCreatable": false,
"isEditable": false,
"validation": {
"isRequired": false
},
"validation": { "isRequired": false },
"type": "integer"
},
{
Expand All @@ -821,29 +832,34 @@
"isCreatable": true,
"isEditable": true,
"type": "integer",
"validation": { "isRequired": true }
},
{
"fieldName": "url",
"fieldVisibleName": "url",
"isCreatable": true,
"isEditable": true,
"type": "string",
"validation": {
"isRequired": true
"isRequired": true,
"constraints": [{ "name": "url" }]
}
},
{
"fieldName": "fk_resource_product_abstract",
"fieldVisibleName": "fk_resource_product_abstract",
"fieldName": "fk_resource_product_set",
"fieldVisibleName": "fk_resource_product_set",
"isCreatable": true,
"isEditable": true,
"type": "integer",
"validation": {
"isRequired": false
}
"validation": { "isRequired": false }
},
{
"fieldName": "url",
"fieldVisibleName": "url",
"fieldName": "fk_resource_product_abstract",
"fieldVisibleName": "fk_resource_product_abstract",
"isCreatable": true,
"isEditable": true,
"type": "string",
"validation": {
"isRequired": true
}
"type": "integer",
"validation": { "isRequired": false }
}
]
}
Expand Down

0 comments on commit b8f3611

Please sign in to comment.