fix: last-name to upper case

This commit is contained in:
2024-08-03 17:12:03 +02:00
parent a57492ac19
commit b766525000
5 changed files with 13 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ public class MembreService {
.onItem().transformToUni(pair -> {
MembreModel m = pair.getKey();
m.setFname(membre.getFname());
m.setLname(membre.getLname());
m.setLname(membre.getLname().toUpperCase());
m.setClub(pair.getValue());
m.setCountry(membre.getCountry());
m.setBirth_date(membre.getBirth_date());
@@ -167,7 +167,7 @@ public class MembreService {
}))
.onItem().transformToUni(target -> {
target.setFname(membre.getFname());
target.setLname(membre.getLname());
target.setLname(membre.getLname().toUpperCase());
target.setCountry(membre.getCountry());
target.setBirth_date(membre.getBirth_date());
target.setGenre(membre.getGenre());