回答:
ここでの問題は、リソース保存関数の一部です。magentoは、主キーが自動インクリメントに設定されているかどうかをチェックし、そうである場合は、保存されているデータから削除します。
でMage_Core_Model_Resource_Db_Abstract::save
、それは扱ってどのように見ることができます$this->_isPkAutoIncrement
/**
* Not auto increment primary key support
*/
if ($this->_isPkAutoIncrement) {
$data = $this->_prepareDataForSave($object);
unset($data[$this->getIdFieldName()]);
$this->_getWriteAdapter()->update($this->getMainTable(), $data, $condition);
} else {
$select = $this->_getWriteAdapter()->select()
->from($this->getMainTable(), array($this->getIdFieldName()))
->where($condition);
if ($this->_getWriteAdapter()->fetchOne($select) !== false) {
$data = $this->_prepareDataForSave($object);
unset($data[$this->getIdFieldName()]);
if (!empty($data)) {
$this->_getWriteAdapter()->update($this->getMainTable(), $data, $condition);
}
} else {
$this->_getWriteAdapter()->insert($this->getMainTable(), $this->_prepareDataForSave($object));
}
}
したがって、私の問題を修正するには$_isPkAutoIncrement
、モデルのリソースをfalse に設定するだけでよく、MagentoはデータにPKを保持してテーブルに保存します。