我是Magento的新手。我正在使用Magento 1.7。

我的客户希望我根据该国增加不同的交货价格,数量和体重。这就是他想要的。

1. STANDARD DELIVERY in UK is £7, 
2. FREE DELIVERY in UK orders above £100, 
3. EUROPEAN COUNTRIES is £10 for items below 5kg
4. REST OF THE WORLD IS is £19.99
5. System automatically add £5 per 5kg in UK 
6. £15 per 5kg in rest of the world 

是否有任何模块可以帮助我添加类似的选项?还是我想创建一个新的模块?

有帮助吗?

解决方案

这可以通过餐桌价格和购物车规则来实现。

http://www.magentocommerce.com/knowledge-base/entry/how-do-i-i-set-up-table-rate-shipping

您根据权重与目的地设置桌子速率。然后类似:

Country    Region    Zip    weight    Shipping Price
   // 1. STANDARD DELIVERY in UK is £7, 
   UK        *       *       0             7     
   // 5. System automatically add £5 per 5kg in UK 
   UK        *       *       5            12     
   UK        *       *       10           17     
   UK        *       *       15           22     
   UK        *       *       20           27     
   UK        *       *       25           32     
   UK        *       *       30           37
   // add more rows     
   // 3. EUROPEAN COUNTRIES is £10 for items below 5kg
   DEU       *       *       *            10
   FRA       *       *       *            10
   ... // all other european countries
   // 4. REST OF THE WORLD IS is £19.99
   *         *       *       0           19.99
   // 6. £15 per 5kg in rest of the world 
   *         *       *       5           34.99
   *         *       *       10          49.99
   // add more rows     

购物车规则:

  1. 英国订单免费送货超过100英镑,

有一个未定义的情况:eu> = 5kg是多少?

其他提示

我已经回答了,但是也应该通过此扩展名来实现: https://github.com/thebod/thebod_shippingrates 与GUI一起使用:-)

我建议使用owebiashipping2扩展。此扩展名非常灵活,它允许根据您的意愿制定多个运输规则。

许可以下: CC-BY-SA归因
scroll top