Skip to content
Snippets Groups Projects
Commit 7da19256 authored by hkarwa2s's avatar hkarwa2s
Browse files

Letzter Commit, fix in der ArtikelerstellungsControl

parent 6526db25
Branches Anforderungen
No related tags found
No related merge requests found
......@@ -181,7 +181,6 @@ public class ArtikelerstellungsView extends TemplateView implements View {
}
nsModul.setNullSelectionAllowed(false);
// Kann hier jemand den Fehler finden? <------------------------------------------
HorizontalLayout hKommand = new HorizontalLayout(bAbbrechen, bErstellen);
HorizontalLayout hVerfuegbarkeit = new HorizontalLayout(dfVon, dfBis);
HorizontalLayout hKriterien = new HorizontalLayout(nsKategorie, nsModul);
......
......@@ -9,6 +9,7 @@ import com.vaadin.ui.Image;
import java.util.Date;
import java.util.List;
import org.s4s.dao.ProductDAO;
import org.s4s.dao.impl.ProductDAOimpl;
import org.s4s.exceptions.DAOException;
import org.s4s.modell.dto.Product;
......@@ -20,6 +21,10 @@ public class ArtikelerstellungsControl {
private static ProductDAO pDAO = null;
public ArtikelerstellungsControl() {
pDAO = ProductDAOimpl.getInstance();
}
public List<Product> getProductByDescription(String typ) throws DAOException {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment