Skip to content

Commit

Permalink
Check etabSoutenance PPN
Browse files Browse the repository at this point in the history
  • Loading branch information
theo-chmbn committed Nov 15, 2023
1 parent 120d636 commit 029b4e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ public List<String> completion(String q) throws Exception {

private String getEtabNameFromSourceAndPPN(These source, String ppn) {
//Si on est l'établissement de soutenance, on récupère le nom directement
if (source.getEtabSoutenancePpn().equals(ppn)) return source.getEtabSoutenanceN();
if (source.getEtabSoutenancePpn() != null && source.getEtabSoutenancePpn().equals(ppn)) return source.getEtabSoutenanceN();

//sinon on cherche le PPN dans les etabs de cotutelle, etc.
for (Organisme e : source.getEtabsCotutelle()) {
Expand Down

0 comments on commit 029b4e9

Please sign in to comment.