Package org.xrace.model.identification.personne

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


    //Si une des personnes est admin, on va garder l'admin.
    final DossierPersonne dossierPersonneMerge = getPersonneMergeService()
        .preMerge(personneCompteAdmin, personneCompteNoAdmin);
    Assert.assertNotNull(dossierPersonneMerge.getPersonne());

    final Personne personneMerge = dossierPersonneMerge.getPersonne();

    Assert.assertNull(personneMerge.getId());
    Assert.assertEquals("Marc - André", personneMerge.getPrenom());

    Assert.assertEquals(1, dossierPersonneMerge.getInfoSaisons().size());
    Assert.assertTrue(dossierPersonneMerge.getInfoSaisons().contains(
        infoSaisonXssAuto));
  }
View Full Code Here


    //a une date d'accès la plus récente.
    final DossierPersonne dossierPersonneMerge = getPersonneMergeService()
        .preMerge(personneCompteVide, personneCompteNoAdmin);
    Assert.assertNotNull(dossierPersonneMerge.getPersonne());

    final Personne personneMerge = dossierPersonneMerge.getPersonne();

    Assert.assertNull(personneMerge.getId());
    Assert.assertEquals("Marc  André", personneMerge.getPrenom());

    Assert.assertEquals(1, dossierPersonneMerge.getInfoSaisons().size());
    Assert.assertTrue(dossierPersonneMerge.getInfoSaisons().contains(
        infoSaisonXssAuto));
  }
View Full Code Here

    //la date de modif est la plus récente.
    final DossierPersonne dossierPersonneMerge = getPersonneMergeService()
        .preMerge(personneNoCompte, personneInscriteSurPlace);
    Assert.assertNotNull(dossierPersonneMerge.getPersonne());

    final Personne personneMerge = dossierPersonneMerge.getPersonne();

    Assert.assertNull(personneMerge.getId());
    //C'est le prénom de la personne modèle. Normalement, l'admin va corriger ça.
    Assert.assertEquals("Cote", personneMerge.getPrenom());

    Assert.assertEquals(3, dossierPersonneMerge.getInfoSaisons().size());
    Assert.assertTrue(dossierPersonneMerge.getInfoSaisons().contains(
        infoSaisonDseMan));
    Assert.assertTrue(dossierPersonneMerge.getInfoSaisons().contains(
View Full Code Here

    //les plus récents.
    final DossierPersonne dossierPersonneMerge = getPersonneMergeService()
        .preMerge(personneCompteNoAdmin, personneInscriteSurPlace);
    Assert.assertNotNull(dossierPersonneMerge.getPersonne());

    final Personne personneMerge = dossierPersonneMerge.getPersonne();

    Assert.assertNull(personneMerge.getId());
    //C'est le prénom de la personne modèle. Normalement, l'admin va corriger ça.
    Assert.assertEquals("Coté", personneMerge.getPrenom());

    Assert.assertEquals(3, dossierPersonneMerge.getInfoSaisons().size());
    Assert.assertTrue(dossierPersonneMerge.getInfoSaisons().contains(
        infoSaisonDseMan));
    Assert.assertTrue(dossierPersonneMerge.getInfoSaisons().contains(
View Full Code Here

      {
        infoSaison.setPlaqueUnique("670");
      }
    }

    final Personne personneMerge = getPersonneMergeService().merge(
        personneInscriteSurPlace, personneCompteNoAdmin, dossier);
    hibernateTemplate.flush();

    Assert.assertEquals("12345", dossier.getPersonne().getAdresse());
View Full Code Here

    Assert.assertNotNull(getCompteService().authenticate("mccote", "123"));
  }

  public void testMergeAdminAvecImport() throws Exception
  {
    Personne personneAdminAvecImport = getPersonneService()
        .findByNomPrenomExact("Probert", "Bob").iterator().next();
    final DossierPersonne dossier = getPersonneMergeService().preMerge(
        personneAdminAvecImport, personneCompteNoAdmin);

    final Personne personneMerge = getPersonneMergeService().merge(
        personneAdminAvecImport, personneCompteNoAdmin, dossier);
    hibernateTemplate.flush();

    List<Importation> list = getImportationService().findByCompte(
        personneMerge.getCompte());
    assertEquals(1, list.size());
  }
View Full Code Here

    assertEquals(1, list.size());
  }

  public void testMergeAvecEquipe() throws Exception
  {
    Personne personneAdminAvecImport = getPersonneService()
        .findByNomPrenomExact("Probert", "Bob").iterator().next();
    final DossierPersonne dossier = getPersonneMergeService().preMerge(
        personneAdminAvecImport, personneCompteNoAdmin);

    final Personne personneMerge = getPersonneMergeService().merge(
        personneAdminAvecImport, personneCompteNoAdmin, dossier);
    hibernateTemplate.flush();

    List<EquipeCourse> list = getEquipeCourseService().findByCreateur(
        personneMerge);
View Full Code Here

  public void testMerge1() throws Exception
  {
    DossierPersonne dossierPersonne = getPersonneMergeService().preMerge(
        personneJDeere, personneJDoe);
    Personne personneMerge = getPersonneMergeService().merge(
        personneJDeere, personneJDoe, dossierPersonne);

    List<Personne> personnesInscrites = getPersonneAssocieeService()
        .findPersonnesInscrites(personneMerge,
            new GregorianCalendar(2007, 0, 1).getTime());
View Full Code Here

  public void testMerge2() throws Exception
  {
    DossierPersonne dossierPersonne = getPersonneMergeService().preMerge(
        personneOKnussen, personneJDeere);
    Personne personneMerge = getPersonneMergeService().merge(
        personneOKnussen, personneJDeere, dossierPersonne);

    List<Personne> personnesInscrites = getPersonneAssocieeService()
        .findPersonnesInscrites(personneJDoe,
            new GregorianCalendar(2007, 0, 1).getTime());
View Full Code Here

        .generateDossiersInscriptions(course))
    {
      row = sheet.createRow((short) ++i);

      // --------- Informations sur la personne inscrite -------
      final Personne personneInscrite = line.getPersonneInscrite();
      row.createCell((short) 0).setCellValue(personneInscrite.getId());
      row.createCell((short) 1).setCellValue(
          new HSSFRichTextString(StringUtils.replace(personneInscrite
              .getNom(), "'", "")));
      row.createCell((short) 2).setCellValue(
          new HSSFRichTextString(StringUtils.replace(personneInscrite
              .getPrenom(), "'", "")));
      row.createCell((short) 3).setCellValue(
          new HSSFRichTextString(personneInscrite.getCodeUCI()));
      HSSFUtils.createDateCell(wb, row, 4, personneInscrite
          .getDateNaissance());
      row.createCell((short) 5).setCellValue(
          new HSSFRichTextString(personneInscrite.getSexe()));
      row.createCell((short) 7).setCellValue(
          new HSSFRichTextString(StringUtils.replace(personneInscrite
              .getVille(), "'", "")));
      row.createCell((short) 7).setCellValue(
          personneInscrite.getVersion());

      // --------- Information sur l'inscription -------
      final Inscription inscription = line.getInscription();
      final Club club = line.getClub();
      final Categorie categorie = line.getCategorie();
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.