Is this magic ??
Hi,
I've had an issue with a cfswitch on assigning charges. It looks at the first 2 characters of a field customer_id and set rates accordingly. They have been charged incorrectly and it's all down to a this cfswitch. I have stripped it down to basics:
<cfswitch expression="F3">
<cfcase value="DS">
prices for DS customers
</cfcase>
<cfcase value="SC">
prices for SC customers
</cfcase>
<cfcase value="ER">
prices for ER customers
</cfcase>
<cfdefaultcase>
prices for all other customers
</cfdefaultcase>
</cfswitch>
so running this code you would expect it to be prices for all other customers. NO!, it uses prices for ER customers??. We are using Coldfusion 9 so I would be intrested if any other CF9 developers are getting the same result?
Thanks
Stuart
