Salut,
L’appel aux webservices d’enregistrement de Maarch Courrier depuis Maarch Capture a été simplifié à l’aide d’un webservice “chapeau”.
Ce dernier fait à la fois appel au ws d’enregistrement pour res_letterbox et pour mlb_coll_ext.
Autre avantage, le tableau data a été remplacé par une structure à plat.
Voici le paramétrage attendu dans Maarch Capture désormais pour enregistrer un document scanné ou un mail et ses PJ :
<!-- REST SAMPLES -->
<process name="MaarchRestWSProcessFromScan">
<loop xpath="/Batch/Documents/Document">
<call name="/resources" method="POST">
<argument type="entity" name="encodedFile" eval="base64_encode(file_get_contents($Element->path))"/>
<argument type="entity" name="type_id">108</argument>
<argument type="entity" name="destination">COU</argument>
<argument type="entity" name="priority">2</argument>
<argument type="entity" name="category_id">incoming</argument>
<argument type="entity" name="format" attribute="extension"/>
<argument type="entity" name="status">INIT</argument>
<return>
<resId metadata="resId" />
</return>
</call>
</loop>
</process>
<process name="MaarchRestWSProcessFromMail">
<loop xpath="/Batch/Documents/Document">
<call name="/resources" method="POST">
<argument type="entity" name="encodedFile" eval="base64_encode(file_get_contents($Element->path))"/>
<argument type="entity" name="format" attribute="extension"/>
<argument type="entity" name="status">INIT</argument>
<argument type="entity" name="type_id" metadata="type_id"/>
<argument type="entity" name="category_id">incoming</argument>
<argument type="entity" name="subject" metadata="subject"/>
<argument type="entity" name="doc_date" metadata="doc_date"/>
<argument type="entity" name="destination" metadata="destination"/>
<argument type="entity" name="initiator" metadata="destination"/>
<argument type="entity" name="priority">2</argument>
<argument type="entity" name="custom_t10" xvalue="./Metadata/fromaddress"/>
<argument type="entity" name="custom_t11" xvalue="./Metadata/toaddress"/>
<argument type="entity" name="custom_t12" xvalue="./Metadata/ccaddress"/>
<argument type="entity" name="source" xvalue="./Metadata/message_id"/>
<argument type="entity" name="nature_id">email</argument>
<argument type="entity" name="exp_contact_id" xvalue="./Metadata/fromaddress"/>
<argument type="entity" name="address_id" xvalue="./Metadata/fromaddress"/>
<return>
<resId metadata="resId" />
</return>
</call>
<loop xpath="Attachments/Attachment">
<call name="/res" method="POST">
<argument type="entity" eval="base64_encode(file_get_contents($Element->path))" name="encodedFile"/>
<argument type="entity" name="data">
<column>title</column>
<value metadata="filename"/>
<type>string</type>
</argument>
<argument type="entity" name="data">
<column>res_id_master</column>
<value xvalue="ancestor::Document/Metadata/resId"/>
<type>integer</type>
</argument>
<argument type="entity" name="data">
<column>coll_id</column>
<value>letterbox_coll</value>
<type>string</type>
</argument>
<argument type="entity" name="data">
<column>attachment_type</column>
<value>incoming_mail_attachment</value>
<type>string</type>
</argument>
<argument type="entity" name="collId">letterbox_coll</argument>
<argument type="entity" name="table">res_attachments</argument>
<argument type="entity" name="fileFormat" attribute="extension"/>
<argument type="entity" name="status">TRA</argument>
<return>
<resId metadata="resId" />
</return>
</call>
</loop>
</loop>
</process>
Nouveaux exemples publiés dans les sources de Maarch Capture et documentation MD en cours de mise à jour.