Actions
Régression #17700
ferméContrôle sur le réconciliation des réponses signées
Début:
06/07/2021
Echéance:
09/07/2021
Description
Le Sgami souhaitant passé en 20.10, en testant le maarchcapture. Un problème a été soulevé.
Afin que l'injection de pièce jointe soit fonctionnelle, il a été obligé modifier le fichier MaarchWSClient.xml,
Version d'avant:
<!-- Scan de réconcilisation via la fiche de liaison produite par l'agent avec le QRCode -->
<process name="MaarchRestWSProcessFromScanReco">
<loop xpath="/Batch/Documents/Document">
<call name="/attachments" method="POST">
<argument type="entity" name="encodedFile" eval="base64_encode(file_get_contents($Element->path))"/>
<argument type="entity" name="res_id_master" metadata="destination"/>
<argument type="entity" name="type">signed_response</argument>
<argument type="entity" name="format" attribute="extension"/>
<argument type="entity" name="title" metadata="filename"/>
<argument type="entity" name="status">SIGN</argument>
<return>
<id metadata="resId" />
</return>
</call>
</loop>
</process>
A été modifié:
<!-- Scan de réconcilisation via la fiche de liaison produite par l'agent avec le QRCode -->
<process name="MaarchRestWSProcessFromScanReco">
<loop xpath="/Batch/Documents/Document">
<call name="/attachments" method="POST">
<argument type="entity" name="encodedFile" eval="base64_encode(file_get_contents($Element->path))"/>
<argument type="entity" name="resIdMaster" metadata="destination"/>
<!-- <argument type="entity" name="type">signed_response</argument> -->
<argument type="entity" name="type">simple_attachment</argument>
<argument type="entity" name="format" attribute="extension"/>
<argument type="entity" name="title" metadata="filename"/>
<!-- <argument type="entity" name="status">SIGN</argument> -->
<argument type="entity" name="status">TRA</argument>
<return>
<id metadata="resId" />
</return>
</call>
</loop>
</process>
cependant cela ne répond pas aux attentes, il est souhaité que lors de l'envoi d'un projet réponse signée qu'il est le statut signé.
C'est une régression cela était opérationnelle en 19.04 ne l'ai plus en 20.10.
Actions