update typo

This commit is contained in:
Gaby Heinle 2024-07-10 11:06:39 +02:00
parent 257649e528
commit ca62a97941

View file

@ -1,13 +1,8 @@
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:i="http://java.sun.com/jsf/composite/imixs"
xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
xmlns:fn="http://xmlns.jcp.org/jsp/jstl/functions"
xmlns:marty="http://java.sun.com/jsf/composite/marty"
template="/layout/template.xhtml">
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html" xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:i="http://java.sun.com/jsf/composite/imixs" xmlns:c="http://java.sun.com/jsp/jstl/core"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough" xmlns:fn="http://xmlns.jcp.org/jsp/jstl/functions"
xmlns:marty="http://java.sun.com/jsf/composite/marty" template="/layout/template.xhtml">
@ -51,18 +46,18 @@
</div>
<h:panelGroup layout="block" styleClass="imixs-body"
id="analyse_panel">
<h:panelGroup layout="block" styleClass="imixs-body" id="analyse_panel">
<div class="imixs-form-panel">
<div class="ui-state-highlight ui-corner-all"
style="margin-bottom: 10px; padding: .5em;">
<p>Der folgende Report zeigt an, wieviele <i>Rechnungseingänge</i>, <i>Verteilungen</i> und
<div class="ui-state-highlight ui-corner-all" style="margin-bottom: 10px; padding: .5em;">
<p>Der folgende Report zeigt an, wieviele <i>Rechnungseingänge</i>, <i>Verteilungen</i>
und
<i>Sachprüfungen</i> in einem bestimmten Zeitraum durchgeführt
wurden. Der Report dient dazu die Verteilung der Aufgaben in den jweiligen Teams zu
Optimieren.</p>
wurden. Der Report dient dazu die Verteilung der Aufgaben in den jeweiligen Teams zu
optimieren.
</p>
</div>
<div class="imixs-form-section-3">
<dl>
@ -98,12 +93,9 @@
</div>
<h:commandButton
actionListener="#{invoiceAnalyseController.analyse()}"
action="/pages/admin/analyse_invoicing"
value="Report starten">
<f:ajax render="result_panel" execute="@form"
onevent="updatePanel" />
<h:commandButton actionListener="#{invoiceAnalyseController.analyse()}"
action="/pages/admin/analyse_invoicing" value="Report starten">
<f:ajax render="result_panel" execute="@form" onevent="updatePanel" />
</h:commandButton>
<h:commandButton value="#{message.close}" action="notes" />
@ -113,24 +105,22 @@
<h:panelGroup layout="block" styleClass="imixs-form-panel"
id="result_panel">
<h:panelGroup layout="block" styleClass="imixs-form-panel" id="result_panel">
<hr />
<div class="row">
<div class="col-4">
<ui:fragment
rendered="#{invoiceAnalyseController.buchhaltung!=null}">
<ui:fragment rendered="#{invoiceAnalyseController.buchhaltung!=null}">
<h2>Buchhaltung
(#{invoiceAnalyseController.totalCountByCategory(invoiceAnalyseController.buchhaltung)})</h2>
(#{invoiceAnalyseController.totalCountByCategory(invoiceAnalyseController.buchhaltung)})
</h2>
<table class="monitoring-datatable">
<tr>
<th>Mitarbeiter</th>
<th></th>
</tr>
<c:forEach
items="#{invoiceAnalyseController.buchhaltung.labels}"
<c:forEach items="#{invoiceAnalyseController.buchhaltung.labels}"
var="entry">
<tr>
<td>#{userController.getUserName(entry.key)}</td>
@ -152,17 +142,16 @@
<div class="col-4" style="padding-left: 0;">
<ui:fragment
rendered="#{invoiceAnalyseController.verteilung!=null}">
<ui:fragment rendered="#{invoiceAnalyseController.verteilung!=null}">
<h2>Verteilung zur Prüfung
(#{invoiceAnalyseController.totalCountByCategory(invoiceAnalyseController.verteilung)})</h2>
(#{invoiceAnalyseController.totalCountByCategory(invoiceAnalyseController.verteilung)})
</h2>
<table class="monitoring-datatable">
<tr>
<th>Mitarbeiter</th>
<th></th>
</tr>
<c:forEach
items="#{invoiceAnalyseController.verteilung.labels}"
<c:forEach items="#{invoiceAnalyseController.verteilung.labels}"
var="entry">
<tr>
<td>#{userController.getUserName(entry.key)}</td>
@ -174,17 +163,16 @@
</div>
<div class="col-4">
<ui:fragment
rendered="#{invoiceAnalyseController.sachpruefung!=null}">
<ui:fragment rendered="#{invoiceAnalyseController.sachpruefung!=null}">
<h2>Sachprüfung
(#{invoiceAnalyseController.totalCountByCategory(invoiceAnalyseController.sachpruefung)})</h2>
(#{invoiceAnalyseController.totalCountByCategory(invoiceAnalyseController.sachpruefung)})
</h2>
<table class="monitoring-datatable">
<tr>
<th>Mitarbeiter</th>
<th></th>
</tr>
<c:forEach
items="#{invoiceAnalyseController.sachpruefung.labels}"
<c:forEach items="#{invoiceAnalyseController.sachpruefung.labels}"
var="entry">
<tr>
<td>#{userController.getUserName(entry.key)}</td>