I have the following setup:
1. A dropdown field product options. Each item has a price associated with it. These are diameters of pipe the user can order. This is tied to a calculated product.
2. The price from the dropdown needs to be multiplied by the total length of pipe they order. I have a number field where they can enter the length.
3. There's another radio button option that adds $5 total if selected ("Machined Chamfer"). Also tied to the calculated product.
The calculated product has the following calculation:
({Diameter:29} * {Overall Length:10}) + {Machined Chamfer:26}
Example: (.4 * 100) + 5.00
This displays $45 in the product field on the front-end form. This is the total I'm expecting.
However, when it's submitted the total that displays in the admin section is the calculated total ($45) + the selected diameter ($.40) + the $5 option for a total of $50.40.
Is that the behavior you'd expect with that setup?