Index: openacs-4/packages/ecommerce/tcl/ecommerce-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/ecommerce/tcl/ecommerce-procs.xql,v diff -u -N -r1.7 -r1.8 --- openacs-4/packages/ecommerce/tcl/ecommerce-procs.xql 28 Aug 2003 09:41:53 -0000 1.7 +++ openacs-4/packages/ecommerce/tcl/ecommerce-procs.xql 9 Aug 2008 11:44:20 -0000 1.8 @@ -57,7 +57,7 @@ select product_name from ec_products - where product_id = :product_id + where product_id = :product_id and present_p = 't' @@ -235,21 +235,21 @@ - select i.price_name, i.price_charged, i.color_choice, i.size_choice, i.style_choice, p.product_name, p.one_line_description, p.product_id, count(*) as quantity + select i.price_name, i.price_charged, i.color_choice, i.size_choice, i.style_choice, p.product_name, p.one_line_description, p.product_id, p.sku, count(*) as quantity from ec_items i, ec_products p where i.order_id = :order_id and i.product_id = p.product_id - group by p.product_name, p.one_line_description, p.product_id, i.price_name, i.price_charged, i.color_choice, i.size_choice, i.style_choice + group by p.product_name, p.one_line_description, p.product_id, p.sku, i.price_name, i.price_charged, i.color_choice, i.size_choice, i.style_choice - select i.price_charged, i.price_name, i.color_choice, i.size_choice, i.style_choice, p.product_name, p.one_line_description, p.product_id, count(*) as quantity + select i.price_charged, i.price_name, i.color_choice, i.size_choice, i.style_choice, p.sku, p.product_name, p.one_line_description, p.product_id, count(*) as quantity from ec_items i, ec_products p where i.order_id = :order_id and i.product_id = p.product_id - group by p.product_name, p.one_line_description, p.product_id, i.price_charged, i.price_name, i.color_choice, i.size_choice, i.style_choice + group by p.sku, p.product_name, p.one_line_description, p.product_id, i.price_charged, i.price_name, i.color_choice, i.size_choice, i.style_choice @@ -293,18 +293,10 @@ select product_name from ec_products - where product_id = :product_id + where product_id = :product_id and present_p = 't' - - - select product_name - from ec_products - where product_id = :product_id - - - select s.shipment_date, s.carrier, s.tracking_number, s.shipment_id, s.shippable_p, count(*) as n_items