logo
Toggle navigation
Begin main navigation
About
Projects
Download
Documentation
Wiki
Forums
Log In
Go!
OpenACS – The Toolkit for Online Communities
:
Forums
:
OpenACS Q&A
:
wanna show subtotal price of items in shopping cart
: One Message
Begin main content
Forum OpenACS Q&A: Response to wanna show subtotal price of items in shopping cart
Search:
Back to OpenACS Q&A
2
:
Response to wanna show subtotal price of items in shopping cart
(response to
1
)
Posted by
Gilbert Wong
on
07/22/01 10:39 AM
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.
Back to OpenACS Q&A