Package org.xrace.model

Examples of org.xrace.model.Article


  {
    List<Article> articlesEvenement4 = getArticleService()
        .findByEvenementApproved(evenement4);
    Assert.assertEquals(3, articlesEvenement4.size());

    Article unArticle = articlesEvenement4.get(0);
    Assert.assertEquals(personneNCote, unArticle.getPersonne());
  }
View Full Code Here


  {
    List<Article> articlesJDoe = getArticleService().findByPersonne(
        personneJDoe);
    Assert.assertEquals(2, articlesJDoe.size());

    Article unArticle = articlesJDoe.get(0);
    Assert.assertEquals(personneJDoe, unArticle.getPersonne());

    List<Article> articlesNCote = getArticleService().findByPersonne(
        personneNCote);
    Assert.assertEquals(3, articlesNCote.size());

    unArticle = articlesNCote.get(0);
    Assert.assertEquals(personneNCote, unArticle.getPersonne());
  }
View Full Code Here

    choixAmeneAmi = getChoixService().findChoixByEvenement(evenement4).get(
        0);
    choixBBQ = getChoixService().findChoixByEvenement(evenement4).get(2);

    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQ)),
        getRabaisEvenementService());

    Facture facture = getFactureService().createFacture(personneJDoe, cart);
    getTransactionService().createTransaction(personneJDoe, facture);
  }
View Full Code Here

          setFactureLieASecteur.add(saison.getSecteur());
        }
        else if (factureItem.getArticle() != null)
        {
          Article article = factureItem.getArticle();
          Choix choix = article.getChoix();
          Evenement evenement = choix.getEvenement();

          if (evenement != null)
          {
            Saison saison = evenement.getSaison();
View Full Code Here

  public void AjouterArticleAuPanier(Choix choix)
  {
    try
    {

      Article article = new Article(choix);

      final CartItemArticle item = new CartItemArticle(getSession()
          .getPersonne(), article);

      getSession().getCart().add(item, rabaisEvenementService);
View Full Code Here

  public void AjouterArticleAuPanier(Choix choix, String description)
  {
    try
    {

      Article article = new Article(choix);
      article.setTextFieldValue(description);

      final CartItemArticle item = new CartItemArticle(getSession()
          .getPersonne(), article);

      getSession().getCart().add(item, rabaisEvenementService);
View Full Code Here

      String reponse1, String reponse2)
  {
    try
    {

      Article article = new Article(choix);
      article.setTextFieldValue(description);
      article.setQuestion1(choix.getQuestion1());
      article.setQuestion2(choix.getQuestion2());
      article.setReponseQuestion1(reponse1);
      article.setReponseQuestion2(reponse2);

      final CartItemArticle item = new CartItemArticle(getSession()
          .getPersonne(), article);

      getSession().getCart().add(item, rabaisEvenementService);
View Full Code Here

          new HSSFRichTextString(personneInscrite.getNom()));
      row.createCell((short) 2).setCellValue(
          new HSSFRichTextString(personneInscrite.getPrenom()));

      // --------- Informations sur l'article -------
      final Article article = dossier.getArticle();
      final Choix choix = article.getChoix();

      // --------- Information sur la facture et la transaction -------
      final Facture facture = dossier.getFacture();
      final FactureItem factureItem = dossier.getFactureItem();
      final Transaction transaction = dossier.getTransaction();

      // --------- Personne qui a effectué la transaction -------
      final Personne personneTransaction = dossier
          .getPersonneTransaction();

      row.createCell((short) 3).setCellValue(
          new HSSFRichTextString(choix.getDescription()));
      row.createCell((short) 4).setCellValue(
          new HSSFRichTextString(article.getTextFieldValue()));
      if (factureItem != null)
      {
        HSSFUtils.createCurrencyCell(wb, row, 5, factureItem.getPrix());
        prixTotalChoix += factureItem.getPrix();
      }
      row.createCell((short) 6).setCellValue(article.getQuantite());
      qteTotalChoix += article.getQuantite();

      if (personneTransaction != null)
      {
        row.createCell((short) 7).setCellValue(
            new HSSFRichTextString(personneTransaction
View Full Code Here

        "John").get(0);
  }

  public void testGetPrixNoPrixNoQty() throws Exception
  {
    Article article = new Article(choixAmeneAmi);
    CartItemArticle cartItemArticle = new CartItemArticle(personneJDoe,
        article);
    Assert.assertEquals(0.0, cartItemArticle.getPrix().doubleValue(), 0.0);
  }
View Full Code Here

    Assert.assertEquals(0.0, cartItemArticle.getPrix().doubleValue(), 0.0);
  }

  public void testGetPrixPrixQty() throws Exception
  {
    Article article = new Article(choixBBQInvite);
    article.setQuantite(2);

    CartItemArticle cartItemArticle = new CartItemArticle(personneJDoe,
        article);
    Assert.assertEquals(24.0, cartItemArticle.getPrix().doubleValue(), 0.0);
  }
View Full Code Here

TOP

Related Classes of org.xrace.model.Article

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.