Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Annuler l'ancien parapheur lors d'un nouvel envoi en signature (ESUP-Signature) #204 #205

Merged
merged 2 commits into from
Oct 21, 2024

Conversation

kaisersly
Copy link
Contributor

Ce commit permet de mettre à la corbeille un ancien parapheur dans ESUP-Signature si une convention est envoyée une nouvelle fois en signature.

Copy link
Collaborator

@smattsck smattsck left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bonjour,
Je vois que c'est seulement dans le bloc convention,
Si la même chose s'applique pour les avenants, le bloc de code pourrait être déplacé avant if(isAvenant).
Qu'en pensez-vous ?

@kaisersly
Copy link
Contributor Author

kaisersly commented Oct 14, 2024

Bonjour,

j'avais poussé une mauvaise version du code en créant la PR, désolé ! Concernant l'avenant, étant donné qu'on ne peut pas modifier le contenu pour l'instant, je ne vois pas l'intérêt de le renvoyer dans un nouveau circuit de signature. Mais comme la fonctionnalité est présente (et qu'on pourra peut-être modifier l'avenant dans l'avenir), voilà le code corrigé et adapté :

case EXTERNE:
    String documentId = webClient.post()
            .uri(applicationBootstrap.getAppConfig().getWebhookSignatureUri() + "?" + queryParam + "=" + id)
            .header("Authorization", "Bearer " + applicationBootstrap.getAppConfig().getWebhookSignatureToken())
            .retrieve()
            .bodyToMono(String.class)
            .block();
    if (documentId != null) {
        // Que fait-on si un précédent envoi a déjà été fait avant ?
        String previousDocumentId = isAvenant ? avenant.getDocumentId() : convention.getDocumentId();
        if (previousDocumentId != null) {
            // Pour ESUP-Signature, on supprime l'ancien avant de renseigner le nouveau
            if (appSignature == AppSignatureEnum.ESUPSIGNATURE) {
                webClient.delete()
                    .uri(applicationBootstrap.getAppConfig().getEsupSignatureUri() + "/signrequests/soft/" + previousDocumentId)
                    .retrieve()
                    .bodyToMono(String.class)
                    .block();
            }
        }
        if (isAvenant) {
            avenant.setDateEnvoiSignature(new Date());
            avenant.setDocumentId(documentId);
            avenantJpaRepository.saveAndFlush(avenant);
        } else {
            convention.setDateEnvoiSignature(new Date());
            convention.setDocumentId(documentId);
            conventionJpaRepository.saveAndFlush(convention);
        }
    }
    break;

@smattsck smattsck merged commit dc5ac4c into EsupPortail:dev Oct 21, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants