Forum OpenACS Q&A: Response to wanna show subtotal price of items in shopping cart

There is a pl/pgsql function called ec_total_price(integer) which gives you the subtotal of the order (ie sum of all items before tax and shipping).  You will have to do a query using this function on the order_id.

select ec_total_price($order_id) as subtotal

Hope that helps.