List<Annotation> annotations = StocksYearlyReportViewModel
.getStocksAnnotationsUntilYear(bookSelection, currentYear);
StocksHistory stocksHistory = StocksUtils.getStocksHistory(annotations);
for (String currentConcept : stocksHistory.getStocksErrorsHistoryMap()
.keySet()) {
StocksIncomeError currentError = stocksHistory
.getStocksErrorsHistoryMap().get(currentConcept);
ConceptValidation conceptValidation = new ConceptValidation(
currentConcept, currentError.toString());
conceptValidations.add(conceptValidation);
}
return conceptValidations;
}