问题描述
我正在尝试使用Magmi更新2家商店的价格,但出现问题.这是我的设置.
I am trying to update prices using Magmi on 2 store views but I am having issues. Here is my setup.
网站名称(代码:bab)商店名称(根类别:BAB)
Website Name (Code: bab)Store Name (Root Category: BAB)
有2个商店视图Storeview 1(代码:abc)Storeview 2(代码:bab)
Has 2 store viewsStoreview 1 (Code: abc)Storeview 2 (Code: bab)
由于我只想更新storeviews的价格,因此我的csv文件如下:商店,网站,SKU,价格管理员,faf,1001,5.00管理员,gpf,1001、7.00
As I am just wanting to update prices for the storeviews my csv file is as follows:store, websites, sku, priceadmin, faf, 1001, 5.00admin, gpf, 1001, 7.00
不幸的是,价格只是没有根据需要更新.只有1家商店的价格更新,而另一家则没有.
Unfortunately the prices are just not updating as needed. Only 1 store price updates, while the other one doesn't.
我尝试用不同的方式导入.
I have tried importing in different ways.
- 我将价格作为2个单独的csv文件导入,每个商店视图1个.
- 我将两个商店的价格都导入到一个csv文件中.所有产品的第一家商店都位于csv的顶部.然后是第一个存储产品之后的第二个产品块.
- 我还尝试了上述格式的csv,其中每个sku有2行,并在每行上指定了商店视图.
- 我还尝试添加第三行,其中包括admin,网站(左侧为空白),sku,价格.占一个默认值.如果还需要指定默认值.我尝试将默认行添加到两个storeview之前,并将第三行添加到两个storeviews之后.
这些方法均未将价格同时应用于这两种方法.我要么只得到1个价格更新.或者,我在一家商店中得到了默认的价格显示,而另一家商店根本没有更新.
None of these approaches are applying the price to both. I either get just 1 price update. Or I get the default price show in 1 store, and the other store not updating at all.
每次导入magmi后,我也一直在重新编制索引,清除了magento缓存和我的chrome缓存.
I have also been re-indexing after each magmi import, clearing magento cache and my chrome cache.
我还进行了检查,以确保没有影响任何产品的折扣或定价规则.
I have also checked to make sure there are no discounts or pricing rules effecting any products.
因此,我希望有人可以就我做错的任何事情或需要检查的其他问题为我提供建议.也许我的csv文件配置错误?
So I am hoping someone can advise me on anything I am doing wrong or anything else I need to check. Maybe I am configuring my csv file wrong?
Nore:我有5000多种产品,我认为我不能使用Magneto的默认导入功能/数据配置文件,因为它真的很慢,而且经常崩溃.
Nore: I have over 5000 products and I don't think I can use magneto's default import feature / data profiles as it is really slow and often just crashes.
谢谢,希望能对您有所帮助.将不胜感激.保罗
Thanks and hope you can help. Would be much appreciated.Paul
推荐答案
如magmi support中所述: http://sourceforge.net/p/magmi/support-requests/121/#9fbb
as stated in magmi support : http://sourceforge.net/p/magmi/support-requests/121/#9fbb
要使用多商店,您必须在商店"列上添加商店视图代码,而不是在网站"列上进行更改.在这里:
to work with multistore, you MUST vary on "store" column putting storeviews code, not on "websites" column.here:
store,sku, price
abc, 1001, 5.00
bab, 1001, 7.00
这应该可以解决您的问题
This should fix your problem
这篇关于使用Magmi导入多个商店视图的价格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!