Package net.fqsc.inscriptions.model.facturation

Examples of net.fqsc.inscriptions.model.facturation.Facture


  }

  public Facture createFacture()
  {

    Facture facture = null;
    final Factures factures = (Factures) this.domainModel
        .getEntry("Factures");

    try
    {
View Full Code Here


  {

    Validate.argNotNull(cart, "Cart");
    Validate.argNotNull(personne, "Personne");

    final Facture facture = this.createFacture();
    Inscription inscription = null;

    for (final Iterator i = cart.getCart().iterator(); i.hasNext();)
    {
View Full Code Here

   
    final Course course = (Course) evenement.getCourses().getList().get(0);
   
    final Inscription inscription = (Inscription) course.getInscriptions().getList().get(0);
   
    final Facture facture = this.facturationCtrl.createFacture();
    this.facturationCtrl.addFactureItem(facture, inscription, 10.0);
    this.facturationCtrl.addFactureItem(facture, inscription, 20.0);
    this.facturationCtrl.addFactureItem(facture, inscription, 30.0);
   
   
View Full Code Here

  }
 
  @Test
  public final void testAjoutTransaction(){
   
    final Facture facture = this.facturationCtrl.createFacture();
   
    final Personnes personnes = this.identificationCtrl.getPersonnes();
    final Personne personne = (Personne)personnes.getList().get(0);
   
    this.facturationCtrl.createTransaction(personne, facture, 160.0);
View Full Code Here

TOP

Related Classes of net.fqsc.inscriptions.model.facturation.Facture

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.