Magento 中的多件商品同一运输托运
假设我有产品 1、2 和 3。它们都可以在同一批货物中发送,但每批货物最多 5 个。我该如何设置,以便结账时能够识别这一点,并且只对所有商品(最多 5 件)应用一次运费?
例如:一批货物可以有 5 件商品,但只能来自特定制造商。因此,1 件商品的运费与 5 件商品的运费相同。但 6 件物品需要分两次寄送,因此价格翻倍。
1-5 件商品,10.00 英镑
6-11 项,20.00 ..
Say I have products 1, 2 and 3. They can all be sent in the same consignment, but with a maximum of 5 per consignment. How do I set it up so that the checkout recognizes this and only applies the shipping once to all of them (max 5)?
For example: One consignment can have 5 items but only from a specific manufacturer. So the shipping cost for 1 item is the same as the cost for 5 items. But 6 items will need to be sent in two consignments so the price is doubled.
1-5 items, £10.00
6-11 items, 20.00 ..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
遗憾的是,没有用于此目的的免费扩展。但如果你不太在意钱,你可以使用这个:
http://www.magentocommerce.com/magento -connect/webshopapps/extension/1357/webshopapps-product-matrix-shipping
我不是此扩展的开发人员,但我在我的一个项目中使用了它。它为您提供本机表费率中可用的所有功能+您可以定义“运输组”,这是产品级别的属性。此属性可以帮助您对每批托运货物的运费进行分组。
It is a pity, but there is no free extension for such purpose. But if you don't care too much about money, you may use this one:
http://www.magentocommerce.com/magento-connect/webshopapps/extension/1357/webshopapps-product-matrix-shipping
I am not a developer of this extension, but I have used it on one of my projects. It gives you all the functionality available in native table rates + you can define "Shipping Group", that is an attribute on product level. This attribute could help you with grouping of shipping prices per consignment.
使用owbia Shipping扩展,您可以为很多事情设置条件,包括商品数量,也许它可以帮助您:http://www.magentocommerce.com/magento-connect/owebia/extension/1101/owebia-shipping-2
with the owebia shipping extension you can have conditions for a lot of things, including the number of items, maybe it can help you: http://www.magentocommerce.com/magento-connect/owebia/extension/1101/owebia-shipping-2
您也许可以通过餐桌费率来实现这一目标。
在系统>中配置>运输方式>表费率在当前配置范围中选择一个网站或商店,然后将“条件”更改为“商品数量与目的地”。导出 CSV。在“商品数量”的 CSV 列中添加值“1”、“6”、“11”等。以及每个值的匹配价格“10”、“20”、“30”等。其他列均可为“*”。
You might be able to achieve this with table rates.
In System > Configuration > Shipping Methods > Table Rates pick a website or store in the Current Configuration Scope then change the "Condition" to "# of Items vs. Destination". Export a CSV. In the CSV column for "# of Items" add the values "1", "6", "11", etc.. and the matching price for each, "10", "20", "30", etc. The other columns can all be "*".