You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.4 KiB
44 lines
1.4 KiB
<% |
|
String systeminfo_id=""; |
|
String componentName=""; |
|
String componentUniquename=""; |
|
String componentVersion=""; |
|
%> |
|
<db:dbform tableName="systeminfo" maxRows="*" autoUpdate="false" captionResource="true" multipart="false" followUp="/edit/etl/etl_manager.jsp" filter="" orderBy="name" |
|
dbConnectionName="<%= mandantenid %>" ><db:header> |
|
<input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}"/> |
|
<ul> |
|
</db:header> |
|
<db:errors/> |
|
<db:body allowNew="false"> |
|
<% |
|
systeminfo_id=currentRow_systeminfo.get("tid").toString(); |
|
componentName=currentRow_systeminfo.get("name").toString().trim(); |
|
%> |
|
<db:dbform orderBy="" childField="systeminfo_id" parentField="tid" tableName="db_version" maxRows="1" captionResource="true" followUp="" autoUpdate="false" multipart="false" dbConnectionName="<%= mandantenid %>"> |
|
<db:header/> |
|
<db:errors/> |
|
<db:body allowNew="false"> |
|
<% |
|
if(currentRow_db_version!=null) |
|
{ |
|
componentUniquename=currentRow_db_version.get("his_system").toString().trim(); |
|
componentVersion=currentRow_db_version.get("version").toString().trim(); |
|
} |
|
else |
|
{ |
|
componentUniquename="Unbekannt"; |
|
componentVersion="Unbekannt"; |
|
} |
|
%> |
|
|
|
</db:body> |
|
<db:footer/> |
|
</db:dbform> |
|
<li> |
|
<a onClick="<%= "getComponentMenu("+systeminfo_id+",'"+componentName+"','"+componentUniquename+"','"+componentVersion+"');"%>" style="color:blue;cursor: pointer;"><db:label nullFieldValue="" styleClass="clsInputStyle" fieldName="name"/></a> |
|
</li> |
|
</db:body> |
|
<db:footer> |
|
</ul> |
|
</db:footer></db:dbform>
|
|
|