ImportCsvLBPWithSemicolon.json: Difference between revisions

From Documentation de la solution web de gestion OpenFlyers
Jump to navigation Jump to search
imported>Nsanch
No edit summary
imported>Nsanch
 
Line 9: Line 9:
         "charset" : "ISO-8859-15",
         "charset" : "ISO-8859-15",
         "nbLineHeader" : "8",
         "nbLineHeader" : "8",
         "nbLineFooter" : "1",
         "nbLineFooter" : "0",
         "regex" : "/^([^;]*);\"([^;]*)\";([^;]*);/i"
         "regex" : "/^([^;]*);\"([^;]*)\";([^;]*);/i"
     },
     },

Latest revision as of 12:43, 2 December 2020

Présentation

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

Modèle

<javascript>{

   "inputFormat" : {
       "contentType" : "text\/csv",
       "charset" : "ISO-8859-15",
       "nbLineHeader" : "8",
       "nbLineFooter" : "0",
       "regex" : "/^([^;]*);\"([^;]*)\";([^;]*);/i"
   },
   "field" : [
       {
           "name" : "account_entry_date",
           "format" : {
               "name" : "formatDate",
               "parameter" : [
                   "DD/MM/YYYY"
               ]
           }
       },
       {
           "name" : "account_entry_comment"
       },
       {
           "name" : "account_entry_amount"
       }
   ]

}</javascript>