分类目录

文章标签

相关资讯

热门推荐

opencart商品字段,magentoupop

2022-10-13 10:13:19 - 米境通

    

    首先

    评估要导入Magento的内容.qestion得到回答越清楚,评估你的选择就越容易.

    基本上,这些选项包括通过内置导入(内置方式)导入数据,通过自定义脚本导入数据(脚本方式),通过纯SQL(可怕的,可怕的SQL方式)导入数据以及通过外部模块导入(模块方式).

    内置的方式

    首先,您可以通过后端导入csv数据,如果您可以将基于opencart的产品/客户以CSV格式提供,然后可以在后端重新导入-请参阅此处或此处(仅限产品).

    这个解决方案取决于你如何从开放式购物车中导出数据这一事实,我坦率地说,这不是专家.只要你可以导出到XLS,CSV或类似产品,你应该没问题.

    脚本方式

    如果你不能这样做,我建议使用Magento自己的模型编写一个导入脚本.一个非常基本的片段,可以帮助您入门:

   
    //placethisfileintheMagentoroot,e.g../import.php,"."beingyouMagentoroot

    //loadthemagentoappwiththeadminstore

    require_once('app/Mage.php');

    Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);

    //dataimport,Iassumeyoucanwritesomesortofinputforthis$datalikereadingazipfileorsomeotherformat,ihere,Iassume,this$dataarrayholdsarraysofproducts($new_product)containinginformationonaproductfromopencart

    $data=...

    //loopoverthedataandcreatetheMagentomodels,thesecanincludeproducts,customers,etc.-forsimplicitythisisdoneforproducts,butcanbedoneforeveryotherdataobjectinmagento

    foreach($dataas$new_product){

    //loadanemptyMagentoproductmodel

    $product=Mage::getModel('catalog/product');

    //settheattributesyouwant

    $product->setData('sku',$new_product['sku']);

    $product->setData('name',$new_product['name']);

    .

    .

    .

    //saveit

    try{

    $product->save();

    }

    catch(Exception$e){

    Mage::logException($e);

    continue;

    }

    }
相关问答:
关于我们:
东南亚跨境电商shopee erp软件哪个最好用?推荐米境通erp是专业的虾皮电商erp软件,包含:shopee刊登、上货/铺货、采集、数据分析、订单批量管理、云仓、代发货等功能,支持免费试用。详细案例认准米境通品牌。
目录:首页 | 虾皮erp功能 | 虾皮电商物流 | 卖家免费体验 | shopee开店资讯
南京天遥路联网络科技有限公司 版权所有,苏ICP备15044100号-8