Package sn.unitech.stock.entity

Examples of sn.unitech.stock.entity.SysProduit


     
      public static void main(String args[]){
        List<DetailEvent> listDetailEvent=new ArrayList<DetailEvent>();
        DetailEvent detailEvent=new DetailEvent();
        Stock stock=new Stock();
        SysProduit sysProduit=new SysProduit();
        sysProduit.setCompte(new Compte());
        sysProduit.getCompte().setIdCompte("1");
        stock.setSysProduit(sysProduit);
        detailEvent.setStock(stock);
        detailEvent.setEvents(new Events());
        detailEvent.getEvents().setMntTot(new Double(100000));
        detailEvent.setPrixTot(new Double(40000));
View Full Code Here


        }
    public static void main(String args[]){
      List<DetailEvent> listDetailEvent=new ArrayList<DetailEvent>();
      DetailEvent detailEvent=new DetailEvent();
      Stock stock=new Stock();
      SysProduit sysProduit=new SysProduit();
      sysProduit.setCompte(new Compte());
      sysProduit.getCompte().setIdCompte("1");
      stock.setSysProduit(sysProduit);
      detailEvent.setStock(stock);
      detailEvent.setEvents(new Events());
      detailEvent.getEvents().setMntNet(new Double(100000));
      detailEvent.setPrixTot(new Double(40000));
View Full Code Here

      EntityTransaction tx= em.getTransaction();
      Map<Integer,String> param=new HashMap<Integer, String>();
      Resultat resultat=new Resultat();
      try{
      tx.begin();
      SysProduit oldProduit=null;
      param.clear();
      param.put(0,sysProduit.getSysAdherent().getIdAdherent());
      param.put(1,sysProduit.getDesignation());
      try{
      oldProduit=(SysProduit) this.getSingleResult(readProperties.read("Produit.jpqlProdByDesignation"), em, param);
View Full Code Here

  public void findEtiquette(ActionEvent e){
    if((this.cproperties.etiquette!=null)&&(!this.cproperties.etiquette.isEmpty())){
      List<SysProduit> lp=  (List<SysProduit>) this.getModelProduit();
       int index;
       if((index=this.commandeM.getIndex(lp, this.cproperties.etiquette))!=-1){
         SysProduit produit=lp.get(index);
         produit.setSelected(true);
         lp.remove(index);
         lp.add(0, produit);
       }
    }
   
View Full Code Here

      this.citems.dataProduit.setRowIndex(this.cproperties.getLastIndex());
      this.citems.dataProduit.getRowData().setListCaracterist(null);
      this.citems.dataProduit.getRowData().setLabelDetail(ToolsBean.lblDetail);
    }
    this.citems.dataProduit.setRowIndex(currentIndex);
    SysProduit produit=this.citems.dataProduit.getRowData();
    if(produit.getLabelDetail().equals(ToolsBean.lblFermer)){
        produit.setListCaracterist(null);
        produit.setLabelDetail(ToolsBean.lblDetail);
    }   
    else{
      this.cproperties.idProduit=produit.getIdProduit()+"";
      produit.setListCaracterist(this.citems.getListCaracDuProd());
      if((produit.getListCaracterist()!=null)&&(produit.getListCaracterist().size()>0))
      produit.setLabelDetail(ToolsBean.lblFermer);
    }
    this.cproperties.setLastIndex(currentIndex);
    this.cproperties.designation=produit.getDesignation();
 
View Full Code Here

    this.stock.setSysAdherent(sysAdherent);
    Resultat resultat;
    resultat=this.sysProduitM.saveProduit(sysProduit, stock,(List<SysProdCarac>)this.citems.dataCaracDuProd.getWrappedData());
      if(resultat.isSucceed()){
        if(this.citems.itemsRangmnts.size()==1){
          this.setSysProduit(new SysProduit());
          this.citems.dataCaracDuProd.setWrappedData(new ArrayList<SysProdCarac>());
        }else this.cproperties.setDisableProduit(true);
      this.setStock(new Stock());
      this.cmessages.setSaveMessage(resultat.getMessage());
      }else this.cmessages.setSaveMessage(resultat.getMessage());
View Full Code Here

      }else this.cmessages.setSaveMessage(resultat.getMessage());
  }
  public void initInteraceProduit(){
    this.setSysProduit(new SysProduit());
    this.citems.dataCaracDuProd.setWrappedData(new ArrayList<SysProdCarac>());
    this.cproperties.setDisableProduit(false);
  }
View Full Code Here

TOP

Related Classes of sn.unitech.stock.entity.SysProduit

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.