Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
khergalant committed Jul 2, 2024
2 parents 3b31885 + 8ae57f9 commit cbc7fbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ public class OpiVoeu {
private String numeroCandidat;

@CsvBindByName(column = "origine_admission")
private String origine_admission;
private String origineAdmission;

@CsvBindByName(column = "voie_admission")
private String voie_admission;
private String voieAdmission;

@CsvBindByName(column = "annee_concours")
private String anneeConcours;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -970,7 +970,7 @@ private OpiVoeu getVoeuByCandidature(final Candidat candidat, final Candidature

final OpiVoeu voeu = new OpiVoeu();
voeu.setNumeroCandidat(candidat.getCompteMinima().getNumDossierOpiCptMin());
voeu.setOrigine_admission(OPI_ORIGINE);
voeu.setOrigineAdmission(OPI_ORIGINE);
voeu.setCodeVoeu(formation.getCodPegaseForm());
voeu.setCodePeriode(candidat.getCompteMinima().getCampagne().getCodCamp());
return voeu;
Expand Down

0 comments on commit cbc7fbb

Please sign in to comment.