Enhance CBeteiligte entity with new fields and dynamic logic for Rechtsform, Firmenname, Handelsregisternummer, and Handelsregisterart; update localization and layouts accordingly; modify config timestamps.

This commit is contained in:
2026-01-20 20:29:52 +01:00
parent cccde3f474
commit 452bf296d6
5 changed files with 262 additions and 3 deletions

View File

@@ -3,6 +3,168 @@
"boolFilterList": [
"onlyMy"
],
"dynamicLogic": {
"fields": {
"name": {
"visible": {
"conditionGroup": [
{
"type": "or",
"value": [
{
"type": "equals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
},
{
"type": "isEmpty",
"attribute": "rechtsform"
}
]
}
]
}
},
"firmenname": {
"visible": {
"conditionGroup": [
{
"type": "and",
"value": [
{
"type": "isNotEmpty",
"attribute": "rechtsform"
},
{
"type": "notEquals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
}
]
}
]
},
"required": {
"conditionGroup": [
{
"type": "and",
"value": [
{
"type": "isNotEmpty",
"attribute": "rechtsform"
},
{
"type": "notEquals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
}
]
}
]
}
},
"salutationName": {
"visible": {
"conditionGroup": [
{
"type": "or",
"value": [
{
"type": "equals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
},
{
"type": "isEmpty",
"attribute": "rechtsform"
}
]
}
]
}
},
"firstName": {
"visible": {
"conditionGroup": [
{
"type": "or",
"value": [
{
"type": "equals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
},
{
"type": "isEmpty",
"attribute": "rechtsform"
}
]
}
]
}
},
"lastName": {
"visible": {
"conditionGroup": [
{
"type": "or",
"value": [
{
"type": "equals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
},
{
"type": "isEmpty",
"attribute": "rechtsform"
}
]
}
]
}
},
"handelsregisterArt": {
"visible": {
"conditionGroup": [
{
"type": "and",
"value": [
{
"type": "isNotEmpty",
"attribute": "rechtsform"
},
{
"type": "notEquals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
}
]
}
]
}
},
"handelsregisterNummer": {
"visible": {
"conditionGroup": [
{
"type": "and",
"value": [
{
"type": "isNotEmpty",
"attribute": "rechtsform"
},
{
"type": "notEquals",
"attribute": "rechtsform",
"value": "NatürlichePerson"
}
]
}
]
}
}
}
},
"sidePanels": {
"detail": [
{

View File

@@ -14,6 +14,36 @@
"Dr."
]
},
"rechtsform": {
"type": "enum",
"required": false,
"options": [
"",
"NatürlichePerson",
"GmbH",
"UG",
"AG",
"KG",
"OHG",
"GbR",
"PartG",
"eV",
"eG",
"KGaA",
"SE",
"Einzelunternehmen"
],
"default": "NatürlichePerson",
"tooltip": true,
"isCustom": true
},
"firmenname": {
"type": "varchar",
"required": false,
"maxLength": 255,
"tooltip": true,
"isCustom": true
},
"firstName": {
"type": "varchar",
"maxLength": 100
@@ -104,6 +134,24 @@
"default": "clean",
"tooltip": true,
"isCustom": true
},
"handelsregisterNummer": {
"type": "varchar",
"required": false,
"maxLength": 50,
"tooltip": true,
"isCustom": true
},
"handelsregisterArt": {
"type": "enum",
"required": false,
"options": [
"",
"HRA",
"HRB"
],
"tooltip": true,
"isCustom": true
}
},
"links": {