在magento产品导入数据流配置文件中显示SKU

时间:2014-09-18 05:52:26

标签: magento import dataflow profiles

http://i.stack.imgur.com/tAluR.png

请参阅上面的截图

我们有什么方法可以在错误面前显示有问题的产品SKU?或者至少是导入的CSV文件的行号?

如果你知道在哪里编辑,这应该是相当简单的过程。我没有:D请帮忙。

1 个答案:

答案 0 :(得分:1)

数据流错误消息由以下内容生成:

app/code/core/Mage/Adminhtml/Block/System/Convert/Profile/Run.php

将此文件复制到:

app/code/local/Mage/Adminhtml/Block/System/Convert/Profile/Run.php

并寻找以下内容:

'template' => '<li style="#{style}" id="#{id}">'
    . '<img id="#{id}_img" src="#{image}" class="v-middle" style="margin-right:5px"/>'
    . '<span id="#{id}_status" class="text">#{text}</span>'
    . '</li>',
'text'     => $this->__('Processed <strong>%s%% %s/%d</strong> records', '#{percent}', '#{updated}', $this->getBatchItemsCount()),
'successText'  => $this->__('Imported <strong>%s</strong> records', '#{updated}')

变化:

. '<span id="#{id}_status" class="text">#{text}</span>'

要:

. '<span id="#{id}_status" class="text">Row #{id} - #{text}</span>'