Editing an order and changing the quantity for example shows the correct new total in the order edit page
The Store Sales page however still shows the total from the wpsc_purchase_logs table
I think its because the $log->update_item( $item_id, array( 'quantity' => absint( $_POST['qty'] ) ) ); updates only the WPSC_TABLE_CART_CONTENTS table
Editing an order and changing the quantity for example shows the correct new total in the order edit page The Store Sales page however still shows the total from the wpsc_purchase_logs table
I think its because the
$log->update_item( $item_id, array( 'quantity' => absint( $_POST['qty'] ) ) );
updates only the WPSC_TABLE_CART_CONTENTS table