Data Exchange - Implemented reconciliation on external keys

SVN:trunk[1101]
This commit is contained in:
Romain Quetiez
2011-03-01 13:47:09 +00:00
parent f3f2eb5c79
commit 67f8ddf5a8
6 changed files with 255 additions and 67 deletions

View File

@@ -40,6 +40,8 @@ define('evTEXTQUAL', 3); // used for escaping as well
define('evOTHERCHAR', 4);
define('evEND', 5);
define('NULL_VALUE', '<NULL>');
/**
* CSVParser
@@ -82,6 +84,10 @@ class CSVParser
{
$sCell = $this->m_sCurrCell;
}
if ($sCell == NULL_VALUE)
{
$sCell = null;
}
if (!is_null($aFieldMap))
{