...
Intitulé | Divalto weavy | Divalto infinity | Fichier | Conversions possibles |
---|---|---|---|---|
Evénements - Observation | sw_data_event.comment | EVTTIERS.NOTE > MNOTE.NOTEBLOB | ActionV15.txt | HTML > RTF ou TEXT > RTF |
Tâches - Commentaire | sw_data_task.comment | EVTTIERS.NOTE > MNOTE.NOTEBLOB | Agenda.txt | HTML > RTF ou TEXT > RTF |
Commande/Entête - Commentaire commande | sw_data_orderheader.commentOrder | ENT.NOTE > MNOTE.NOTEBLOB | EntDocument.txt | HTML > RTF ou TEXT > RTF |
Affaires/Opportunités - Description | sw_data_deal.description | PRJAV.NOTE > MNOTE.NOTEBLOB PRJAP.NOTE > MNOTE.NOTEBLOB | Affaire.txt | HTML > RTF ou TEXT > RTF |
...
Info |
---|
Le 3eme paramètre (%3) : -basichtml ou -html doit être en phase avec la variable useTextboxInsteadOfRichTextbox. Si cette variable est à 1, on ne veut pas gérer le du html mais uniquement du texte dans Divalto weavy et il faut donc supprimer le 3eme paramètre dans l’appel. Paramètres : C:\SwingMobility C:\SwingMobility\ControlCenter_Export |
...
Divalto weavy > Divalto infinity
Avant Divalto weavy 6.2
ControlCenter
Module “Convertion RTF en retour“ qui exécute un batch “ConvertRTFRetour.cmd“ qui contient la liste des champs à convertir dans les fichiers txt.
...
Contenu du batch :
Bloc de code | ||
---|---|---|
| ||
REM Version : CC-20230523
REM Divalto weavy -> Divalto infinity
REM Conversion d'une colonne dans un fichier de TXT/HTML vers RTF
REM %1 = chemin racine C:\SwingMobility par défaut
REM %2 = chemin vers le dossier d'import, C:\SwingMobility\ControlCenter_Import par défaut
REM %3 = indique que l'on gère la conversion HTML/RTF en mettant -html
REM Column order starts at 0
REM ActionV15.txt convert column comment (22)
"%1\Tools\Convert\Convert.exe" "%2\ActionV15.txt" 22 -revert %3
REM Affaires.txt convert column description (17)
"%1\Tools\Convert\Convert.exe" "%2\Affaires.txt" 17 -revert %3
REM Agenda.txt convert column description (16)
"%1\Tools\Convert\Convert.exe" "%2\Agenda.txt" 16 -revert %3
REM EntDocument.txt convert column comment (13)
"%1\Tools\Convert\Convert.exe" "%2\EntDocument.txt" 13 -revert %3 |
Info |
---|
Le 3eme paramètre (%3) doit être en phase avec la variable useTextboxInsteadOfRichTextbox.
|
A partir de Divalto weavy 6.2
...