Package sn.unitech.stock.entity

Examples of sn.unitech.stock.entity.SysSousUnite


  }

  public void saveUnite(ActionEvent a){
    this.sysUnite.setIdUnite(this.sysUniteM.getCleUnite(this.cproperties.idContenants,this.cproperties.idContenu,this.cproperties.idSousUnite));
    this.sysUnite.setLibelle(this.sysUnite.getIdUnite().replace("_", " "));
    SysSousUnite sysSousUnite = new SysSousUnite();
    sysSousUnite.setId(new SysSousUniteId(this.cproperties.idSousUnite,this.sysUnite.getIdUnite()));
    sysSousUnite.setRapport(this.cproperties.idContenu);
    sysSousUnite.setOrdre(1);
    Resultat resultat;
    resultat=this.sysUniteM.saveUnite(sysUnite,sysSousUnite,this.cproperties.idActivite);
    if(resultat.isSucceed()){
    this.setSysUnite(new SysUnite());
    this.cproperties.setIdContenu(1);
View Full Code Here

TOP

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

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.