ImportCsvCAWithSemicolon.json: Difference between revisions

From Documentation de la solution web de gestion OpenFlyers
Jump to navigation Jump to search
imported>Eberthomieu
imported>Eberthomieu
Line 11: Line 11:
         "nbLineFooter" : "0",
         "nbLineFooter" : "0",
         "multiLineLabel": "true",
         "multiLineLabel": "true",
        "diffColumnCreditDebit" : "true",
         "regex" : "/^([^;]*);(?:[^;]*);\"([^;]*)\";([^;]*);([^;\\s]*)/ms"
         "regex" : "/^([^;]*);(?:[^;]*);\"([^;]*)\";([^;]*);([^;\\s]*)/ms"
     },
     },

Revision as of 16:40, 26 March 2019

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" : {
       "contentType" : "text\/csv",
       "charset" : "ISO-8859-15",
       "nbLineHeader" : "6",
       "nbLineFooter" : "0",
       "multiLineLabel": "true",
       "regex" : "/^([^;]*);(?:[^;]*);\"([^;]*)\";([^;]*);([^;\\s]*)/ms"
   },
   "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>