ImportCsvCAWithSemicolon.json: Difference between revisions

From Documentation de la solution web de gestion OpenFlyers
Jump to navigation Jump to search
imported>Mroy
imported>Mroy
Line 6: Line 6:
<javascript>{
<javascript>{
     "inputFormat" : {
     "inputFormat" : {
        "breakAfterNEmptyLines" : 4,
         "charset" : "ISO-8859-15",
         "charset" : "ISO-8859-15",
         "contentType" : "text\/csv",
         "contentType" : "text\/csv",

Revision as of 16:34, 25 March 2020

Présentation

Cette page contient le modèle d'import de relevé bancaire du format "CSV Crédit Agricole avec point-virgule".

Modèle

<javascript>{

   "inputFormat" : {
       "breakAfterNEmptyLines" : 4,
       "charset" : "ISO-8859-15",
       "contentType" : "text\/csv",
       "mergedLineChar" : " ",
       "multiLineLabel": "true",     
       "nbLineHeader" : "6",
       "nbLineFooter" : "0",
       "regex" : "/^([^;]*);(?:[^;]*);\"([^;]*)\";([^;]*);([^;]*)/",
       "skipEmptyLines" : "false",
       "startLineRegex" : "\/([0-9]{2}\\\/[0-9]{2}\\\/[0-9]{4};)\/"
   },
   "field" : [
       {
           "name" : "account_entry_date",
           "format" : {
               "name" : "formatDate",
               "parameter" : [
                   "DD/MM/YYYY"
               ]
           }
       },
       {
           "name" : "account_entry_comment"
       },
       {
           "name" : "account_entry_debit"
       },
       {
           "name" : "account_entry_credit"
       }
   ]

}</javascript>