Browse Source

readme test

master
root 3 years ago
parent
commit
2d589388ff
2 changed files with 11 additions and 2 deletions
  1. +4
    -0
      README.md
  2. +7
    -2
      action.php

+ 4
- 0
README.md View File

@ -0,0 +1,4 @@
# Exports AidImpact
Installation
------------

+ 7
- 2
action.php View File

@ -83,9 +83,14 @@ if ($action=='load')
#$lib_mouvement = $getData[6];
$lib_mouvement = iconv( mb_detect_encoding($getData[6]), 'Windows-1252//TRANSLIT', $getData[6]);
if (trim($getData[8])!='')
#debit(7)-crédit(8)
if (trim($getData[7])!='')
{
$credit = "-".str_replace(',','.',trim($getData[8]));
$credit = "-".trim($getData[7]);
}
elseif (trim($getData[8])!='')
{
$credit = trim($getData[8]);
}
else
{


Loading…
Cancel
Save