Hi List,
consider this scenario:
I've a custom content 'Product' with CCK fields like:
* name; * unit of volume (kg, lt); * quantity; * price; * ...
then I list all products in a table with a view. Is there any way to permit users to:
* select any single products with a checkbox; * specify for each product selected a quantity to order; * send all data by mail (I suppose to pass data with POST method and catch them in Webform module);
something like a basket?
More details: * Drupal 6.15; * Content 6.x-2.6; * Views 6.x-2.8;
Any help or tips would be appreciated. -f
fRanz,
Check out the Ubercart module, it's awesome. And even if you want it just to capture orders and deal with payment outside of Ubercart... that is possible... and then you could add payment later.
http://drupal.org/project/ubercart
Shai
On Sun, Feb 28, 2010 at 12:43 PM, fRANz andrea.francesconi@gmail.comwrote:
Hi List,
consider this scenario:
I've a custom content 'Product' with CCK fields like:
- name;
- unit of volume (kg, lt);
- quantity;
- price;
- ...
then I list all products in a table with a view. Is there any way to permit users to:
- select any single products with a checkbox;
- specify for each product selected a quantity to order;
- send all data by mail (I suppose to pass data with POST method and
catch them in Webform module);
something like a basket?
More details:
- Drupal 6.15;
- Content 6.x-2.6;
- Views 6.x-2.8;
Any help or tips would be appreciated.
-f
[ Drupal support list | http://lists.drupal.org/ ]
On Sun, Feb 28, 2010 at 9:50 PM, Shai Gluskin shai@content2zero.com wrote:
fRanz, Check out the Ubercart module, it's awesome. And even if you want it just to capture orders and deal with payment outside of Ubercart... that is possible... and then you could add payment later. http://drupal.org/project/ubercart
Shai,
thanks for the tip. I never considered Ubercart because seems oversized for this case. Anyway, I'll check Ubercart features soon. Regards, -f
On Sun, 28 Feb 2010, fRANz wrote:
On Sun, Feb 28, 2010 at 9:50 PM, Shai Gluskin shai@content2zero.com wrote:
fRanz, Check out the Ubercart module, it's awesome. And even if you want it just to capture orders and deal with payment outside of Ubercart... that is possible... and then you could add payment later. http://drupal.org/project/ubercart
Shai,
thanks for the tip. I never considered Ubercart because seems oversized for this case. Anyway, I'll check Ubercart features soon. Regards,
If he really wants checkboxes, UC is going to end him up with the same problem--designing a custom view with checkboxes, and some how adding those products to the cart, probably via API.
It's likely easier to do from a coding prospective, if he leaves UC out of the mix.
Now, if UC has some kind of multiple add functionality that I don't know about, maybe it deserves a look.
Luke