Package sn.unitech.stock.entity

Examples of sn.unitech.stock.entity.SysEtat


  public void saveProduit(){
    this.sysGroupProd.setIdGroupProd(Integer.parseInt(this.cproperties.idClasse));
    this.sysProduit.setSysGroupProd(sysGroupProd);
    this.sysAdherent.setIdAdherent(getParamsUser().adherent.getIdAdherent());
    this.sysProduit.setSysAdherent(sysAdherent);
      this.sysProduit.setSysEtat(new SysEtat(Integer.parseInt(this.cproperties.idEtat)));
      this.sysUnite.setIdUnite(this.cproperties.idPgUnite);
      this.sysProduit.setSysUniteByCodUnitc(this.sysUnite);
      this.sysProduit.setSysUniteByCodUnitd(new SysUnite(this.sysProduitM.getSecondValue(this.citems.getItemsUnitesDuProduit(),this.cproperties.idPgUnite)));
      this.sysProduit.setQteInitiale(this.stock.getQteContenant());
      this.sysProduit.setQntContenant(this.stock.getQteContenant());
View Full Code Here

TOP

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

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.