diff --git a/pom.xml b/pom.xml
index 8d780af..d876fbc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,7 +7,7 @@
dev.lions.unionflow
unionflow-parent
- 1.0.4
+ 1.0.5
../unionflow-server-api/parent-pom.xml
@@ -129,7 +129,7 @@
dev.lions.unionflow
unionflow-server-api
- 1.0.4
+ 1.0.5
diff --git a/src/main/java/dev/lions/unionflow/client/view/CotisationsBean.java b/src/main/java/dev/lions/unionflow/client/view/CotisationsBean.java
index ebee7c3..d595dfe 100644
--- a/src/main/java/dev/lions/unionflow/client/view/CotisationsBean.java
+++ b/src/main/java/dev/lions/unionflow/client/view/CotisationsBean.java
@@ -645,11 +645,9 @@ public class CotisationsBean implements Serializable {
return;
}
try {
- InitierPaiementEnLigneRequest request = InitierPaiementEnLigneRequest.builder()
- .cotisationId(cotisationSelectionnee.getId())
- .methodePaiement("WAVE")
- // Pas de numéro de téléphone → QR non restreint (tout abonné Wave peut payer)
- .build();
+ // Pas de numéro de téléphone → QR non restreint (tout abonné Wave peut payer)
+ InitierPaiementEnLigneRequest request = new InitierPaiementEnLigneRequest(
+ cotisationSelectionnee.getId(), "WAVE", null);
PaiementGatewayResponse response = retryService.executeWithRetrySupplier(
() -> paiementClientService.initierPaiementEnLigne(request),