Magento Zend_Db_Adapter_Abstract ::更新问题

时间:2011-08-25 21:21:46

标签: php mysql magento zend-db magento-1.5

我编写了一个模块,可以接收CSV文件并将数据添加到 sales_flat_order 表(下面的代码)。尽管我怀疑并且缺乏通过Magento与DB进行交互的知识,但我能够成功更新表中的必要列。但是,每次运行代码时,它都会更新行,但始终会向表中添加一个额外的行,并使用所有空值。我已经尝试打印出原始SQL,但我没有看到任何无关的SQL调用,但它仍在继续这样做。

以下是重要的代码片段,可以帮助解释我正在做的事情。希望这是其他人遇到的已知问题,可以指出我正确的方向。

首先,这是我的config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<config>
    <modules>
        <VPS_Sorting>
            <version>0.1.0</version>
        </VPS_Sorting>
    </modules>
    <admin>
        <routers>
            <adminhtml>
                <args>
                    <modules>
                        <sorting after="Mage_Adminhtml">VPS_Sorting</sorting>
                    </modules>
                </args>
            </adminhtml>
        </routers>
    </admin>
    <global>
        <models>
            <sorting>
                <class>VPS_Sorting_Model</class>
                <resourceModel>sorting_mysql4</resourceModel>
            </sorting>
            <sorting_mysql4>
                <class>VPS_Sorting_Model_Mysql4</class>
<!--                 Doesn't need entities when you aren't using your own table!! -->
            </sorting_mysql4>
        </models>
        <blocks>
            <sorting>
                <class>VPS_Sorting_Block</class>
            </sorting>
        </blocks>

        <resources>
            <!-- this section used to install/configure the DB dynamically -->
            <sorting_setup>
                <setup>
                    <module>VPS_Sorting</module>
                    <class>VPS_Sorting_Model_Mysql4_Setup</class>
                </setup>
                <connection>
                    <use>core_setup</use>
                </connection>
            </sorting_setup>
            <!-- end setup section -->

            <sorting_write>
                <connection>
                    <use>core_write</use>
                </connection>
            </sorting_write>
            <sorting_read>
                <connection>
                    <use>core_read</use>
                </connection>
            </sorting_read>
        </resources>
    </global>
    <adminhtml>
        <acl>
            ...
        </acl>
    </adminhtml>
</config>

正如评论中所说,我没有提供任何实体,因为我没有使用我自己的表(它使用销售/订单资源模型初始化(见打击)

接下来,我将此添加到我的 system.xml 文件中,以向配置中添加文件导入框:

<importcsv translate="label">
    <label>Import CSV</label>
    <comment>
        <![CDATA[requires 2 columns, 'order_id' and 'real_ship_cost']]>
    </comment>
    <frontend_type>import</frontend_type>
    <backend_model>sorting/import_csv</backend_model>
    <sort_order>5</sort_order>
    <show_in_default>1</show_in_default>
    <show_in_website>1</show_in_website>
    <show_in_store>1</show_in_store>
</importcsv>

以下是system.xml中用于上传框的backend_model类:

class VPS_Sorting_Model_Import_Csv extends Mage_Core_Model_Config_Data
{
    protected function _construct()
    {
        parent::_construct();
        $this->_init('sorting/csv'); //initialize the resource model
    }


    public function _afterSave()
    {
        if($rm = $this->_getResource())
            $rm->uploadAndImport($this);

        else
            Mage::logException("Failed to load VPS_Sorting Resource Model");
    }
}

最后,最重要的是模型资源类完成所有工作。你可以在这里看到我在构造函数中调用_init('sales/order'),这样我就可以搭载sales_order资源模型,而不必建立一个单独的数据库连接(我假设这没关系......它正在工作,但是让我们我知道这是不是一个坏主意)

class VPS_Sorting_Model_Mysql4_Csv extends Mage_Core_Model_Mysql4_Abstract
{
    protected $_adapter;

    protected function _construct()
    {
        $this->_init('sales/order', 'entity_id');
    }

    public function uploadAndImport(Varien_Object $object)
    {
        $csvFile = $_FILES['groups']['tmp_name']['actions']['fields']['importcsv']['value'];
        $io = new Varien_Io_File();
        $info = pathinfo($csvFile);
        $io->open(array('path' => $info['dirname']));
        $io->streamOpen($info['basename'], 'r');

        // check and skip headers
        $headers = $io->streamReadCsv();

        //        return parent::_afterSave();
        if ($headers === false || count($headers) < 2 || $headers[0] != 'order_id' || $headers[1] != 'real_ship_cost')
        {
            $io->streamClose();
            Mage::throwException("Invalid Real Shipping Cost CSV Format.  File must contain 2 columns: 'order_id' and 'real_ship_cost'");
        }

        //Varien_Db_Adapter_Pdo_Mysql
        $this->_adapter = $this->_getWriteAdapter();

        $this->_adapter->beginTransaction();

        try {
            $importData = array();

            while (false !== ($csvLine = $io->streamReadCsv()))
            {
                if (empty($csvLine)) {
                    continue;
                }

                $importData[] = array('id' => $csvLine[0], 'rsc' => $csvLine[1]);

                if (count($importData) == 5000) {
                    $this->_saveImportData($importData);
                    $importData = array();
                }
            }

            $this->_saveImportData($importData);

            $io->streamClose();
        } catch (Mage_Core_Exception $e) {
            $this->_adapter->rollback();
            $io->streamClose();
            Mage::throwException($e->getMessage());
        } catch (Exception $e) {
            $this->_adapter->rollback();
            $io->streamClose();
            Mage::logException($e);
            Mage::throwException('An error occurred while importing Real Shipping Cost data.');
        }

        $this->_adapter->commit();

        return $this;
    }


    protected function _saveImportData($_data)
    {
        foreach($_data as $_row)
        {
            $this->_adapter->update($this->getMainTable(), array('real_ship_cost' => $_row['rsc']), array('`increment_id` = ?' => $_row['id']));
        }
    }
}

我删除了很多调试语句以简化它,但重要的是要注意,如果我回显 $ importData 数组的大小,它总是按照我的CSV预期的3。如果我将记录添加到 Zend_Db_Adapter_Abstract 来打印它运行的每个SQL语句,它只运行3.所以我不知道为什么要插入额外的行。

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

我不是100%确定原因为什么会发生这种情况,但我找到了解决方案。我相信这是由于默认情况下任何Mage_Core_Model_Config_Data对象将其值存储在core_config_data表中。由于我初始化它以使用我自己的资源模型,它实际上捎带在sales/order资源模型上,它感到困惑,并试图将伪造的信息保存到sales/order表。

为了解决这个问题,我做了以下几点:

首先,在 system.xml 中使用的 backend_model 类的构造函数中,将_ dataSaveAllowed 标志设置为 false

protected function _construct()
{
    parent::_construct();
    $this->_init('sorting/csv'); //initialize the resource model
    $this->_dataSaveAllowed = false;
}

接下来,不使用 _afterSave 处理CSV导入,而是使用 _beforeSave (如果不允许,则不会调用 _afterSave 保存数据)

这似乎解决了我的问题,但如果我的方法存在缺陷,我欢迎任何意见/建议。我还是新手,所以任何经验丰富的见解总是受到赞赏:)