Examples of DossierPersonne


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

  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();
View Full Code Here

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

  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();
View Full Code Here

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

        "Bob").get(0);
  }

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

    List<Personne> personnesInscrites = getPersonneAssocieeService()
View Full Code Here

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

    Assert.assertEquals(0, personnesInscrites.indexOf(personneBProbert));
  }

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

    List<Personne> personnesInscrites = getPersonneAssocieeService()
View Full Code Here

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

    createComponents();
  }

  private void createComponents()
  {
    final DossierPersonne dossier = getMergeContext()
        .getDossierPersonneMerge();

    this.add(new PersonneDisplayPanel("mergedPersonne", dossier
        .getPersonne()));

    if (dossier.getCompte() != null)
    {
      this
          .add(new CompteDisplayPanel("mergedCompte", dossier
              .getCompte()));
    }
    else
    {
      this.add(new Label("mergedCompte",
          "Cette personne n'aura pas de compte. "));
    }

    this.add(new PlaqueDataViewPanel("mergedPlaques", dossier
        .getInfoSaisons()));
    form.add(new FeedbackPanel("feedback"));
    this.add(form);
  }
View Full Code Here
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.