N°583 CSV Import now supports friendlynames as reconciliation keys. More over, read-only attributes (friendlyname, obsolescence flag, ...) are forced to reconciliation scheme.

SVN:trunk[4861]
This commit is contained in:
Guillaume Lajarige
2017-08-17 09:51:38 +00:00
parent 8e06a95502
commit 4171c5c35f
3 changed files with 29 additions and 3 deletions

View File

@@ -470,6 +470,8 @@ class BulkChange
{
// skip the private key, if any
if ($sAttCode == 'id') continue;
// skip reconciliation keys
if (in_array($sAttCode, $this->m_aReconcilKeys)) continue;
$oAttDef = MetaModel::GetAttributeDef($this->m_sClass, $sAttCode);
$aReasons = array();