Package crud

Examples of crud.UrunlerAnaCRUD


     table.setWidth("470px");
     table.setHeight("500px");
     table.setImmediate(true);
     table.setSelectable(true);
    
     UrunlerAnaCRUD urunlerAnaCRUD = new UrunlerAnaCRUD();
     table.addContainerProperty("Ürün Kodu", String.class,  null);
     table.addContainerProperty("Ürün Adı", String.class,  null);
     table.addContainerProperty("Ürün Markası", String.class,  null);
     table.addContainerProperty("Ürün Modeli", String.class,  null);
     List<UrunlerAnaDAO> array = urunlerAnaCRUD.findAllUrunAna();
    
     ComboBox urunAdıFilterCombo = new ComboBox("Ürün Adı");
     ComboBox urunKoduFilterCombo = new ComboBox("Ürün Kodu");
     ComboBox urunMarkasiFilterCombo = new ComboBox("Ürün Markası");
     ComboBox urunModeliFilterCombo = new ComboBox("Ürün Modeli");
View Full Code Here


   
   
    kaydetButton.addListener(new ClickListener() {
     
      public void buttonClick(ClickEvent event) {
        UrunlerAnaCRUD urunlerAnaCRUD = new UrunlerAnaCRUD();
        UrunlerAnaDAO urunlerAnaDAO = new UrunlerAnaDAO();
        UrunlerExtraDAO urunlerExtraDAO = new UrunlerExtraDAO();
        urunlerAnaDAO.setUrunAdi(urunAdi.getValue().toString());
        urunlerAnaDAO.setUrunKodu(urunKodu.getValue().toString());
        urunlerAnaDAO.setUrunMarka(urunMarka.getValue().toString());
        urunlerAnaDAO.setUrunKategori(urunKategori.getValue().toString());
        urunlerAnaDAO.setUrunModel(urunModel.getValue().toString());
        urunlerAnaDAO.setUrunAlis(Double.parseDouble(urunAlisFiyati.getValue().toString()));
        urunlerAnaDAO.setUrunAlisParaBirim(urunAlisBirim.getValue().toString());
        urunlerAnaDAO.setUrunSatis(Double.parseDouble(urunSatisFiyati.getValue().toString()));
        urunlerAnaDAO.setUrunSatisParaBirim(urunSatisBirim.getValue().toString());
        urunlerAnaDAO.setUrunKdv(Double.parseDouble(urunKdv.getValue().toString()));
        urunlerExtraDAO.setUrunAciklama(urunAciklama.getValue().toString());
        urunlerExtraDAO.setUrunAciklamaF(urunAciklamaIng.getValue().toString());
        urunlerExtraDAO.setUrunAdiF(urunAdiIng.getValue().toString());
        urunlerExtraDAO.setUrunBayi(Double.parseDouble(urunBayiFiyati.getValue().toString()));
        urunlerExtraDAO.setUrunBayiParaBirim(urunBayiBirim.getValue().toString());
        urunlerExtraDAO.setUrunOzel(Double.parseDouble(urunOzellik.getValue().toString()));
        urunlerExtraDAO.setUrunOzellikler(urunOzellik.getValue().toString());
        urunlerExtraDAO.setUrunOzelParaBirim(urunOzelBirim.getValue().toString());
        urunlerExtraDAO.setUrunResim("umur ben seninnnnn.....");
        urunlerExtraDAO.setUrunTeknik(urunTeknikOzellik.getValue().toString());
        urunlerExtraDAO.setUrunlerAnaDAO(urunlerAnaDAO);
        urunlerAnaCRUD.saveUrunAna(urunlerAnaDAO);
       
       
        /*
       
        urunlerAnaDAO = (UrunlerAnaDAO) urunlerAnaCRUD.findAna("2");
        urunlerExtraDAO.setUrunlerAnaDAO(urunlerAnaDAO);
        UrunlerExtraCRUD urunlerExtraCRUD = new UrunlerExtraCRUD();
        urunlerExtraCRUD.saveUrunExtra(urunlerExtraDAO);
       
        */
       
      }
    });
   
   
    silButton.addListener(new ClickListener() {
     
      public void buttonClick(ClickEvent event) {
        UrunlerAnaCRUD urunlerAnaCRUD = new UrunlerAnaCRUD();
        UrunlerAnaDAO urunlerAnaDAO = new UrunlerAnaDAO();
        urunlerAnaDAO.setUrunKodu("1");
        urunlerAnaCRUD.deleteUrunAna(urunlerAnaDAO);
         
       
      }
    });
  }
View Full Code Here

TOP

Related Classes of crud.UrunlerAnaCRUD

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.