0
Shopping Cart
New Here
,
/t5/coldfusion-discussions/shopping-cart/td-p/265545
Aug 15, 2007
Aug 15, 2007
Copy link to clipboard
Copied
Hi,
I have a shopping cart where everything works fine when you order just one product, but if you try to order two products, the total only adds up for the one product and completely ignores the other.
How do I get the cart to add the total cart contents, and not just the total for one product?
Thanks,
Eric
I have a shopping cart where everything works fine when you order just one product, but if you try to order two products, the total only adds up for the one product and completely ignores the other.
How do I get the cart to add the total cart contents, and not just the total for one product?
Thanks,
Eric
TOPICS
Getting started
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Guide
,
/t5/coldfusion-discussions/shopping-cart/m-p/265546#M23590
Aug 15, 2007
Aug 15, 2007
Copy link to clipboard
Copied
That's because the code clears the "FinalTotal" variable on
every iteration of the loop. Move the initialization statement
before the loop
<cfset FinalTotal = 0>
<cfloop query="Results">
...rest of code
</cfloop>
Also you don't need any of those # signs around the variables.
<cfset FinalTotal = 0>
<cfloop query="Results">
...rest of code
</cfloop>
Also you don't need any of those # signs around the variables.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
emcgill
AUTHOR
New Here
,
/t5/coldfusion-discussions/shopping-cart/m-p/265547#M23591
Aug 18, 2007
Aug 18, 2007
Copy link to clipboard
Copied
Hi,
You were exactly right once I took the FinalTotal = 0 out it it started adding up correctly.
I had to take the sales tax out of it also, so this is the final code that I came up with
It was all adding up, but it was only doing the sales tax for just one item, instead of all of them. So I took it out of the loop and added the complete total for all the items and then * it by the sales tax rate in my state, added the shipping and we are set to go.
Thanks for your help I greatly appreciate it!
Thanks,
Eric
You were exactly right once I took the FinalTotal = 0 out it it started adding up correctly.
I had to take the sales tax out of it also, so this is the final code that I came up with
It was all adding up, but it was only doing the sales tax for just one item, instead of all of them. So I took it out of the loop and added the complete total for all the items and then * it by the sales tax rate in my state, added the shipping and we are set to go.
Thanks for your help I greatly appreciate it!
Thanks,
Eric
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Guide
,
LATEST
/t5/coldfusion-discussions/shopping-cart/m-p/265548#M23592
Aug 18, 2007
Aug 18, 2007
Copy link to clipboard
Copied
Glad its working.
Btw, you don't need any those # signs in the code. For example this
<cfset TotalPrice = #UnitPrice#*#Quanity#>
Can be rewritten as
<cfset TotalPrice = UnitPrice * Quanity >
Btw, you don't need any those # signs in the code. For example this
<cfset TotalPrice = #UnitPrice#*#Quanity#>
Can be rewritten as
<cfset TotalPrice = UnitPrice * Quanity >
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

