Examples of Categorie


Examples of org.xrace.model.Categorie

          personneInscrite.getVersion());

      // --------- Information sur l'inscription -------
      final Inscription inscription = line.getInscription();
      final Club club = line.getClub();
      final Categorie categorie = line.getCategorie();

      if (club != null)
      {
        row.createCell((short) 8).setCellValue(
            new HSSFRichTextString(StringUtils.replace(club
                .getNomComplet(), "'", "")));
      }
      else
      {
        row.createCell((short) 8).setCellValue(
            new HSSFRichTextString(StringUtils.replace(inscription
                .getCommanditaire(), "'", "")));
      }

      try
      {
        final Integer plaqueInt = Integer.parseInt(inscription
            .getNoPlaque());
        row.createCell((short) 9).setCellValue(plaqueInt);
      }
      catch (final NumberFormatException e)
      {
        row.createCell((short) 9).setCellValue(
            new HSSFRichTextString(inscription.getNoPlaque()));
      }

      if (line.getInfoSaison() != null)
      {
        row.createCell((short) 10).setCellValue(
            line.getInfoSaison().getVersion());
      }

      row.createCell((short) 11).setCellValue(
          new HSSFRichTextString(inscription.getCodePuce()));

      row.createCell((short) 12).setCellValue(
          new HSSFRichTextString(StringUtils.replace(categorie
              .getCodeComplet(), "'", "")));
    }

    return wb;
  }

Examples of org.xrace.model.Categorie

  }

  public void testSaveValidateCategorie()
  {
    final Discipline disciplineDh = getDisciplineService().findByNom("DH");
    final Categorie categorieDse = getCategorieService().findByCode(
        "Hardtail", "U", disciplineDh);

    final RabaisEvenement rabaisEvenement = getRabaisEvenementService()
        .createRabaisEvenement(evenementSansRabais);
    rabaisEvenement.setNbCourses(2);

Examples of org.xrace.model.Categorie

      }

      // --------- Information sur l'inscription -------
      final Inscription inscription = dossier.getInscription();
      final Club club = dossier.getClub();
      final Categorie categorie = dossier.getCategorie();

      row.createCell((short) 18).setCellValue(inscription.getId());

      if (club != null)
      {
        row.createCell((short) 19).setCellValue(
            new HSSFRichTextString(club.getNomComplet()));
      }

      row.createCell((short) 20).setCellValue(
          new HSSFRichTextString(inscription.getCommanditaire()));

      try
      {
        final Integer plaqueInt = Integer.parseInt(inscription
            .getNoPlaque());
        row.createCell((short) 21).setCellValue(plaqueInt);
      }
      catch (final NumberFormatException e)
      {
        row.createCell((short) 21).setCellValue(
            new HSSFRichTextString(inscription.getNoPlaque()));
      }

      row.createCell((short) 22).setCellValue(
          new HSSFRichTextString(inscription.getCodePuce()));
      if (inscription.getNumeroPuce() != null)
      {
        row.createCell((short) 23).setCellValue(
            inscription.getNumeroPuce());
      }
      row.createCell((short) 24).setCellValue(
          new HSSFRichTextString(categorie.getNomComplet()));

      if (inscription.getEquipeCourse() != null)
      {
        row.createCell((short) 25).setCellValue(
            new HSSFRichTextString(inscription.getEquipeCourse()
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.