ImportCsvCICWithComma.json

From Documentation de la solution web de gestion OpenFlyers
Revision as of 17:18, 27 November 2017 by imported>Jcheng (Jcheng a déplacé la page ImportCsvWithComma.json vers ImportCsvCICWithComma.json sans laisser de redirection)
Jump to navigation Jump to search

Présentation

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

Modèle

<javascript>{

   "inputFormat" : {
       "contentType" : "text\/csv",
       "charset" : "ISO-8859-15",
       "hasHeader" : true,
       "regex" : "/(.*)(?:,)(?:.*)(?:,)(.*)(?:,)(.*)(?:,)(?:.*)/i"
   },
   "field" : [
       {
           "name" : "account_entry_date",
           "format" : {
               "name" : "formatDate",
               "parameter" : [
                   "DD/MM/YYYY"
               ]
           }
       },
       {
           "name" : "account_entry_amount"
       },
       {
           "name" : "account_entry_comment"
       }
   ]

}</javascript>