0

我在整个 magmi,magento 中都很新,这有点令人困惑.. 几个问题:

  1. 有两个价格,一个是供应商给的原价,第二个是我给的,我想给参观者看的。为了显示“我的价格”,我应该在 csv 文件中写什么?+ 我怎样才能自动降低原始价格的 20%,或者另一方面增加 20%?

  2. “category_ids”有替代品吗?我喜欢用它的名字来命名,而不是“17”-“汽车”,我说得够清楚吗?

  3. 这是我的 csv:

制造商 类别 深度 尺寸 数量 名称 sku 型号 缩略图 价格 price1xx has_options short_description image upc weight shipping_type 商店网站 attribute_set

在属性集下-我在网站下写了默认值-我在类别下写了所有子域的名称-我写了每个类别的名称-示例-汽车

你觉得还可以吗?

  1. 你有我可以使用的完整工作 csv 文件的示例吗?

tnx 进阶!!!

4

3 回答 3

2

关于您关于类别的问题,Magmi 有一个名为On the fly category creator/importer的插件。

它的工作方式非常简单,在您的 csv 文件中添加一个名称为类别的字段,并为每个产品添加逗号分隔格式的相关类别:

parentcategory/subcategory,other category

Magento 中不存在的类别将被自动创建。

为了使用它,您必须激活它。您可以通过 Magmi Web 界面进行操作(不要忘记在运行应用程序之前单击保存配置文件)或直接编辑plugins.conf文件。

于 2012-01-02T11:49:46.087 回答
1

如果有帮助,这里是我用 magmi 成功导入的模板:

对于产品导入(只是标题):

store,websites,attribute_set,type,category_ids,sku,name,price,special_price,cost,weight,status,visibility,is_imported,tax_class_id,description,short_description,qty

对于图像:

sku,image,small_image,thumbnail
333333,/333333.jpg,/333333.jpg,/333333.jpg

始终以 1-10 种产品小规模测试导入,只有在诊断出任何潜在问题后才能继续进行。

于 2012-03-12T20:59:19.303 回答
0

将所有产品价格提高 %10:

<?php
   $percent = 1.10; // percentage of increase, for decrase replace 0.10
   $store = 2; // store code

   $priceUpdate = Mage::getSingleton('core/resource')->getConnection('core_write'); 
   $priceUpdate->query("
      UPDATE catalog_product_entity_decimal val  
      SET  val.value = (val.value * $percent)
      WHERE  val.attribute_id = ( 
         SELECT attribute_id FROM eav_attribute eav
         WHERE eav.entity_type_id = 4 // 4 is catalog/product id
            AND eav.attribute_code = 'price' // this is the attribute type where in eav_attribute
            )
         AND val.store_id = $store
   ");
?>
于 2012-01-02T08:21:45.430 回答