Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/commerce_option_pricing/src/OrderRefresh.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ class OrderRefresh extends OrderRefreshBase {
* {@inheritdoc}
*/
public function refresh(OrderInterface $order) {
$commerce_product_options = [];
parent::refresh($order);

// Loop through each order item and re-calculate the price considering the
// options price.
foreach ($order->getItems() as $order_item) {
$commerce_product_options = [];
$purchased_entity = $order_item->getPurchasedEntity();

if (!$purchased_entity) {
Expand Down