具有固定子项目数量的分组产品
我正在开发一个 Magento 网站,该网站有许多简单的产品。还有一种“假日套餐”,它以折扣价将多种简单产品合二为一:
- 商品 A 的 6
- 商品 B 的
- 2 商品 C 的
- 2 商品 D 的 2
“分组”产品类型为非常接近我所需要的——它允许每个项目跟踪它自己的库存,当需要运输和估计包裹时,它会尝试使用每个项目的重量/体积来包装容器。 (运输方面非常重要,因为我们需要尽可能高效地包装箱子 - 使用一个简单的产品来估计所有物品的尺寸可能行不通)。
但是,我们不希望客户能够选择每件商品的数量。相反,应该要求客户选择他们想要多少个假期套餐。
分组产品是最好的方法吗?有更好的方法来处理这个问题吗?
I'm working on a Magento site that has a number of simple products. There's also a "holiday package" which combines several simple products into one, at a discounted price:
- 6 of Item A
- 2 of Item B
- 2 of Item C
- 2 of Item D
The "grouped" product type is pretty close to what I need - it allows each item to keep track of it's own stock, and when it comes time to ship and estimate packages, it tries to pack the containers using the weight/volume of each individual item. (This shipping aspect is very important, as we need to pack the boxes as efficiently as possible - using a simple product with an estimated size for all items may not work).
However, we do not want the customer to be able to choose the quantity of each item. The customer should instead be asked to choose how many holiday packages they would like.
Is a grouped product the best approach? Is there a better way to handle this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Magento 1.5.1 中,最好的解决方案应该是捆绑产品。在那里,您可以在后端定义每个项目的价格和数量。您可以阻止用户更改这些商品的数量,而不是更改捆绑产品的数量(如果您愿意,您也可以这样做,但这不是您的需要)。
我们确实喜欢我们的某些产品。检查屏幕截图以查看配置示例
In Magento 1.5.1, the best solution should be the bundle product. There, you can define a price, a quantity for each item in the backend. You can block the user to change the quantity for these items, not for the bundle product (you could too if you want but it's not your need here).
We do like that for some of our product. Check the screenshot to see an example of configuration