Package org.xrace.model

Examples of org.xrace.model.Article


    //Ajout de plusieurs courses et articles pour une personne.
    /*cart.add(new CartItemInscription(tarificationXC4Xss, personneJDoe,
        getInscriptionService()), getRabaisEvenementService());*/
    cart.add(cartItemInscription, getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQInvite)
        .setQuantite(2)), getRabaisEvenementService());

    //Ajout d'une course plus loin dans la saison.
    ComposantInscription composantInscription2 = new ComposantInscription(
        personneJDoe, tarificationXC9Xjs);
View Full Code Here


        composantInscription1);

    cart.add(cartItemInscription1, getRabaisEvenementService());

    //Ajout de plusieurs courses et articles pour une personne.
    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQInvite)
        .setQuantite(2)), getRabaisEvenementService());

    //Ajout d'une course plus loin dans la saison.
    ComposantInscription composantInscription2 = new ComposantInscription(
        personneJDoe, tarificationXC9Xjs);
View Full Code Here

    CartItemInscription cartItemInscription = new CartItemInscription(
        composantInscription1);

    //Ajout de plusieurs courses et articles pour une personne.
    cart.add(cartItemInscription, getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQInvite)
        .setQuantite(2)), getRabaisEvenementService());

    //Ajout d'une course plus loin dans la saison.
    ComposantInscription composantInscription2 = new ComposantInscription(
        personneJDoe, tarificationXC9Xjs);
View Full Code Here

    CartItemInscription cartItemInscription = new CartItemInscription(
        composantInscription1);

    //Ajout de plusieurs courses et articles pour une personne.
    cart.add(cartItemInscription, getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQInvite)
        .setQuantite(2)), getRabaisEvenementService());

    //Ajout d'un coéquipier. 
    ComposantInscription composantInscription2 = new ComposantInscription(
        personneJDeere, tarificationRVMXss);
View Full Code Here

    CartItemInscription cartItemInscription = new CartItemInscription(
        composantInscription1);

    //Ajout de plusieurs courses et articles pour une personne.
    cart.add(cartItemInscription, getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQInvite)
        .setQuantite(2)), getRabaisEvenementService());

    //On n'ajoute pas de coéquipier.

    ValidationException vex = new ValidationException();
View Full Code Here

    CartItemInscription cartItemInscription = new CartItemInscription(
        composantInscription1);

    //Ajout de plusieurs courses et articles pour une personne.
    cart.add(cartItemInscription, getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixAmeneAmi)),
        getRabaisEvenementService());
    cart.add(new CartItemArticle(personneJDoe, new Article(choixBBQInvite)
        .setQuantite(2)), getRabaisEvenementService());

    //Ajout d'un coéquipier. 
    ComposantInscription composantInscription2 = new ComposantInscription(
        personneJDeere, tarificationRVMXss);
View Full Code Here

  public ChoixDisponible(final Choix choix)
  {
    super();
    this.choix = choix;
    article = new Article();
    article.setChoix(choix);
    selected = false;
  }
View Full Code Here

        personneNCote, tarificationDssF4);
    CartItemInscription cartItemInscription4 = new CartItemInscription(
        composantInscription4);
    cartNCote1.add(cartItemInscription4, getRabaisEvenementService());

    cartNCote2.add(new CartItemArticle(personneNCote, new Article(
        choixAmeneAmi)), getRabaisEvenementService());
    cartNCote2.add(
        new CartItemArticle(personneNCote, new Article(choixBBQ)),
        getRabaisEvenementService());
    cartNCote2.add(new CartItemArticle(personneNCote, new Article(
        choixNavetteLevis)), getRabaisEvenementService());

    facture = getFactureService().createFacture(personneNCote, cartNCote2);
    completeTransactions(personneNCote, facture);
  }
View Full Code Here

  {
    final ChoixDisponible choixDisponible = (ChoixDisponible) item
        .getModelObject();
    final Choix choix = choixDisponible.getChoix();

    final Article article = choixDisponible.getArticle();
    article.setChoix(choix);

    item.add(new Label("description", new PropertyModel(choix,
        "description")));

    item.add(new Label("lblPrix", new ResourceModel("prix"))
View Full Code Here

        for (final ChoixDisponible choixDispo : lstChoixDisponible)
        {
          if (choixDispo.isSelected())
          {
            final Choix choix = choixDispo.getChoix();
            final Article article = choixDispo.getArticle();
            if (choix.isTextField())
            {
              if (article.getTextFieldValue() == null
                  || article.getTextFieldValue().equals(""))
              {
                this.error(getLocalizer().getString(
                    "textFieldMissingError", this,
                    new Model(choix)));
                isValid = false;
              }
            }
            if (choix.isQuantite())
            {
              if (article.getQuantite() == null
                  || article.getQuantite() < 1)
              {
                this.error(getLocalizer().getString("qtyError",
                    this, new Model(choix)));
                isValid = false;
              }
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.