Quote Originally Posted by jeking View Post
I had the first edit in place, but not the second. Unfortunately, even with the second I'm getting the same non-result. The points/dollars are not be deducted from the order total.

When I try to complete the order with the Redeem Rewards Points box checked, I get "Your order's details have changed. Please review the current values and re-submit."

I can PM you the log file.
Log file received. The "kick-back" is due to a mismatch in the Reward Points' calculations on entry to the confirmation page and the calculations post-order-total processing.

Here's the before:
Code:
  'REWARD_POINTS_EARNED' => 90,
  'shipping_tax_amount' => 0,
  'opc_sendto_saved' => '11240',
  'shipping_tax_description' => 'Sales Tax',
  'redeem_flag' => 'on',
  'order_current_total' => '$95.94',
... and here's the after:
Code:
  'REWARD_POINTS_EARNED' => 87,
  'shipping_tax_amount' => 0,
  'opc_sendto_saved' => '11240',
  'redeem_flag' => 'on',
  'shipping_tax_description' => 'Sales Tax',
  'redeem_points' => 335,
  'redeem_value' => 3.350000000000000088817841970012523233890533447265625,
  'order_current_total' => '$92.59',
The best I can do here (I've got no clients using Reward Points) is help to guide you to a solution.