Skip to content

Commit

Permalink
refactor of sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
boal committed Nov 21, 2024
1 parent 2d7475d commit fdac3e6
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,13 @@ public List<MessstelleAuswertungDTO> getAllVisibleMessstellen() {
}

/**
* tbd
* Ermittelt je Messstelle die in Zeiträume unterteilten Zähldaten.
*
* Die Zähldaten werden aufbereitet und zusätzlich als Tabellenkalkulationsdatei bereitgestellt.
*
* @param options
* @return
* @throws IOException
*/
@LogExecutionTime
public AuswertungMessstelleWithFileDTO ladeAuswertungMessstellen(final MessstelleAuswertungOptionsDTO options) throws IOException {
Expand All @@ -67,7 +72,7 @@ public AuswertungMessstelleWithFileDTO ladeAuswertungMessstellen(final Messstell
* @throws IOException kann beim Erstellen des byte[] geworfen werden. Fehlerbehandlung erfolgt im
* Controller
*/
public byte[] createAuswertungMessstellenSpreadsheet(
protected byte[] createAuswertungMessstellenSpreadsheet(
final MessstelleAuswertungOptionsDTO options,
final List<AuswertungMessstelle> auswertungenProMessstelle) throws IOException {
if (CollectionUtils.isEmpty(options.getMessstelleAuswertungIds())) {
Expand All @@ -78,7 +83,7 @@ public byte[] createAuswertungMessstellenSpreadsheet(
}

/**
* Lädt die Daten pro Messstelle pro Zeitraum.
* Lädt die Daten pro Messstelle je Zeitraum.
*
* @param options Definierte Optionen zum Laden der Daten
* @return Liste an Auswertungen Pro Messstelle
Expand Down

0 comments on commit fdac3e6

Please sign in to comment.