diff --git a/lib/classes/checkout/shopCheckoutShipping.class.php b/lib/classes/checkout/shopCheckoutShipping.class.php index 6fc04b6bf..aeb9480db 100644 --- a/lib/classes/checkout/shopCheckoutShipping.class.php +++ b/lib/classes/checkout/shopCheckoutShipping.class.php @@ -439,14 +439,16 @@ public function getItems() foreach ($cart_items as $item) { $this->items[] = array( - 'name' => $item['name'], - 'price' => $item['price'], - 'currency' => $item['currency'], - 'quantity' => $item['quantity'], - 'weight' => ifset($item['weight']), - 'height' => ifset($item['height']), - 'width' => ifset($item['width']), - 'length' => ifset($item['length']), + 'name' => $item['name'], + 'price' => $item['price'], + 'currency' => $item['currency'], + 'quantity' => $item['quantity'], + 'type' => $item['type'], + 'product_id' => ifset($item['product_id']), + 'weight' => ifset($item['weight']), + 'height' => ifset($item['height']), + 'width' => ifset($item['width']), + 'length' => ifset($item['length']), ); } }