Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Grouped Product with Fixed Sub-item Quantities

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?

like image 932
Colin O'Dell Avatar asked Oct 25 '11 14:10

Colin O'Dell


People also ask

What is a grouped product?

A grouped product consists of simple standalone products that are presented as a group. You can offer variations of a single product or group them by season or theme. Presenting a grouped product can create an incentive for customers to purchase additional items.

What is a grouped product on WooCommerce?

Grouped Products is a product type bundled in WooCommerce core and is more about product display — it does not involve any different purchase rules like the aforementioned three extensions. Grouped Products lets you add similar (think materials, design, etc.) simple products to a single parent product.

What is a grouped product in Magento?

A grouped product is essentially a collection of simple products that are presented as a group. Shoppers can purchase each product separately, or as a part of the group. Grouped products work great when you want to promote products.


1 Answers

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

enter image description here

like image 133
Sylvain Rayé Avatar answered Sep 22 '22 07:09

Sylvain Rayé