Package org.xrace.model.identification.personne

Examples of org.xrace.model.identification.personne.Personne


      if (item instanceof CartItemInscription)
      {
        final CartItemInscription cartItemInscription = (CartItemInscription) item;
        final Evenement evenement = cartItemInscription
            .getTarification().getCourse().getEvenement();
        final Personne personne = cartItemInscription.getPersonne();
        final Categorie categorie = cartItemInscription
            .getInscription().getCategorie();
        final EvenementCategoriePersonneEntry entry = new EvenementCategoriePersonneEntry(
            evenement, categorie, personne);
        final Inscription inscription = cartItemInscription
View Full Code Here


    createComponents();
  }

  private void createComponents()
  {
    final Personne personne = compte.getPersonne();

    this.add(new Label("username"));
    this.add(new Label("nom", new PropertyModel(personne, "nom")));
    this.add(new Label("prenom", new PropertyModel(personne, "prenom")));
    this.add(new CheckBox("admin"));
View Full Code Here

   * @see wicket.markup.html.form.IChoiceRenderer#getDisplayValue(Object)
   */
  @Override
  public Object getDisplayValue(final Object object)
  {
    final Personne personne = (Personne) object;

    if (personne == null)
    {
      return "Aucun";
    }
    else
    {
      return personne.getNomPrenom();
    }
  }
View Full Code Here

  public EquipeCourse createNouvelleEquipe(
      ComposantInscription composantInscription,
      ComposantAutresInfos composantAutresInfos)
  {
    Personne personneQuiInscrit = getProcessusInscription()
        .getPersonneQuiInscrit();
    Course course = composantInscription.getCourse();

    EquipeCourse equipeCourse = equipeCourseService.newEquipeCourse(course,
        personneQuiInscrit);
View Full Code Here

    return equipeCourse;
  }

  public EquipeCourse createNouvelleEquipe(ModifierAutresInfosModel model)
  {
    Personne personneQuiInscrit = getProcessusInscription()
        .getPersonneQuiInscrit();
    Course course = model.getInscription().getCourse();

    EquipeCourse equipeCourse = equipeCourseService.newEquipeCourse(course,
        personneQuiInscrit);
View Full Code Here

      return new CartListViewPage();
    }
    else if (etape == Etapes.AutrePersonne && action == Action.Suivant
        && obj instanceof Personne)
    {
      Personne personne = (Personne) obj;
      getProcessusInscription().setPersonneAinscrire(personne);

      personneAssocieeService.associer(getProcessusInscription()
          .getPersonneQuiInscrit(), personne, new Date());

      return new SaisonPage();
    }
    else if (etape == Etapes.AutrePersonneEquipe
        && action == Action.Suivant && obj instanceof Personne)
    {
      Personne personne = (Personne) obj;
      getProcessusInscription().setPersonneAinscrire(personne);

      personneAssocieeService.associer(getProcessusInscription()
          .getPersonneQuiInscrit(), personne, new Date());
View Full Code Here

    //Assigner les infos saisies dans le composant inscription et l'ajouter au panier.
    for (ComposantInscription compoInscription : getProcessusInscription()
        .getComposantInscription())
    {
      Personne personneQuiInscrit = getProcessusInscription()
          .getPersonneQuiInscrit();
      Course course = compoInscription.getCourse();

      if (course.isClub())
      {
View Full Code Here

      private static final long serialVersionUID = 1L;

      @Override
      public void onSubmit()
      {
        Personne personne1 = personneService.find(model.getPersonne1());
        if (personne1 == null)
        {
          error("La personne #1 n'existe plus. ");
          return;
        }

        Personne personne2 = personneService.find(model.getPersonne2());
        if (personne2 == null)
        {
          error("La personne #2 n'existe plus. ");
          return;
        }
View Full Code Here

    for (final DossierInscriptionEvenement dossier : dossierInscriptionService
        .generateDossiersInscriptions(evenement))
    {
      row = sheet.createRow((short) ++i);

      final Personne personneInscrite = dossier.getPersonneInscrite();
      final Inscription inscription = getInscription(dossier);

      row.createCell((short) 0).setCellValue(personneInscrite.getId());
      row.createCell((short) 1).setCellValue(
          new HSSFRichTextString(personneInscrite.getNoLicence()));
      row.createCell((short) 2).setCellValue(
          new HSSFRichTextString(inscription.getCategorie()
              .getNomComplet()));
      row.createCell((short) 3).setCellValue(
          new HSSFRichTextString(inscription.getNoPlaque()));
      row.createCell((short) 4).setCellValue(
          new HSSFRichTextString(personneInscrite.getNom()));
      row.createCell((short) 5).setCellValue(
          new HSSFRichTextString(personneInscrite.getPrenom()));

      Club club = inscription.getClub();
      if (club != null)
      {
        row.createCell((short) 6).setCellValue(
            new HSSFRichTextString(club.getNomComplet()));
      }

      row.createCell((short) 7).setCellValue(
          new HSSFRichTextString(inscription.getPersonne().getPays()
              .getCode()));
      row.createCell((short) 8).setCellValue(
          new HSSFRichTextString(inscription.getPersonne()
              .getCodeUCI()));
      HSSFUtils.createDateCell(wb, row, 9, inscription.getPersonne()
          .getDateNaissance());
      row.createCell((short) 10)
          .setCellValue(
              new HSSFRichTextString(inscription.getPersonne()
                  .getSexe()));
      row.createCell((short) 11).setCellValue(
          new HSSFRichTextString(personneInscrite.getAdresse()));
      row.createCell((short) 12).setCellValue(
          new HSSFRichTextString(personneInscrite.getVille()));
      row.createCell((short) 13).setCellValue(
          new HSSFRichTextString(personneInscrite.getCodePostal()));
      row.createCell((short) 14).setCellValue(
          new HSSFRichTextString(personneInscrite.getTelephone()));

      if (personneInscrite.getProvince() != null)
      {
        row.createCell((short) 15).setCellValue(
            new HSSFRichTextString(personneInscrite.getProvince()
                .getCode()));
      }
      else
      {
        row.createCell((short) 15).setCellValue(
            new HSSFRichTextString("N/A"));
      }

      row.createCell((short) 16).setCellValue(
          new HSSFRichTextString(personneInscrite.getAllergies()));
      row.createCell((short) 17).setCellValue(
          new HSSFRichTextString(personneInscrite
              .getEmergencyNumber()));
      row.createCell((short) 18).setCellValue(
          new HSSFRichTextString(personneInscrite
              .getEmergencyContact()));

      // --------- Information sur le compte de la personne inscrite (si applicable) -------
      if (personneInscrite.getCompte() != null)
      {
        row.createCell((short) 19).setCellValue(
            new HSSFRichTextString(personneInscrite.getCompte()
                .getUsername()));
      }

      row.createCell((short) 20).setCellValue(
          new HSSFRichTextString(inscription.getCommanditaire()));
View Full Code Here

public class PersonneServiceSeachTests extends XRaceTestCase
{
  @Override
  protected void onSetUpInTransaction() throws Exception
  {
    Personne personne;
    final Federation pays = getFederationService().findByCode("CAN");

    personne = new Personne("Coté", "Marc - André", "pas important",
        "Québec", "G1B 2U8", "455-909-9090", new GregorianCalendar(
            1970, 0, 1).getTime(), "M", pays.getProvinces().get(0),
        pays, pays);

    getPersonneService().save(personne);

    personne = new Personne("Cote", "MarcAndre", "pas important", "Québec",
        "G1B 2U8", "455-909-9090", new GregorianCalendar(1970, 0, 1)
            .getTime(), "M", pays.getProvinces().get(0), pays, pays);

    getPersonneService().save(personne);

    personne = new Personne("Cote", "Marc Andre", "pas important",
        "Québec", "G1B 2U8", "455-909-9090", new GregorianCalendar(
            1970, 0, 1).getTime(), "M", pays.getProvinces().get(0),
        pays, pays);

    getPersonneService().save(personne);

    personne = new Personne("Cote", "Marc Andre", "pas important",
        "Québec", "G1B 2U8", "455-909-9090", new GregorianCalendar(
            1970, 1, 1).getTime(), "M", pays.getProvinces().get(0),
        pays, pays);

    getPersonneService().save(personne);

    personne = new Personne("Lapierre", "Marc - André", "pas important",
        "Québec", "G1B 2U8", "455-909-9090", new GregorianCalendar(
            1970, 0, 1).getTime(), "M", pays.getProvinces().get(0),
        pays, pays);

    getPersonneService().save(personne);

    personne = new Personne("Lapierre", "Marc-André", "pas important",
        "Québec", "G1B 2U8", "455-909-9090", new GregorianCalendar(
            1970, 1, 1).getTime(), "M", pays.getProvinces().get(0),
        pays, pays);

    getPersonneService().save(personne);
View Full Code Here

TOP

Related Classes of org.xrace.model.identification.personne.Personne

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.