@DependsOn("annotations")
public List<ConceptValidation> getWrongStockConcepts() {
List<ConceptValidation> conceptValidations = new LinkedList<ConceptValidation>();
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);
}