Examples of Taxes


Examples of sn.unitech.stock.entity.Taxes

        for (int j=0; j < this.listIcro.size();j++){
          prixTotal+=(listIcro.get(j).getQteContenant()*listIcro.get(j).getPrixUnitc())+
              (listIcro.get(j).getQteDetail()*listIcro.get(j).getPrixUnitd());
        totalDeCetteTaxe+=this.getValeurCurrentTaxe(this.listSysTaxes.get(i).getSysTaxe(),prixTotal)
        }
        Taxes taxes=new Taxes();
        taxes.setCodEvent(events.getSysEvents().getIdEvent());
        taxes.setIdAdherent(events.getSysUsers().getId().getIdAdherent());
        taxes.setIdTaxe(this.listSysTaxes.get(i).getSysTaxe().getIdTaxe());
        taxes.setLibelle("TOTAL: "+this.listSysTaxes.get(i).getSysTaxe().getLibelle());
        taxes.setValeur(totalDeCetteTaxe);
        taxes.setCptTaxe(this.listSysTaxes.get(i).getCompte().getIdCompte());
        taxes.setCptContrePartie(this.listSysTaxes.get(i).getSysChamp().getIdChamp());
        taxes.setNatureTaxe(this.listSysTaxes.get(i).getSysTaxe().getSysRefTaxe().getIdDesignation());
        taxes.setSensTaxe(this.listSysTaxes.get(i).getSens());
        listTaxesAndValues.add(taxes)
      }
      return listTaxesAndValues;
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.