- Integrating...

SVN:trunk[336]
This commit is contained in:
Denis Flaven
2010-04-15 15:21:41 +00:00
parent 12b7fb7498
commit 2c90ebcc13

View File

@@ -428,13 +428,13 @@ class BulkChange
$newID = $oTargetObj->DBInsertTrackedNoReload($oChange); $newID = $oTargetObj->DBInsertTrackedNoReload($oChange);
$aResult[$iRow]["__STATUS__"] = new RowStatus_NewObj($this->m_sClass, $newID); $aResult[$iRow]["__STATUS__"] = new RowStatus_NewObj($this->m_sClass, $newID);
$aResult[$iRow]["finalclass"] = get_class($oTargetObj); $aResult[$iRow]["finalclass"] = get_class($oTargetObj);
$aResult[$iRow]["id"] = CellStatus_Void($newID); $aResult[$iRow]["id"] = new CellStatus_Void($newID);
} }
else else
{ {
$aResult[$iRow]["__STATUS__"] = new RowStatus_NewObj(); $aResult[$iRow]["__STATUS__"] = new RowStatus_NewObj();
$aResult[$iRow]["finalclass"] = get_class($oTargetObj); $aResult[$iRow]["finalclass"] = get_class($oTargetObj);
$aResult[$iRow]["id"] = CellStatus_Void(0); $aResult[$iRow]["id"] = new CellStatus_Void(0);
} }
} }
@@ -445,7 +445,7 @@ class BulkChange
// Reporting // Reporting
// //
$aResult[$iRow]["finalclass"] = get_class($oTargetObj); $aResult[$iRow]["finalclass"] = get_class($oTargetObj);
$aResult[$iRow]["id"] = CellStatus_Void($aRowData[$iCol]); $aResult[$iRow]["id"] = new CellStatus_Void($oTargetObj->GetKey());
if (count($aErrors) > 0) if (count($aErrors) > 0)
{ {