-
Notifications
You must be signed in to change notification settings - Fork 2
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?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,12 @@ <h2>{{ ts('General') }}</h2> | |
value="data.grunddaten.kurzbeschreibungDerInhalte" | ||
e-ng-required="true"></editable-field> | ||
</div> | ||
|
||
<div> | ||
<editable-field label="'Interner Bezeichner'" type="text" | ||
value="data.grunddaten.internerBezeichner" | ||
e-ng-required="false"></editable-field> | ||
</div> | ||
` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems not to be intended. |
||
<div> | ||
<h3>Zeiträume <funding-validation-errors errors="errors['/grunddaten/zeitraeume']"></funding-validation-errors></h3> | ||
<table class="table table-condensed table-striped table-hover"> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. in |
||
'zeitraeume' => [ | ||
(object) [ | ||
'beginn' => '2022-08-24', | ||
|
@@ -234,6 +235,7 @@ public function testValidationSpracheAndere(): void { | |
$grunddaten = (object) [ | ||
'titel' => 'Test', | ||
'kurzbeschreibungDesInhalts' => 'foo bar', | ||
'internerBezeichner' => 'interne id', | ||
'zeitraeume' => [ | ||
(object) [ | ||
'beginn' => '2022-08-24', | ||
|
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.
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.
could you elaborate?