联系电话:0755-27515592
最新动态:

Magento教程

Magento导入Tier Price

点击数:11942015-07-27 10:34:08 来源: 外贸网站建设,深圳外贸网站建设,深圳网站建设,外贸商城网站制作-亿恩科技

新闻摘要:Magento默认无法导入Tier Price,需要在app/code/local/YOURMODULE/Catalog/Model/Convert/Adapter/Product.php 继续加入扩展方法。 已有的脚本里已实现过导入多图/多属性,自动创建目录,自动采集远程图片,现在

Magento默认无法导入Tier Price,需要在app/code/local/YOURMODULE/Catalog/Model/Convert/Adapter/Product.php 继续加入扩展方法。

已有的脚本里已实现过导入多图/多属性,自动创建目录,自动采集远程图片,现在再加导入Tier Price的功能。

核心函数:

private function _editTierPrices(&$product, $tier_prices_field = false)
{
if (($tier_prices_field) && !empty($tier_prices_field)) {
    if(trim($tier_prices_field) == 'REMOVE'){
        $product->setTierPrice(array());
    } else {
        $existing_tps = $product->getTierPrice();
        foreach($existing_tps as $key => $etp){
            $etp_lookup[$etp['price_qty']] = $key;
        }
        $incoming_tierps = explode('|',$tier_prices_field);
        foreach($incoming_tierps as $tier_str){
            $tmp = explode('=',$tier_str);
            $tps_toAdd[$tmp[0]] = array(
                                'website_id' => 0, // !!!! this is hard-coded for now
                                'cust_group' => 32000, // !!! so is this
                                'price_qty' => $tmp[0],
                                'price' => $tmp[1],
                                'delete' => ''
                            );
            if(isset($etp_lookup[$tmp[0]])){
                unset($existing_tps[$etp_lookup['price_qty']]);
            }
        }
        $tps_toAdd =  array_merge($existing_tps, $tps_toAdd);
        $product->setTierPrice($tps_toAdd);
    }
}
}

然后在saveRow函数里找地方加入:

if(
    isset($importData['tier_prices'])
    && !empty($importData['tier_prices'])
){
    $this->_editTierPrices($product, $importData['tier_prices']);
}

CSV文件里要有字段”tier_prices“,值的格式例子:qty=price|qty=price|qty=price

比如:50=12.25|500=11.70|5000=11.00

这样Magento就能导入Tier Price了

【责任编辑:(Top) 返回页面顶端
贴心
全国7×24小时客服热线
安全
病毒杀除率高于99%
稳定
网站可用性高于99.9%
实力
服务68家上市企业及集团公司
亿恩科技手机站
关注亿恩科技微信

亿恩科技—企业信息化一站式服务专家


Copyright © 2008- 深圳市亿恩科技有限公司版权所有 粤ICP备15056041号

联系我们 | 常见问题 | 在线留言 | 支付方式 | 软件开发 | 我的观点 | 资质荣誉 | 服务流程