/**
  * Get bundle of the products (one product is also allowed) to replicate data between Magento and Odoo.
  * @return  \Praxigento\Odoo\Data\Odoo\Inventory
  */
 public function getProductBundle()
 {
     $data = parent::getProductBundle();
     $result = new \Praxigento\Odoo\Data\Odoo\Inventory($data);
     return $result;
 }