diff --git a/pom.xml b/pom.xml index 30f1b54..17d944c 100644 --- a/pom.xml +++ b/pom.xml @@ -61,7 +61,7 @@ dev.lions.unionflow unionflow-server-api - 1.0.8 + 1.0.9 diff --git a/src/main/java/dev/lions/unionflow/server/service/OrganisationService.java b/src/main/java/dev/lions/unionflow/server/service/OrganisationService.java index 8748283..b43e207 100644 --- a/src/main/java/dev/lions/unionflow/server/service/OrganisationService.java +++ b/src/main/java/dev/lions/unionflow/server/service/OrganisationService.java @@ -666,6 +666,12 @@ public class OrganisationService { dto.setCotisationObligatoire(organisation.getCotisationObligatoire()); dto.setMontantCotisationAnnuelle(organisation.getMontantCotisationAnnuelle()); + // Conformité (Sprint 1) + if (organisation.getReferentielComptable() != null) { + dto.setReferentielComptable(organisation.getReferentielComptable().name()); + } + dto.setComplianceOfficerId(organisation.getComplianceOfficerId()); + return dto; }