Package org.xrace.view.session

Examples of org.xrace.view.session.CartItemArticle


                cartItemInscription.getPrix()));

      }
      else
      {
        final CartItemArticle cartItemArticle = (CartItemArticle) item;

        final Article article = cartItemArticle.getArticle();
        article.setPrix(item.getPrixUnitaire());
        article.setQuantite(item.getQuantite());
        articleService.save(article);

        facture.getFactureItems().add(
            factureItemService.createFactureItem(facture, article,
                cartItemArticle.getPrix()));
      }
    }

    for (final Escompte escompte : cart.getEscomptes(facture,
        rabaisEvenementService))
View Full Code Here

TOP

Related Classes of org.xrace.view.session.CartItemArticle

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.