Currently the price handler has no effect on the cart view.
Attached patch custom price handlers to put their own data (in attached image you can see the cart view shows the total according to a non-default-store currency).

CommentFileSizeAuthor
alter-product-currency-1.patch2.09 KBamitaibu
Snap1.png22.14 KBamitaibu
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Island Usurper’s picture

Status: Needs review » Closed (works as designed)

Those prices are meant to be unaltered because the item's price has already been run through the price alterers in hook_cart_display(). Altering a price twice would be an error. In addition, the total price of the cart should just be the sum of the (altered) items' prices, so it shouldn't need to be altered.

They are still run through uc_price() so that the formatter still has a chance to apply its changes, because $display_item['#total'] is just a numeric value.