-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added new field internerBezeicher (internal_identifier) #393
base: main
Are you sure you want to change the base?
Conversation
updated localisation fixed wrong intendations, tool long lines (code sniffer warnings) added new json-schema field internerBezeichner to test data in unittests Fix after rebase
value="data.grunddaten.internerBezeichner" | ||
e-ng-required="false"></editable-field> | ||
</div> | ||
` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems not to be intended.
value="data.grunddaten.internerBezeichner" | ||
e-ng-required="false"></editable-field> | ||
</div> | ||
` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems not to be intended.
@@ -78,6 +78,7 @@ public function testValidation(): void { | |||
$grunddaten = (object) [ | |||
'titel' => 'Test', | |||
'kurzbeschreibungDesInhalts' => 'foo bar', | |||
'internerBezeichner' => 'interne id', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seeing this I think we have problems with the field mapping when used in report forms. The value would be mapped to the FundingClearingProcess
entity which makes no sense. So this field either has to be read only in clearing forms or the value has to be mapped to the FundingApplicationProcess
entity.
systopia-reference: 25581
Added new field internalIdentifier to:
Adjusted unit tests and updated localisation.