Skip to content

Commit

Permalink
Enlève la contrainte sur la réservation du tournée...
Browse files Browse the repository at this point in the history
... Si l'utilisateur a réservé une tournée et un autre utilisateur l'envoie au serveur
la synchro se fait

Issue: #209488
Change-Id: I159c5c4efcadfa48130ea0659ec1c7a3dd31f201
  • Loading branch information
Emilie Genton committed Mar 27, 2024
1 parent 4dfb3cf commit 8575814
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,6 @@ public boolean checkExist(Long idTournee) {
return context.fetchExists(context.selectFrom(TOURNEE).where(TOURNEE.ID.eq(idTournee)));
}

public Long getReservation(Long idTournee) {
return context
.select(TOURNEE.RESERVATION)
.from(TOURNEE)
.where(TOURNEE.ID.eq(idTournee))
.fetchOneInto(Long.class);
}

public void setTourneesFinies(List<Long> idsTournee) {
context
.update(TOURNEE)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -406,12 +406,6 @@ private String checkErrorTournee(TourneeModel tourneeModel, Long idUtilisateur)
return "Impossible de trouver la tournée " + tourneeModel.idRemocra() + " dans REMOcRA.";
}

if (!tourneeRepository.getReservation(tourneeModel.idRemocra()).equals(idUtilisateur)) {
return "L'utilisateur qui envoie la tournée "
+ tourneeModel.idRemocra()
+ " n'est pas celui qui l'a réservée.";
}

return null;
}

Expand Down

0 comments on commit 8575814

Please sign in to comment.